blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 410 | content_id stringlengths 40 40 | detected_licenses listlengths 0 51 | license_type stringclasses 2
values | repo_name stringlengths 5 132 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 80 | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.85k 684M ⌀ | 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 132
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 28
values | content stringlengths 3 9.45M | authors listlengths 1 1 | author_id stringlengths 0 352 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
a6fc913d705d6c705c90249130ef97d4345de18f | b3be2767b3827d17ed8d4ef93cea918b9727b3c5 | /schoolWeb/src/main/java/za/gov/sars/mb/SubjectBean.java | 01b526785a35bd7aad172e3b85d6922cbf3aa64c | [] | no_license | Drinnocent/schoolSystem | 28eb389a9cbfd38351e8f5f01e43b9c4588d24e3 | 52ed97751750d41acaf6b36846f922721b620681 | refs/heads/master | 2023-06-20T21:56:14.027678 | 2021-07-24T05:11:21 | 2021-07-24T05:11:21 | 382,077,891 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,468 | 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 za.gov.sars.mb;
import java.util.ArrayList;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import javax.annotation.PostConstruct;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;
import org.springframework.beans.factory.annotation.Autowired;
import za.gov.sars.common.SystemUserType;
import za.gov.sars.domain.Assessment;
import za.gov.sars.domain.Employee;
import za.gov.sars.domain.Grade;
import za.gov.sars.domain.Student;
import za.gov.sars.domain.Subject;
import za.gov.sars.service.AssessmentServiceLocal;
import za.gov.sars.service.EmployeeServiceLocal;
import za.gov.sars.service.GradeServiceLocal;
import za.gov.sars.service.StudentServiceLocal;
import za.gov.sars.service.SubjectServiceLocal;
/**
*
* @author S2028389
*/
@ManagedBean
@ViewScoped
public class SubjectBean extends BaseBean {
@Autowired
private SubjectServiceLocal subjectService;
@Autowired
private AssessmentServiceLocal assessmentService;
@Autowired
private StudentServiceLocal studentService;
@Autowired
private GradeServiceLocal gradeService;
@Autowired
private EmployeeServiceLocal employeeService;
private List<Subject> subjects = new ArrayList<>();
private List<Assessment> assessments = new ArrayList<>();
private List<Student> students = new ArrayList<>();
private List<Grade> grades = new ArrayList<>();
private List<Employee> employee = new ArrayList<>();
private Subject subject;
@PostConstruct
public void init() {
this.resetView(false).setList(true);
subjects = subjectService.listAll();
assessments = assessmentService.listAll();
students = studentService.listAll();
grades = gradeService.listAll();
employee = employeeService.listAll();
}
public void addOrUpdate(Subject sub) {
this.resetView(false).setAdd(true);
if (sub != null) {
// sub.setUpdateBy(getActiveUser().getFirstName() + " " + getActiveUser().getLastName());
sub.setUpdatedDate(new Date());
subject = sub;
} else {
subject = new Subject();
// subject.setCreatedBy(getActiveUser().getFirstName() + " " + getActiveUser().getLastName());
subject.setCreatedDate(new Date());
subjects.add(0, subject);
}
}
public void save(Subject sub) {
if (sub.getId() != null) {
subjectService.update(sub);
} else {
subjectService.save(sub);
}
this.resetView(false).setList(true);
}
public void delete(Subject sub) {
subjectService.deleteById(sub.getId());
synchronize(sub);
this.resetView(false).setList(true);
}
public void synchronize(Subject sub) {
Iterator<Subject> subjectList = subjects.iterator();
while (subjectList.hasNext()) {
if (subjectList.next().getId().equals(sub.getId())) {
subjectList.remove();
}
}
}
public void cancel(Subject sub) {
if (sub.getId() == null) {
if (subjects.contains(sub)) {
subjects.remove(sub);
}
this.resetView(false).setList(true);
}
}
public List<Subject> getSubjects() {
return subjects;
}
public void setSubjects(List<Subject> subjects) {
this.subjects = subjects;
}
public List<Assessment> getAssessments() {
return assessments;
}
public void setAssessments(List<Assessment> assessments) {
this.assessments = assessments;
}
public List<Student> getStudents() {
return students;
}
public void setStudents(List<Student> students) {
this.students = students;
}
public Subject getSubject() {
return subject;
}
public void setSubject(Subject subject) {
this.subject = subject;
}
public List<Grade> getGrades() {
return grades;
}
public void setGrades(List<Grade> grades) {
this.grades = grades;
}
public List<Employee> getEmployee() {
return employee;
}
public void setEmployee(List<Employee> employee) {
this.employee = employee;
}
}
| [
"S2028389@SARS.GOV.ZA"
] | S2028389@SARS.GOV.ZA |
0d68d851fc1879b80c63c6ec492f093a7833f461 | 3ae5be2c45aaf087d45e53e6a41832620d631169 | /06Day5/src/Student.java | 77dd14d5a7eef83f6aaa91c9352e1fdd6f514cff | [] | no_license | guyoungnam/Study_JAVA | 2aac19a6890738d52b2290cdb32060c6af1dabd1 | afc96ee2ee01e3fbd47d91228245470d8d414158 | refs/heads/master | 2020-07-06T20:31:23.753006 | 2019-08-19T08:32:07 | 2019-08-19T08:32:07 | 203,131,392 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 939 | java |
public class Student {
private String name;
private int age;
private String address;
//
public char firstName() {
return name.charAt(0);
}
public int nameLength() {
return name.length();
}
public Student() {
}
public Student(String name, int age, String address) {
this.name = name;
this.age = age;
this.address = address;
}
public Student(String name, int age) {
this.name = name;
this.age = age;
}
public Student(int age, String address) {
this.age = age;
this.address = address;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
} | [
"eak12@naver.com"
] | eak12@naver.com |
7de7d1cce599f90aa86a86575eefd940e734d890 | c2ed7d173ddfdccc90d84d6ff2c6587d62a3f7b1 | /app/controllers/AddMenuItem.java | 5191f5ab6af971bb517684a65b56ff494916c48b | [] | no_license | maklahub/makla | 1c0378f44c4739d59e2d70ff801fe4902dfc85a5 | a2840d7de6a4d077da31a26044b513855173062e | refs/heads/master | 2021-03-12T20:36:33.267835 | 2014-11-21T08:04:08 | 2014-11-21T08:04:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,736 | java | package controllers;
import com.avaje.ebean.Ebean;
import com.fasterxml.jackson.databind.JsonNode;
import models.*;
import play.data.DynamicForm;
import play.libs.Json;
import play.mvc.Controller;
import play.mvc.Http;
import play.mvc.Http.MultipartFormData.FilePart;
import play.mvc.Result;
import java.io.IOException;
import static play.data.Form.form;
public class AddMenuItem extends Controller {
public static Result addMenuItemToCart() {
CartItem cartItem = null;
JsonNode json = request().body().asJson();
SystemUser requestor = SystemUser.findUserById(session("currentUserId"));
if(json == null) {
return badRequest("Expecting Json data");
} else {
String menuItemId = json.findPath("id").textValue();
int menuItemQty= json.findPath("qty").asInt();
System.out.println("**********> qty: " + menuItemQty);
if(menuItemId== null) {
return badRequest("Missing parameter [id]");
} else {
MenuItem menuItem = MenuItem.findMenuItemById( menuItemId );
Cart cart = Cart.findCartBySystemUser( requestor.getId() );
if ( cart == null ){
cart = new Cart( "New cart", requestor );
cartItem = new CartItem( cart, menuItem , menuItemQty );
cartItem.save();
}
else {
cartItem = new CartItem( cart, menuItem, menuItemQty );
cartItem.save();
}
System.out.println("\n\n\nProvider: ----------------->\n\n\n " + menuItem.getMenu().getOwner());
cart.setProvider( menuItem.getMenu().getOwner() );
cart.save();
// cart.updateTotalAmount();
// return ok(Json.toJson(menuItemId).toString());
return ok( Json.toJson( cart ) );
}
}
/*SystemUser u = SystemUser.findUserById(session("currentUserId"));
String fileName = "";
Http.MultipartFormData b = request().body().asMultipartFormData();
DynamicForm requestData = form().bindFromRequest();
String photoTitle= requestData.get("photo-title");
FilePart picture = b.getFile("myphotos-upload");
if (picture != null) {
S3File s3File = new S3File();
s3File.name = picture.getFilename();
s3File.file = picture.getFile();
s3File.save();
// MyPhoto myphoto = new MyPhoto(imageUrl, fileName, u);
Photo photo = new Photo(u, photoTitle , s3File.getUrl().toString(), null);
photo.save();
}
*/
// return redirect( routes.Application.myPhotos() );
// return ok("Menu Item Item Added");
}
public static Result removeCartItem(){
JsonNode json = request().body().asJson();
SystemUser u = SystemUser.findUserById(session("currentUserId"));
if(json == null) {
return badRequest("Expecting Json data");
} else {
String cartItemId = json.findPath("id").textValue();
if( cartItemId== null) {
return badRequest("Missing parameter [id]");
} else {
CartItem cartItem = CartItem.findCartItemById( cartItemId );
String cartId = cartItem.getCart().getId();
cartItem.setCart( null );
cartItem.setCartItemPhoto( null );
cartItem.setOwner( null );
//cartItem.delete();
Ebean.delete( cartItem );
Cart cart = Cart.findCartById( cartId);
cart.updateTotalAmount();
// return ok(Json.toJson(cartItem).toString());
return ok( Json.toJson( cart ) );
}
}
}
public static Result removeMenuItem(){
JsonNode json = request().body().asJson();
SystemUser u = SystemUser.findUserById(session("currentUserId"));
if(json == null) {
return badRequest("Expecting Json data");
} else {
String menuItemId = json.findPath("id").textValue();
if( menuItemId== null) {
return badRequest("Missing parameter [id]");
} else {
MenuItem menuItem = MenuItem.findMenuItemById( menuItemId );
menuItem.setMenu( null );
menuItem.setMenuItemPhoto( null );
Ebean.delete( menuItem );
// return ok(Json.toJson(cartItem).toString());
return ok( " Item has been deleted: " + Json.toJson( menuItem ).toString() );
}
}
}
}
| [
"maklahub@gmail.com"
] | maklahub@gmail.com |
0e92edb6b6c2b70c844cdd52ab9fd7dfbaddc866 | 620b49ef5dbde61fcaf005992b3352030f7b1c8e | /LABs/LAB4/src/main/java/LAB4/repo/NoteRepo.java | 6d1dcd8b6fee84731f73b98f3e579cf228ae50a4 | [] | no_license | cedriclemercier/AIT | a248887556dca965bea4e7c88e25735600630bc6 | 2bf8552c4bcc1b9b30c4b999024af1219b5b98ec | refs/heads/main | 2023-04-28T22:33:12.746986 | 2021-05-10T05:03:07 | 2021-05-10T05:03:07 | 344,776,506 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 176 | java | package LAB4.repo;
import LAB4.model.Notes;
import org.springframework.data.jpa.repository.JpaRepository;
public interface NoteRepo extends JpaRepository<Notes, Integer> {
} | [
"info@cedricdesigns.com.au"
] | info@cedricdesigns.com.au |
db5fc7f4bfd5a4332e328578df0ee81dd6ca59df | 4cd1530dc3bb70b9046a40fdc351f88f65e3807a | /src/test/java/com/sel/SetupObjectsTest.java | e48bb9a6dbd035c7e177c10bf684e5d39517613f | [] | no_license | nlilaramani/selsample | bd13aae7f0a4b8f26e9199eeeaa8807a4722a7f8 | 9f34bb823d8ad3094b9c4b0e6a0f0586f76a0df0 | refs/heads/master | 2023-07-30T10:49:09.479641 | 2021-09-14T20:07:55 | 2021-09-14T20:07:55 | 320,721,816 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,996 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.sel;
import java.io.File;
import java.io.IOException;
import org.apache.commons.io.FileUtils;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;
import org.openqa.selenium.Dimension;
import org.openqa.selenium.OutputType;
import org.openqa.selenium.Point;
import org.openqa.selenium.TakesScreenshot;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
/**
*
* @author itexps
*/
public class SetupObjectsTest {
public SetupObjectsTest() {
}
@BeforeClass
public static void setUpClass() {
}
@AfterClass
public static void tearDownClass() {
}
WebDriver driver;
@Before
public void setUp() {
System.setProperty("webdriver.chrome.driver", "c:\\qa\\drivers\\chromedriver.exe");
driver=new ChromeDriver();
}
@After
public void tearDown() {
}
// TODO add test methods here.
// The methods must be annotated with annotation @Test. For example:
//
@Test
public void testSetupObjects() throws IOException {
driver.navigate().to("http://www.google.com"); // Load google home page
driver.navigate().to("http://www.ibm.com"); // Load IBM home page
driver.manage().window().setSize(new Dimension(1024,768));
driver.manage().window().setPosition(new Point(0,0));
driver.navigate().back(); // Go to prev page
driver.manage().window().maximize(); // Maximize window
File srcFile=((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
System.out.println("File Location:"+srcFile.getAbsolutePath());
FileUtils.copyFile(srcFile, new File("c:\\qa\\myfile.png"));
}
}
| [
"nrlilaramani@gmail.com"
] | nrlilaramani@gmail.com |
7a3df88ad3105035478a5c1b92a914edcfdc1df2 | 3849d8a7b73be16d29893e71c6ca1d6aa0e5a8a5 | /holder2/desktop/src/com/veganova/ballgame/desktop/DesktopLauncher.java | 6be1295065b616fd6be1f6ae2ecdd78a2a24550c | [] | no_license | Veganova/Planet-Rotation---Ball-Dodge | 688a76c6dcd3387b43044cc3d0471a752b59b872 | 93746662d3991167d068754a1e570a20ebacb62f | refs/heads/master | 2021-07-02T04:02:39.094735 | 2017-09-20T21:45:19 | 2017-09-20T21:45:19 | 104,270,362 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 486 | java | package com.veganova.ballgame.desktop;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
import com.veganova.ballgame.ballGame;
public class DesktopLauncher {
public static void main (String[] arg) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
config.height = 700;
config.width = 467;
new LwjglApplication(new ballGame(), config);
}
}
| [
"virajnpatil@gmail.com"
] | virajnpatil@gmail.com |
3244e568af06e45b8fd944f5338df8e4efa5808c | c2ee8ac90ed814a4a5bf3be56d20983634399468 | /src/main/java/org/jabref/gui/copyfiles/CopySingleFileAction.java | aa00a39452415cb36b648f3e5fccc08647097e22 | [
"MIT"
] | permissive | CaptainDaVinci/jabref | c92349a00312da23c5003ad0e576b8d0772a4f4b | 39230c541d55ea70337fbf8b68b309312e81b725 | refs/heads/master | 2021-07-16T01:29:50.950953 | 2020-10-15T02:12:39 | 2020-10-15T02:12:39 | 173,748,609 | 2 | 0 | MIT | 2019-03-04T13:19:29 | 2019-03-04T13:19:29 | null | UTF-8 | Java | false | false | 2,916 | java | package org.jabref.gui.copyfiles;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Optional;
import java.util.function.BiFunction;
import org.jabref.Globals;
import org.jabref.gui.DialogService;
import org.jabref.gui.util.DirectoryDialogConfiguration;
import org.jabref.logic.l10n.Localization;
import org.jabref.logic.util.io.FileUtil;
import org.jabref.model.database.BibDatabaseContext;
import org.jabref.model.entry.LinkedFile;
import org.jabref.model.util.OptionalUtil;
import org.jabref.preferences.JabRefPreferences;
public class CopySingleFileAction {
private LinkedFile linkedFile;
private DialogService dialogService;
private BibDatabaseContext databaseContext;
private final BiFunction<Path, Path, Path> resolvePathFilename = (path, file) -> {
return path.resolve(file.getFileName());
};
public CopySingleFileAction(LinkedFile linkedFile, DialogService dialogService, BibDatabaseContext databaseContext) {
this.linkedFile = linkedFile;
this.dialogService = dialogService;
this.databaseContext = databaseContext;
}
public void copyFile() {
DirectoryDialogConfiguration dirDialogConfiguration = new DirectoryDialogConfiguration.Builder()
.withInitialDirectory(Paths.get(Globals.prefs.get(JabRefPreferences.EXPORT_WORKING_DIRECTORY)))
.build();
Optional<Path> exportPath = dialogService.showDirectorySelectionDialog(dirDialogConfiguration);
exportPath.ifPresent(this::copyFileToDestination);
}
private void copyFileToDestination(Path exportPath) {
Optional<Path> fileToExport = linkedFile.findIn(databaseContext, Globals.prefs.getFilePreferences());
Optional<Path> newPath = OptionalUtil.combine(Optional.of(exportPath), fileToExport, resolvePathFilename);
if (newPath.isPresent()) {
Path newFile = newPath.get();
boolean success = FileUtil.copyFile(fileToExport.get(), newFile, false);
if (success) {
dialogService.showInformationDialogAndWait(Localization.lang("Copy linked file"), Localization.lang("Sucessfully copied file to %0", newPath.map(Path::getParent).map(Path::toString).orElse("")));
}
else {
dialogService.showErrorDialogAndWait(Localization.lang("Copy linked file"), Localization.lang("Could not copy file to %0, maybe the file is already existing?", newPath.map(Path::getParent).map(Path::toString).orElse("")));
}
}
else {
dialogService.showErrorDialogAndWait(Localization.lang("Could not resolve the file %0", fileToExport.map(Path::getParent).map(Path::toString).orElse("")));
}
}
}
| [
"siedlerkiller@gmail.com"
] | siedlerkiller@gmail.com |
238eb9622a1ef1d31a987a4b3f73757f09a6bee6 | 39d5af482888225083ea0282d94663836e7b4f72 | /ourcrm/src/com/kaishengit/action/RegUserAction.java | ad94d5d2c50e5f599440d10702f764f4b69e2a65 | [] | no_license | houyongchao/ourcrm | eba8ef09ad714a82ac9299580e06a19409d454bd | 9ae169aa8869619650538772c720d2449117abbc | refs/heads/master | 2021-01-23T07:15:36.200470 | 2012-09-04T01:23:28 | 2012-09-04T01:23:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,329 | java | package com.kaishengit.action;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts2.ServletActionContext;
import org.apache.struts2.convention.annotation.Action;
import org.apache.struts2.convention.annotation.Result;
import org.springframework.beans.factory.annotation.Autowired;
import com.kaishengit.pojo.Group;
import com.kaishengit.pojo.User;
import com.kaishengit.service.DealService;
import com.kaishengit.service.UserService;
public class RegUserAction {
private DealService service;
private UserService userService;
private String name;
private String password;
private String zu;
@Action(value="searchusername")
public String findUser() throws IOException{
HttpServletResponse response = ServletActionContext.getResponse();
response.setCharacterEncoding("UTF-8");
User user = userService.findUser(name);
PrintWriter out = response.getWriter();
response.setContentType("application/json;charset=UTF-8");
if(user == null){
out.print(0);
}else{
out.print(1);
}
out.flush();
out.close();
return null;
}
@Action(value="saveuser",results={@Result(name="success",type="redirect", location="/WEB-INF/content/tiaozhuan-success.jsp")})
public String saveuser(){
User user = new User();
user.setUsername(name);
user.setPassword(password);
Group group = service.findGroupByName(zu);
user.setGroup(group);
userService.saveOrUpdate(user);
return "success";
}
@Action(value="reguser",results={@Result(name="success",location="/WEB-INF/content/account/reguser.jsp")})
public String regUser(){
return "success";
}
//get set
@Autowired
public void setService(DealService service) {
this.service = service;
}
@Autowired
public void setUserService(UserService userService) {
this.userService = userService;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getZu() {
return zu;
}
public void setZu(String zu) {
this.zu = zu;
}
}
| [
"15239198861@139.com"
] | 15239198861@139.com |
a3b15f1688bbdecf28100380237361cb1ac521c2 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/2/2_78cfd15e1621c926c2e996be3dc34a1d06ffa525/QueueActivity/2_78cfd15e1621c926c2e996be3dc34a1d06ffa525_QueueActivity_t.java | 41bbd367d6826af88e9e89ad9809bc426023aadd | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 9,397 | java | package com.axelby.podax;
import java.io.File;
import android.app.ListActivity;
import android.content.ContentUris;
import android.content.ContentValues;
import android.content.Context;
import android.content.Intent;
import android.database.Cursor;
import android.graphics.BitmapFactory;
import android.graphics.Rect;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;
import android.view.ContextMenu;
import android.view.ContextMenu.ContextMenuInfo;
import android.view.MenuItem;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnCreateContextMenuListener;
import android.view.View.OnTouchListener;
import android.widget.AdapterView;
import android.widget.AdapterView.AdapterContextMenuInfo;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.ResourceCursorAdapter;
import android.widget.TextView;
import android.widget.ViewSwitcher;
public class QueueActivity extends ListActivity implements OnTouchListener {
static final int OPTION_REMOVEFROMQUEUE = 1;
static final int OPTION_PLAY = 2;
static final int OPTION_MOVETOFIRSTINQUEUE = 3;
Uri queueUri = Uri.withAppendedPath(PodcastProvider.URI, "queue");
String[] projection = new String[] {
PodcastProvider.COLUMN_ID,
PodcastProvider.COLUMN_TITLE,
PodcastProvider.COLUMN_SUBSCRIPTION_TITLE,
PodcastProvider.COLUMN_QUEUE_POSITION,
PodcastProvider.COLUMN_MEDIA_URL,
PodcastProvider.COLUMN_FILE_SIZE,
PodcastProvider.COLUMN_SUBSCRIPTION_ID,
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.queue);
Cursor cursor = managedQuery(queueUri, projection, null, null, null);
setListAdapter(new QueueListAdapter(this, cursor));
getListView().setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view, int position,
long id) {
Intent intent = new Intent(QueueActivity.this, PodcastDetailActivity.class);
intent.putExtra("com.axelby.podax.podcastId", (int)id);
startActivity(intent);
}
});
getListView().setOnCreateContextMenuListener(new OnCreateContextMenuListener() {
public void onCreateContextMenu(ContextMenu menu, View v,
ContextMenuInfo menuInfo) {
AdapterContextMenuInfo mi = (AdapterContextMenuInfo) menuInfo;
Cursor c = (Cursor) getListAdapter().getItem(mi.position);
PodcastCursor podcast = new PodcastCursor(QueueActivity.this, c);
menu.add(ContextMenu.NONE, OPTION_MOVETOFIRSTINQUEUE,
ContextMenu.NONE, R.string.move_to_first_in_queue);
menu.add(ContextMenu.NONE, OPTION_REMOVEFROMQUEUE,
ContextMenu.NONE, R.string.remove_from_queue);
if (podcast.isDownloaded())
menu.add(ContextMenu.NONE, OPTION_PLAY, ContextMenu.NONE,
R.string.play);
}
});
getListView().setOnTouchListener(this);
}
@Override
public boolean onContextItemSelected(MenuItem item) {
AdapterContextMenuInfo info = (AdapterContextMenuInfo)item.getMenuInfo();
Cursor cursor = (Cursor)getListAdapter().getItem(info.position);
PodcastCursor podcast = new PodcastCursor(this, cursor);
switch (item.getItemId()) {
case OPTION_MOVETOFIRSTINQUEUE:
podcast.moveToFirstInQueue();
break;
case OPTION_REMOVEFROMQUEUE:
podcast.removeFromQueue();
break;
case OPTION_PLAY:
PodaxApp.play(this, podcast);
}
return true;
}
public boolean onTouch(View v, MotionEvent event) {
QueueListAdapter adapter = (QueueListAdapter)getListAdapter();
if (adapter.getHeldPodcastId() == null)
return false;
ListView listView = getListView();
if (event.getAction() == MotionEvent.ACTION_UP)
{
adapter.unholdPodcast();
return true;
}
if (event.getAction() == MotionEvent.ACTION_MOVE)
{
int position = listView.pointToPosition((int) event.getX(),
(int) event.getY());
if (position == -1)
return true;
for (int i = listView.getFirstVisiblePosition(); i <= listView.getLastVisiblePosition(); ++i)
{
Rect bounds = new Rect();
listView.getChildAt(i - listView.getFirstVisiblePosition()).getHitRect(bounds);
dragLog(String.format("position %d: top: %d, bottom: %d, height %d, centerY: %d", i, bounds.top, bounds.bottom, bounds.height(), bounds.centerY()));
}
dragLog(String.format("pointing to y %f, position %d", event.getY(), position));
View listItem = listView.getChildAt(position - listView.getFirstVisiblePosition());
// no listview means we're below the last one
if (listItem == null) {
dragLogEnd(String.format("moving to last position: %d", getListAdapter().getCount()));
adapter.setQueuePosition(getListAdapter().getCount());
return true;
}
// don't change anything if we're hovering over this one
if (position == adapter.getHeldQueuePosition()) {
dragLogEnd("hovering over held podcast");
return true;
}
// remove hidden podcast from ordering
dragLog(String.format("comparing position %d and geld position %d", position, adapter.getHeldQueuePosition()));
if (position >= adapter.getHeldQueuePosition()) {
dragLog("subtracting 1 because we're past held");
position -= 1;
}
// move podcast to proper position
Rect bounds = new Rect();
listItem.getHitRect(bounds);
dragLog(String.format("height: %d, centerY: %d, eventY: %f", bounds.height(), bounds.centerY(), event.getY()));
// if pointer is in top half of item then put separator above,
// otherwise below
if (event.getY() > bounds.centerY())
position += 1;
dragLogEnd(String.format("moving to position %d", position));
adapter.setQueuePosition(position);
return true;
}
return false;
}
private final boolean logDragMessages = false;
private void dragLog(String message) {
if (logDragMessages) {
Log.d("Podax", message);
}
}
private void dragLogEnd(String message) {
if (logDragMessages) {
Log.d("Podax", message);
Log.d("Podax", " ");
}
}
private class QueueListAdapter extends ResourceCursorAdapter {
private OnTouchListener downListener = new OnTouchListener() {
public boolean onTouch(View view, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN)
{
int position = getListView().getPositionForView(view);
position -= getListView().getFirstVisiblePosition();
dragLog(String.format("holding podcast at position %d", position));
QueueListAdapter.this.holdPodcast(position);
return true;
}
return false;
}
};
private Long _heldPodcastId = null;
private int _heldQueuePosition;
public QueueListAdapter(Context context, Cursor cursor) {
super(context, R.layout.queue_list_item, cursor);
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
ViewSwitcher switcher = (ViewSwitcher)view;
switcher.setMeasureAllChildren(false);
View btn = view.findViewById(R.id.dragable);
btn.setOnTouchListener(downListener);
PodcastCursor podcast = new PodcastCursor(QueueActivity.this,
cursor);
view.setTag(podcast.getId());
TextView queueText = (TextView) view.findViewById(R.id.title);
queueText.setText(podcast.getTitle());
TextView subscriptionText = (TextView) view
.findViewById(R.id.subscription);
subscriptionText.setText(podcast.getSubscriptionTitle());
ImageView thumbnail = (ImageView)view.findViewById(R.id.thumbnail);
File thumbnailFile = new File(podcast.getThumbnailFilename());
if (!thumbnailFile.exists())
thumbnail.setImageDrawable(null);
else
{
thumbnail.setImageBitmap(BitmapFactory.decodeFile(podcast.getThumbnailFilename()));
thumbnail.setVisibility(1);
}
if (_heldPodcastId != null &&
(long)podcast.getId() == (long)_heldPodcastId &&
switcher.getDisplayedChild() == 0)
switcher.showNext();
if ((_heldPodcastId == null || (long)podcast.getId() != (long)_heldPodcastId) &&
switcher.getDisplayedChild() == 1)
switcher.showPrevious();
}
public void holdPodcast(int position) {
_heldQueuePosition = position;
_heldPodcastId = (Long)getListView().getChildAt(position).getTag();
notifyDataSetChanged();
}
public void unholdPodcast() {
_heldPodcastId = null;
notifyDataSetChanged();
}
public Long getHeldPodcastId() {
return _heldPodcastId;
}
public int getHeldQueuePosition() {
return _heldQueuePosition;
}
public void setQueuePosition(int position) {
if (_heldPodcastId == null || _heldQueuePosition == position)
return;
// update the held cursor to have the new queue position
// the queue will automatically reorder
ContentValues heldValues = new ContentValues();
heldValues.put(PodcastProvider.COLUMN_QUEUE_POSITION, position);
Uri podcastUri = ContentUris.withAppendedId(PodcastProvider.URI, _heldPodcastId);
getContentResolver().update(podcastUri, heldValues, null, null);
_heldQueuePosition = position;
getCursor().close();
changeCursor(managedQuery(queueUri, projection, null, null, null));
}
}
}
| [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
f9bf309cab5a43b57bef165b75a37f53634e9aaf | 0f7a429daa314df935f1f815e8ae94e7aa61eff9 | /src/regexsearch/PreferencesDialog.java | 7efa642fa513b6c794fbe3396a790dc25e58038e | [] | no_license | mathewbray/Java-Standardizer | d5c2c460bf2092cb98bb1563343928b4e6520664 | eecb0c7d3f34b4ef6671680285c8315411263237 | refs/heads/master | 2020-04-23T07:47:11.020876 | 2019-02-18T05:35:39 | 2019-02-18T05:35:39 | 171,016,466 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 94,658 | java | /*====================================================================*\
PreferencesDialog.java
Preferences dialog box class.
\*====================================================================*/
// PACKAGE
package regexsearch;
//----------------------------------------------------------------------
// IMPORTS
import java.awt.Color;
import java.awt.Component;
import java.awt.Dialog;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GraphicsEnvironment;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.GridLayout;
import java.awt.Insets;
import java.awt.Point;
import java.awt.Window;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.io.File;
import java.nio.charset.Charset;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JColorChooser;
import javax.swing.JComponent;
import javax.swing.JDialog;
import javax.swing.JFileChooser;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTabbedPane;
import javax.swing.KeyStroke;
import javax.swing.UIManager;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
import common.exception.AppException;
import common.exception.FileException;
import common.gui.BooleanComboBox;
import common.gui.ColourSampleIcon;
import common.gui.DimensionsSpinnerPanel;
import common.gui.FButton;
import common.gui.FComboBox;
import common.gui.FIntegerSpinner;
import common.gui.FixedWidthLabel;
import common.gui.FLabel;
import common.gui.FontEx;
import common.gui.FontStyle;
import common.gui.FTabbedPane;
import common.gui.FTextField;
import common.gui.GuiUtils;
import common.gui.IntegerSpinner;
import common.gui.PathnamePanel;
import common.gui.SingleSelectionList;
import common.gui.TextRendering;
import common.gui.TitledBorder;
import common.misc.FilenameSuffixFilter;
import common.misc.FileWritingMode;
import common.misc.KeyAction;
import common.misc.MaxValueMap;
import common.misc.NumberUtils;
import common.textfield.ConstrainedTextField;
import common.textfield.IntegerValueField;
//----------------------------------------------------------------------
// PREFERENCES DIALOG BOX CLASS
class PreferencesDialog
extends JDialog
implements ActionListener, ChangeListener, ListSelectionListener
{
////////////////////////////////////////////////////////////////////////
// Constants
////////////////////////////////////////////////////////////////////////
private static final String KEY = PreferencesDialog.class.getCanonicalName();
// Main panel
private static final int MODIFIERS_MASK = ActionEvent.ALT_MASK | ActionEvent.META_MASK |
ActionEvent.CTRL_MASK | ActionEvent.SHIFT_MASK;
private static final String TITLE_STR = "Preferences";
private static final String SAVE_CONFIGURATION_STR = "Save configuration";
private static final String SAVE_CONFIG_FILE_STR = "Save configuration file";
private static final String WRITE_CONFIG_FILE_STR = "Write configuration file";
// General panel
private static final String CHARACTER_ENCODING_STR = "Character encoding";
private static final String ESCAPED_METACHARS_STR = "Escaped metacharacters";
private static final String REPLACEMENT_ESCAPE_CHAR_STR = "Replacement escape character";
private static final String IGNORE_FILENAME_CASE_STR = "Ignore case of filenames";
private static final String FILE_WRITING_MODE_STR = "File-writing mode";
private static final String PRESERVE_LINE_SEPARATOR_STR = "Preserve line-separator kind";
private static final String SHOW_UNIX_PATHNAMES_STR = "Display UNIX-style pathnames";
private static final String SELECT_TEXT_ON_FOCUS_GAINED_STR = "Select text when focus is gained";
private static final String SAVE_MAIN_WINDOW_LOCATION_STR = "Save location of main window";
private static final String HIDE_CONTROL_DIALOG_STR = "Hide control dialog when searching";
private static final String COPY_RESULTS_AS_LIST_FILE_STR = "Copy search results as list file";
private static final String DEFAULT_ENCODING_STR = "<default encoding>";
// Appearance panel
private static final int PARAMETER_EDITOR_WIDTH_FIELD_LENGTH = 3;
private static final int PARAMETER_EDITOR_HEIGHT_FIELD_LENGTH = 2;
private static final int TEXT_VIEW_WIDTH_FIELD_LENGTH = 3;
private static final int TEXT_VIEW_HEIGHT_FIELD_LENGTH = 3;
private static final int TEXT_VIEW_MAX_NUM_COLUMNS_FIELD_LENGTH = 4;
private static final int RESULT_AREA_NUM_ROWS_FIELD_LENGTH = 2;
private static final String LOOK_AND_FEEL_STR = "Look-and-feel";
private static final String TEXT_ANTIALIASING_STR = "Text antialiasing";
private static final String PARAMETER_EDITOR_SIZE_STR = "Size of target and replacement editors";
private static final String COLUMNS_STR = "columns";
private static final String ROWS_STR = "rows";
private static final String RESULT_AREA_NUM_ROWS_STR = "Number of rows in result area";
private static final String TAB_SURROGATE_STR = "Tab surrogate";
private static final String TEXT_VIEW_STR = "Text view";
private static final String VIEWABLE_SIZE_STR = "Viewable size";
private static final String MAX_NUM_COLUMNS_STR = "Maximum number of columns";
private static final String TEXT_AREA_COLOURS_STR = "Text area colours";
private static final String TEXT_STR = "Text";
private static final String BACKGROUND_STR = "Background";
private static final String HIGHLIGHT_TEXT_STR = "Highlighted text";
private static final String HIGHLIGHT_BACKGROUND_STR = "Highlighted background";
private static final String NO_LOOK_AND_FEELS_STR = "<no look-and-feels>";
private static final String TAC_STR = "Text area colour : ";
private static final String TEXT_TITLE_STR = "Text";
private static final String BACKGROUND_TITLE_STR = "Background";
private static final String HIGHLIGHT_TEXT_TITLE_STR = "Highlighted text";
private static final String HIGHLIGHT_BACKGROUND_TITLE_STR = "Highlighted background";
// Tab width panel
private static final int DEFAULT_TAB_WIDTH_FIELD_LENGTH = 3;
private static final int TARGET_AND_REPLACEMENT_TAB_WIDTH_FIELD_LENGTH = 3;
private static final String DEFAULT_TAB_WIDTH_STR = "Default tab width";
private static final String TARGET_AND_REPLACEMENT_STR = "Target and replacement editors";
private static final String TAB_WIDTH1_STR = "Tab width";
private static final String ADD_STR = "Add";
private static final String EDIT_STR = "Edit";
private static final String DELETE_STR = "Delete";
private static final String ADD_FILTER_STR = "Add tab-width filter";
private static final String EDIT_FILTER_STR = "Edit tab-width filter";
private static final String DELETE_FILTER_STR = "Delete tab-width filter";
private static final String DELETE_FILTER_MESSAGE_STR = "Do you want to delete the selected " +
"filter?";
// Editor panel
private static final int EDITOR_COMMAND_FIELD_NUM_COLUMNS = 40;
private static final String COMMAND_STR = "Command";
// File locations panel
private static final String DEFAULT_SEARCH_PARAMS_STR = "Default search parameters";
private static final String DEFAULT_SEARCH_PARAMS_TITLE_STR = "Default search parameters file";
private static final String SELECT_STR = "Select";
private static final String SELECT_FILE_STR = "Select file";
// Fonts panel
private static final String PT_STR = "pt";
// Commands
private interface Command
{
String CHOOSE_TEXT_COLOUR = "chooseTextColour";
String CHOOSE_BACKGROUND_COLOUR = "chooseBackgroundColour";
String CHOOSE_HIGHLIGHT_TEXT_COLOUR = "chooseHighlightTextColour";
String CHOOSE_HIGHLIGHT_BACKGROUND_COLOUR = "chooseHighlightBackgroundColour";
String CHOOSE_DEFAULT_SEARCH_PARAMS_FILE = "choosedDefaultSearchParamsFile";
String ADD_TAB_WIDTH_FILTER = "addTabWidthFilter";
String EDIT_TAB_WIDTH_FILTER = "editTabWidthFilter";
String DELETE_TAB_WIDTH_FILTER = "deleteTabWidthFilter";
String CONFIRM_DELETE_TAB_WIDTH_FILTER = "confirmDeleteTabWidthFilter";
String MOVE_TAB_WIDTH_FILTER_UP = "moveTabWidthFilterUp";
String MOVE_TAB_WIDTH_FILTER_DOWN = "moveTabWidthFilterDown";
String MOVE_TAB_WIDTH_FILTER = "moveTabWidthFilter";
String SAVE_CONFIGURATION = "saveConfiguration";
String ACCEPT = "accept";
String CLOSE = "close";
}
private static final Map<String, String> COMMAND_MAP;
////////////////////////////////////////////////////////////////////////
// Enumerated types
////////////////////////////////////////////////////////////////////////
// TABS
private enum Tab
{
////////////////////////////////////////////////////////////////////
// Constants
////////////////////////////////////////////////////////////////////
GENERAL
(
"General"
)
{
@Override
protected JPanel createPanel(PreferencesDialog dialog)
{
return dialog.createPanelGeneral();
}
//----------------------------------------------------------
@Override
protected void validatePreferences(PreferencesDialog dialog)
throws AppException
{
dialog.validatePreferencesGeneral();
}
//----------------------------------------------------------
@Override
protected void setPreferences(PreferencesDialog dialog)
{
dialog.setPreferencesGeneral();
}
//----------------------------------------------------------
},
APPEARANCE
(
"Appearance"
)
{
@Override
protected JPanel createPanel(PreferencesDialog dialog)
{
return dialog.createPanelAppearance();
}
//----------------------------------------------------------
@Override
protected void validatePreferences(PreferencesDialog dialog)
throws AppException
{
dialog.validatePreferencesAppearance();
}
//----------------------------------------------------------
@Override
protected void setPreferences(PreferencesDialog dialog)
{
dialog.setPreferencesAppearance();
}
//----------------------------------------------------------
},
TAB_WIDTH
(
"Tab width"
)
{
@Override
protected JPanel createPanel(PreferencesDialog dialog)
{
return dialog.createPanelTabWidth();
}
//----------------------------------------------------------
@Override
protected void validatePreferences(PreferencesDialog dialog)
throws AppException
{
dialog.validatePreferencesTabWidth();
}
//----------------------------------------------------------
@Override
protected void setPreferences(PreferencesDialog dialog)
{
dialog.setPreferencesTabWidth();
}
//----------------------------------------------------------
},
EDITOR
(
"Editor"
)
{
@Override
protected JPanel createPanel(PreferencesDialog dialog)
{
return dialog.createPanelEditor();
}
//----------------------------------------------------------
@Override
protected void validatePreferences(PreferencesDialog dialog)
throws AppException
{
dialog.validatePreferencesEditor();
}
//----------------------------------------------------------
@Override
protected void setPreferences(PreferencesDialog dialog)
{
dialog.setPreferencesEditor();
}
//----------------------------------------------------------
},
FILE_LOCATIONS
(
"File locations"
)
{
@Override
protected JPanel createPanel(PreferencesDialog dialog)
{
return dialog.createPanelFileLocations();
}
//----------------------------------------------------------
@Override
protected void validatePreferences(PreferencesDialog dialog)
throws AppException
{
dialog.validatePreferencesFileLocations();
}
//----------------------------------------------------------
@Override
protected void setPreferences(PreferencesDialog dialog)
{
dialog.setPreferencesFileLocations();
}
//----------------------------------------------------------
},
FONTS
(
"Fonts"
)
{
@Override
protected JPanel createPanel(PreferencesDialog dialog)
{
return dialog.createPanelFonts();
}
//----------------------------------------------------------
@Override
protected void validatePreferences(PreferencesDialog dialog)
throws AppException
{
dialog.validatePreferencesFonts();
}
//----------------------------------------------------------
@Override
protected void setPreferences(PreferencesDialog dialog)
{
dialog.setPreferencesFonts();
}
//----------------------------------------------------------
};
////////////////////////////////////////////////////////////////////
// Constructors
////////////////////////////////////////////////////////////////////
private Tab(String text)
{
this.text = text;
}
//--------------------------------------------------------------
////////////////////////////////////////////////////////////////////
// Abstract methods
////////////////////////////////////////////////////////////////////
protected abstract JPanel createPanel(PreferencesDialog dialog);
//--------------------------------------------------------------
protected abstract void validatePreferences(PreferencesDialog dialog)
throws AppException;
//--------------------------------------------------------------
protected abstract void setPreferences(PreferencesDialog dialog);
//--------------------------------------------------------------
////////////////////////////////////////////////////////////////////
// Instance fields
////////////////////////////////////////////////////////////////////
private String text;
}
//==================================================================
// ERROR IDENTIFIERS
private enum ErrorId
implements AppException.IId
{
////////////////////////////////////////////////////////////////////
// Constants
////////////////////////////////////////////////////////////////////
FILE_DOES_NOT_EXIST
("The file does not exist."),
NOT_A_FILE
("The pathname does not denote a normal file."),
FILE_ACCESS_NOT_PERMITTED
("Access to the file was not permitted."),
INVALID_TAB_SURROGATE
("The tab surrogate is invalid.");
////////////////////////////////////////////////////////////////////
// Constructors
////////////////////////////////////////////////////////////////////
private ErrorId(String message)
{
this.message = message;
}
//--------------------------------------------------------------
////////////////////////////////////////////////////////////////////
// Instance methods : AppException.IId interface
////////////////////////////////////////////////////////////////////
public String getMessage()
{
return message;
}
//--------------------------------------------------------------
////////////////////////////////////////////////////////////////////
// Instance fields
////////////////////////////////////////////////////////////////////
private String message;
}
//==================================================================
////////////////////////////////////////////////////////////////////////
// Member classes : non-inner classes
////////////////////////////////////////////////////////////////////////
// ESCAPED METACHARACTERS FIELD CLASS
private static class EscapedMetacharsField
extends ConstrainedTextField
{
////////////////////////////////////////////////////////////////////
// Constants
////////////////////////////////////////////////////////////////////
private static final int NUM_COLUMNS = 16;
////////////////////////////////////////////////////////////////////
// Constructors
////////////////////////////////////////////////////////////////////
private EscapedMetacharsField(String text)
{
super(AppConfig.PUNCTUATION_CHARS.length(), NUM_COLUMNS, text);
AppFont.TEXT_FIELD.apply(this);
GuiUtils.setTextComponentMargins(this);
}
//--------------------------------------------------------------
////////////////////////////////////////////////////////////////////
// Instance methods : overriding methods
////////////////////////////////////////////////////////////////////
@Override
protected boolean acceptCharacter(char ch,
int index)
{
return (AppConfig.PUNCTUATION_CHARS.indexOf(ch) >= 0);
}
//--------------------------------------------------------------
}
//==================================================================
// TAB SURROGATE FIELD CLASS
private static class TabSurrogateField
extends ConstrainedTextField
{
////////////////////////////////////////////////////////////////////
// Constants
////////////////////////////////////////////////////////////////////
private static final int LENGTH = 4;
////////////////////////////////////////////////////////////////////
// Constructors
////////////////////////////////////////////////////////////////////
private TabSurrogateField(char ch)
{
super(LENGTH);
AppFont.TEXT_FIELD.apply(this);
GuiUtils.setTextComponentMargins(this);
setText((Character.isISOControl(ch) || !getFont().canDisplay(ch))
? NumberUtils.uIntToHexString(ch, 4, '0')
: Character.toString(ch));
}
//--------------------------------------------------------------
////////////////////////////////////////////////////////////////////
// Instance methods
////////////////////////////////////////////////////////////////////
public char getChar()
{
char ch = '\0';
String str = getText();
switch (str.length())
{
case 1:
ch = str.charAt(0);
break;
case LENGTH:
try
{
ch = (char)Integer.parseInt(str, 16);
}
catch (NumberFormatException e)
{
// ignore
}
break;
}
return ch;
}
//--------------------------------------------------------------
}
//==================================================================
// TAB-WIDTH SELECTION LIST CLASS
private static class TabWidthList
extends SingleSelectionList<TabWidthFilter>
{
////////////////////////////////////////////////////////////////////
// Constants
////////////////////////////////////////////////////////////////////
private static final int FILTER_FIELD_NUM_COLUMNS = 40;
private static final int WIDTH_FIELD_NUM_COLUMNS = 3;
private static final int NUM_ROWS = 16;
private static final int SEPARATOR_WIDTH = 1;
private static final Color SEPARATOR_COLOUR = new Color(192, 200, 192);
////////////////////////////////////////////////////////////////////
// Constructors
////////////////////////////////////////////////////////////////////
private TabWidthList(List<TabWidthFilter> filters)
{
super(FILTER_FIELD_NUM_COLUMNS + WIDTH_FIELD_NUM_COLUMNS, NUM_ROWS, AppFont.MAIN.getFont(),
filters);
setExtraWidth(2 * getHorizontalMargin() + SEPARATOR_WIDTH);
setRowHeight(getRowHeight() + 1);
}
//--------------------------------------------------------------
////////////////////////////////////////////////////////////////////
// Instance methods : overriding methods
////////////////////////////////////////////////////////////////////
@Override
public String getElementText(int index)
{
return getElement(index).getFilterString();
}
//--------------------------------------------------------------
@Override
protected void drawElement(Graphics gr,
int index)
{
// Create copy of graphics context
gr = gr.create();
// Set rendering hints for text antialiasing and fractional metrics
TextRendering.setHints((Graphics2D)gr);
// Get filter text and truncate it if it is too wide
FontMetrics fontMetrics = gr.getFontMetrics();
int filterFieldWidth = getMaxTextWidth() - WIDTH_FIELD_NUM_COLUMNS * getColumnWidth();
String text = truncateText(getElementText(index), fontMetrics, filterFieldWidth);
// Draw filter text
int rowHeight = getRowHeight();
int x = getHorizontalMargin();
int y = index * rowHeight;
int textY = y + GuiUtils.getBaselineOffset(rowHeight, fontMetrics);
gr.setColor(getForegroundColour(index));
gr.drawString(text, x, textY);
// Draw tab-width text
text = Integer.toString(getElement(index).getTabWidth());
x = getWidth() - getHorizontalMargin() - fontMetrics.stringWidth(text);
gr.drawString(text, x, textY);
// Draw separator
x = getHorizontalMargin() + filterFieldWidth + getExtraWidth() / 2;
gr.setColor(SEPARATOR_COLOUR);
gr.drawLine(x, y, x, y + rowHeight - 1);
// Draw bottom border
y += rowHeight - 1;
gr.drawLine(0, y, getWidth() - 1, y);
}
//--------------------------------------------------------------
}
//==================================================================
// APPEARANCE PANEL LABEL CLASS
private static class AppearancePanelLabel
extends FixedWidthLabel
{
////////////////////////////////////////////////////////////////////
// Constants
////////////////////////////////////////////////////////////////////
private static final String KEY = AppearancePanelLabel.class.getCanonicalName();
////////////////////////////////////////////////////////////////////
// Constructors
////////////////////////////////////////////////////////////////////
private AppearancePanelLabel(String text)
{
super(text);
}
//--------------------------------------------------------------
////////////////////////////////////////////////////////////////////
// Class methods
////////////////////////////////////////////////////////////////////
private static void reset()
{
MaxValueMap.removeAll(KEY);
}
//--------------------------------------------------------------
private static void update()
{
MaxValueMap.update(KEY);
}
//--------------------------------------------------------------
////////////////////////////////////////////////////////////////////
// Instance methods : overriding methods
////////////////////////////////////////////////////////////////////
@Override
protected String getKey()
{
return KEY;
}
//--------------------------------------------------------------
}
//==================================================================
// TAB-WIDTH PANEL LABEL CLASS
private static class TabWidthPanelLabel
extends FixedWidthLabel
{
////////////////////////////////////////////////////////////////////
// Constants
////////////////////////////////////////////////////////////////////
private static final String KEY = TabWidthPanelLabel.class.getCanonicalName();
////////////////////////////////////////////////////////////////////
// Constructors
////////////////////////////////////////////////////////////////////
private TabWidthPanelLabel(String text)
{
super(text);
}
//--------------------------------------------------------------
////////////////////////////////////////////////////////////////////
// Class methods
////////////////////////////////////////////////////////////////////
private static void reset()
{
MaxValueMap.removeAll(KEY);
}
//--------------------------------------------------------------
private static void update()
{
MaxValueMap.update(KEY);
}
//--------------------------------------------------------------
////////////////////////////////////////////////////////////////////
// Instance methods : overriding methods
////////////////////////////////////////////////////////////////////
@Override
protected String getKey()
{
return KEY;
}
//--------------------------------------------------------------
}
//==================================================================
// COLOUR BUTTON CLASS
private static class ColourButton
extends JButton
{
////////////////////////////////////////////////////////////////////
// Constants
////////////////////////////////////////////////////////////////////
private static final int ICON_WIDTH = 40;
private static final int ICON_HEIGHT = 16;
private static final Insets MARGINS = new Insets(2, 2, 2, 2);
////////////////////////////////////////////////////////////////////
// Constructors
////////////////////////////////////////////////////////////////////
private ColourButton(Color colour)
{
super(new ColourSampleIcon(ICON_WIDTH, ICON_HEIGHT));
setMargin(MARGINS);
setForeground(colour);
}
//--------------------------------------------------------------
}
//==================================================================
// FONT PANEL CLASS
private static class FontPanel
{
////////////////////////////////////////////////////////////////////
// Constants
////////////////////////////////////////////////////////////////////
private static final int MIN_SIZE = 0;
private static final int MAX_SIZE = 99;
private static final int SIZE_FIELD_LENGTH = 2;
private static final String DEFAULT_FONT_STR = "<default font>";
////////////////////////////////////////////////////////////////////
// Member classes : non-inner classes
////////////////////////////////////////////////////////////////////
// SIZE SPINNER CLASS
private static class SizeSpinner
extends IntegerSpinner
{
////////////////////////////////////////////////////////////////
// Constructors
////////////////////////////////////////////////////////////////
private SizeSpinner(int value)
{
super(value, MIN_SIZE, MAX_SIZE, SIZE_FIELD_LENGTH);
AppFont.TEXT_FIELD.apply(this);
}
//----------------------------------------------------------
////////////////////////////////////////////////////////////////
// Instance methods : overriding methods
////////////////////////////////////////////////////////////////
/**
* @throws NumberFormatException
*/
@Override
protected int getEditorValue()
{
IntegerValueField field = (IntegerValueField)getEditor();
return (field.isEmpty() ? 0 : field.getValue());
}
//----------------------------------------------------------
@Override
protected void setEditorValue(int value)
{
IntegerValueField field = (IntegerValueField)getEditor();
if (value == 0)
field.setText(null);
else
field.setValue(value);
}
//----------------------------------------------------------
}
//==============================================================
////////////////////////////////////////////////////////////////////
// Constructors
////////////////////////////////////////////////////////////////////
private FontPanel(FontEx font,
String[] fontNames)
{
nameComboBox = new FComboBox<>();
nameComboBox.addItem(DEFAULT_FONT_STR);
for (String fontName : fontNames)
nameComboBox.addItem(fontName);
nameComboBox.setSelectedIndex(Utils.indexOf(font.getName(), fontNames) + 1);
styleComboBox = new FComboBox<>(FontStyle.values());
styleComboBox.setSelectedValue(font.getStyle());
sizeSpinner = new SizeSpinner(font.getSize());
}
//--------------------------------------------------------------
////////////////////////////////////////////////////////////////////
// Instance methods
////////////////////////////////////////////////////////////////////
public FontEx getFont()
{
String name = (nameComboBox.getSelectedIndex() <= 0) ? null : nameComboBox.getSelectedValue();
return new FontEx(name, styleComboBox.getSelectedValue(), sizeSpinner.getIntValue());
}
//--------------------------------------------------------------
////////////////////////////////////////////////////////////////////
// Instance fields
////////////////////////////////////////////////////////////////////
private FComboBox<String> nameComboBox;
private FComboBox<FontStyle> styleComboBox;
private SizeSpinner sizeSpinner;
}
//==================================================================
////////////////////////////////////////////////////////////////////////
// Constructors
////////////////////////////////////////////////////////////////////////
private PreferencesDialog(Window owner)
{
// Call superclass constructor
super(owner, TITLE_STR, Dialog.ModalityType.APPLICATION_MODAL);
// Set icons
setIconImages(owner.getIconImages());
//---- Tabbed panel
tabbedPanel = new FTabbedPane();
for (Tab tab : Tab.values())
tabbedPanel.addTab(tab.text, tab.createPanel(this));
tabbedPanel.setSelectedIndex(tabIndex);
//---- Button panel: save configuration
JPanel saveButtonPanel = new JPanel(new GridLayout(1, 0, 8, 0));
// Button: save configuration
JButton saveButton = new FButton(SAVE_CONFIGURATION_STR + AppConstants.ELLIPSIS_STR);
saveButton.setActionCommand(Command.SAVE_CONFIGURATION);
saveButton.addActionListener(this);
saveButtonPanel.add(saveButton);
//---- Button panel: OK, cancel
JPanel okCancelButtonPanel = new JPanel(new GridLayout(1, 0, 8, 0));
// Button: OK
JButton okButton = new FButton(AppConstants.OK_STR);
okButton.setActionCommand(Command.ACCEPT);
okButton.addActionListener(this);
okCancelButtonPanel.add(okButton);
// Button: cancel
JButton cancelButton = new FButton(AppConstants.CANCEL_STR);
cancelButton.setActionCommand(Command.CLOSE);
cancelButton.addActionListener(this);
okCancelButtonPanel.add(cancelButton);
//---- Button panel
GridBagLayout gridBag = new GridBagLayout();
GridBagConstraints gbc = new GridBagConstraints();
JPanel buttonPanel = new JPanel(gridBag);
buttonPanel.setBorder(BorderFactory.createEmptyBorder(3, 24, 3, 24));
int gridX = 0;
gbc.gridx = gridX++;
gbc.gridy = 0;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.5;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = new Insets(0, 0, 0, 12);
gridBag.setConstraints(saveButtonPanel, gbc);
buttonPanel.add(saveButtonPanel);
gbc.gridx = gridX++;
gbc.gridy = 0;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.5;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = new Insets(0, 12, 0, 0);
gridBag.setConstraints(okCancelButtonPanel, gbc);
buttonPanel.add(okCancelButtonPanel);
//---- Main panel
JPanel mainPanel = new JPanel(gridBag);
mainPanel.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));
int gridY = 0;
gbc.gridx = 0;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.insets = new Insets(0, 0, 0, 0);
gridBag.setConstraints(tabbedPanel, gbc);
mainPanel.add(tabbedPanel);
gbc.gridx = 0;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.insets = new Insets(3, 0, 0, 0);
gridBag.setConstraints(buttonPanel, gbc);
mainPanel.add(buttonPanel);
// Add commands to action map
KeyAction.create(mainPanel, JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT,
KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0), Command.CLOSE, this);
//---- Window
// Set content pane
setContentPane(mainPanel);
// Dispose of window explicitly
setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
// Handle window closing
addWindowListener(new WindowAdapter()
{
@Override
public void windowClosing(WindowEvent event)
{
onClose();
}
});
// Prevent dialog from being resized
setResizable(false);
// Resize dialog to its preferred size
pack();
// Set location of dialog box
if (location == null)
location = GuiUtils.getComponentLocation(this, owner);
setLocation(location);
// Set default button
getRootPane().setDefaultButton(okButton);
// Show dialog
setVisible(true);
}
//------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////
// Class methods
////////////////////////////////////////////////////////////////////////
public static boolean showDialog(Component parent)
{
return new PreferencesDialog(GuiUtils.getWindow(parent)).accepted;
}
//------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////
// Instance methods : ActionListener interface
////////////////////////////////////////////////////////////////////////
public void actionPerformed(ActionEvent event)
{
String command = event.getActionCommand();
if (command.equals(Command.CONFIRM_DELETE_TAB_WIDTH_FILTER) &&
((event.getModifiers() & MODIFIERS_MASK) == ActionEvent.SHIFT_MASK))
command = Command.DELETE_TAB_WIDTH_FILTER;
else if (COMMAND_MAP.containsKey(command))
command = COMMAND_MAP.get(command);
if (command.equals(Command.CHOOSE_TEXT_COLOUR))
onChooseTextColour();
else if (command.equals(Command.CHOOSE_BACKGROUND_COLOUR))
onChooseBackgroundColour();
else if (command.equals(Command.CHOOSE_HIGHLIGHT_TEXT_COLOUR))
onChooseHighlightTextColour();
else if (command.equals(Command.CHOOSE_HIGHLIGHT_BACKGROUND_COLOUR))
onChooseHighlightBackgroundColour();
else if (command.equals(Command.CHOOSE_DEFAULT_SEARCH_PARAMS_FILE))
onChooseDefaultSearchParamsFile();
else if (command.equals(Command.ADD_TAB_WIDTH_FILTER))
onAddTabWidthFilter();
else if (command.equals(Command.EDIT_TAB_WIDTH_FILTER))
onEditTabWidthFilter();
else if (command.equals(Command.DELETE_TAB_WIDTH_FILTER))
onDeleteTabWidthFilter();
else if (command.equals(Command.CONFIRM_DELETE_TAB_WIDTH_FILTER))
onConfirmDeleteTabWidthFilter();
else if (command.equals(Command.MOVE_TAB_WIDTH_FILTER_UP))
onMoveTabWidthFilterUp();
else if (command.equals(Command.MOVE_TAB_WIDTH_FILTER_DOWN))
onMoveTabWidthFilterDown();
else if (command.equals(Command.MOVE_TAB_WIDTH_FILTER))
onMoveTabWidthFilter();
else if (command.equals(Command.SAVE_CONFIGURATION))
onSaveConfiguration();
else if (command.equals(Command.ACCEPT))
onAccept();
else if (command.equals(Command.CLOSE))
onClose();
}
//------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////
// Instance methods : ChangeListener interface
////////////////////////////////////////////////////////////////////////
public void stateChanged(ChangeEvent event)
{
if (!tabWidthFilterListScrollPane.getVerticalScrollBar().getValueIsAdjusting() &&
!tabWidthFilterList.isDragging())
tabWidthFilterList.snapViewPosition();
}
//------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////
// Instance methods : ListSelectionListener interface
////////////////////////////////////////////////////////////////////////
public void valueChanged(ListSelectionEvent event)
{
if (!event.getValueIsAdjusting())
{
Object eventSource = event.getSource();
if (eventSource == tabWidthFilterList)
updateTabWidthFilterButtons();
}
}
//------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////
// Instance methods
////////////////////////////////////////////////////////////////////////
private void validatePreferences()
throws AppException
{
for (Tab tab : Tab.values())
tab.validatePreferences(this);
}
//------------------------------------------------------------------
private void setPreferences()
{
for (Tab tab : Tab.values())
tab.setPreferences(this);
}
//------------------------------------------------------------------
private void updateTabWidthFilterButtons()
{
tabWidthAddButton.
setEnabled(tabWidthFilterList.getNumElements() < AppConfig.MAX_NUM_TAB_WIDTH_FILTERS);
tabWidthEditButton.setEnabled(tabWidthFilterList.isSelection());
tabWidthDeleteButton.setEnabled(tabWidthFilterList.isSelection());
}
//------------------------------------------------------------------
private void onChooseTextColour()
{
Color colour = JColorChooser.showDialog(this, TAC_STR + TEXT_TITLE_STR,
textColourButton.getForeground());
if (colour != null)
textColourButton.setForeground(colour);
}
//------------------------------------------------------------------
private void onChooseBackgroundColour()
{
Color colour = JColorChooser.showDialog(this, TAC_STR + BACKGROUND_TITLE_STR,
backgroundColourButton.getForeground());
if (colour != null)
backgroundColourButton.setForeground(colour);
}
//------------------------------------------------------------------
private void onChooseHighlightTextColour()
{
Color colour = JColorChooser.showDialog(this, TAC_STR + HIGHLIGHT_TEXT_TITLE_STR,
highlightTextColourButton.getForeground());
if (colour != null)
highlightTextColourButton.setForeground(colour);
}
//------------------------------------------------------------------
private void onChooseHighlightBackgroundColour()
{
Color colour = JColorChooser.showDialog(this, TAC_STR + HIGHLIGHT_BACKGROUND_TITLE_STR,
highlightBackgroundColourButton.getForeground());
if (colour != null)
highlightBackgroundColourButton.setForeground(colour);
}
//------------------------------------------------------------------
private void onChooseDefaultSearchParamsFile()
{
if (defaultSearchParamsFileChooser == null)
{
defaultSearchParamsFileChooser = new JFileChooser();
defaultSearchParamsFileChooser.setDialogTitle(DEFAULT_SEARCH_PARAMS_TITLE_STR);
defaultSearchParamsFileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
defaultSearchParamsFileChooser.setApproveButtonMnemonic(KeyEvent.VK_S);
defaultSearchParamsFileChooser.setApproveButtonToolTipText(SELECT_FILE_STR);
defaultSearchParamsFileChooser.
setFileFilter(new FilenameSuffixFilter(AppConstants.XML_FILES_STR,
AppConstants.XML_FILE_SUFFIX));
}
defaultSearchParamsFileChooser.setSelectedFile(defaultSearchParamsField.getCanonicalFile());
defaultSearchParamsFileChooser.rescanCurrentDirectory();
if (defaultSearchParamsFileChooser.showDialog(this, SELECT_STR) == JFileChooser.APPROVE_OPTION)
defaultSearchParamsField.setFile(defaultSearchParamsFileChooser.getSelectedFile());
}
//------------------------------------------------------------------
private void onAddTabWidthFilter()
{
TabWidthFilter filter = TabWidthFilterDialog.showDialog(this, ADD_FILTER_STR, null);
if (filter != null)
{
tabWidthFilterList.addElement(filter);
updateTabWidthFilterButtons();
}
}
//------------------------------------------------------------------
private void onEditTabWidthFilter()
{
int index = tabWidthFilterList.getSelectedIndex();
TabWidthFilter filter = TabWidthFilterDialog.showDialog(this, EDIT_FILTER_STR,
tabWidthFilterList.getElement(index));
if (filter != null)
tabWidthFilterList.setElement(index, filter);
}
//------------------------------------------------------------------
private void onConfirmDeleteTabWidthFilter()
{
String[] optionStrs = Utils.getOptionStrings(DELETE_STR);
if (JOptionPane.showOptionDialog(this, DELETE_FILTER_MESSAGE_STR, DELETE_FILTER_STR,
JOptionPane.OK_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE, null,
optionStrs, optionStrs[1]) == JOptionPane.OK_OPTION)
onDeleteTabWidthFilter();
}
//------------------------------------------------------------------
private void onDeleteTabWidthFilter()
{
tabWidthFilterList.removeElement(tabWidthFilterList.getSelectedIndex());
updateTabWidthFilterButtons();
}
//------------------------------------------------------------------
private void onMoveTabWidthFilterUp()
{
int index = tabWidthFilterList.getSelectedIndex();
tabWidthFilterList.moveElement(index, index - 1);
}
//------------------------------------------------------------------
private void onMoveTabWidthFilterDown()
{
int index = tabWidthFilterList.getSelectedIndex();
tabWidthFilterList.moveElement(index, index + 1);
}
//------------------------------------------------------------------
private void onMoveTabWidthFilter()
{
int fromIndex = tabWidthFilterList.getSelectedIndex();
int toIndex = tabWidthFilterList.getDragEndIndex();
if (toIndex > fromIndex)
--toIndex;
tabWidthFilterList.moveElement(fromIndex, toIndex);
}
//------------------------------------------------------------------
private void onSaveConfiguration()
{
try
{
validatePreferences();
File file = AppConfig.INSTANCE.chooseFile(this);
if (file != null)
{
String[] optionStrs = Utils.getOptionStrings(AppConstants.REPLACE_STR);
if (!file.exists() ||
(JOptionPane.showOptionDialog(this, Utils.getPathname(file) +
AppConstants.ALREADY_EXISTS_STR,
SAVE_CONFIG_FILE_STR, JOptionPane.OK_CANCEL_OPTION,
JOptionPane.WARNING_MESSAGE, null, optionStrs,
optionStrs[1]) == JOptionPane.OK_OPTION))
{
setPreferences();
accepted = true;
TaskProgressDialog.showDialog(this, WRITE_CONFIG_FILE_STR,
new Task.WriteConfig(file));
}
}
}
catch (AppException e)
{
JOptionPane.showMessageDialog(this, e, App.SHORT_NAME, JOptionPane.ERROR_MESSAGE);
}
if (accepted)
onClose();
}
//------------------------------------------------------------------
private void onAccept()
{
try
{
validatePreferences();
setPreferences();
accepted = true;
onClose();
}
catch (AppException e)
{
JOptionPane.showMessageDialog(this, e, App.SHORT_NAME, JOptionPane.ERROR_MESSAGE);
}
}
//------------------------------------------------------------------
private void onClose()
{
FPathnameField.removeObservers(KEY);
location = getLocation();
tabIndex = tabbedPanel.getSelectedIndex();
setVisible(false);
dispose();
}
//------------------------------------------------------------------
private JPanel createPanelGeneral()
{
//---- Control panel
GridBagLayout gridBag = new GridBagLayout();
GridBagConstraints gbc = new GridBagConstraints();
JPanel controlPanel = new JPanel(gridBag);
GuiUtils.setPaddedLineBorder(controlPanel);
int gridY = 0;
AppConfig config = AppConfig.INSTANCE;
// Label: character encoding
JLabel characterEncodingLabel = new FLabel(CHARACTER_ENCODING_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(characterEncodingLabel, gbc);
controlPanel.add(characterEncodingLabel);
// Combo box: character encoding
characterEncodingComboBox = new FComboBox<>();
characterEncodingComboBox.addItem(DEFAULT_ENCODING_STR);
for (String key : Charset.availableCharsets().keySet())
characterEncodingComboBox.addItem(key);
String encodingName = config.getCharacterEncoding();
if (encodingName == null)
characterEncodingComboBox.setSelectedIndex(0);
else
characterEncodingComboBox.setSelectedValue(encodingName);
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(characterEncodingComboBox, gbc);
controlPanel.add(characterEncodingComboBox);
// Label: escaped metacharacters
JLabel escapedMetacharsLabel = new FLabel(ESCAPED_METACHARS_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(escapedMetacharsLabel, gbc);
controlPanel.add(escapedMetacharsLabel);
// Field: escaped metacharacters
escapedMetacharsField = new EscapedMetacharsField(config.getEscapedMetacharacters());
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(escapedMetacharsField, gbc);
controlPanel.add(escapedMetacharsField);
// Label: replacement escape character
JLabel replacementEscapeCharLabel = new FLabel(REPLACEMENT_ESCAPE_CHAR_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(replacementEscapeCharLabel, gbc);
controlPanel.add(replacementEscapeCharLabel);
// Combo box: replacement escape character
replacementEscapeCharComboBox = new FComboBox<>();
for (int i = 0; i < AppConfig.PUNCTUATION_CHARS.length(); i++)
replacementEscapeCharComboBox.
addItem(Character.valueOf(AppConfig.PUNCTUATION_CHARS.charAt(i)));
replacementEscapeCharComboBox.
setSelectedValue(Character.valueOf(config.getReplacementEscapeChar()));
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(replacementEscapeCharComboBox, gbc);
controlPanel.add(replacementEscapeCharComboBox);
// Label: ignore filename case
JLabel ignoreFilenameCaseLabel = new FLabel(IGNORE_FILENAME_CASE_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(ignoreFilenameCaseLabel, gbc);
controlPanel.add(ignoreFilenameCaseLabel);
// Combo box: ignore filename case
ignoreFilenameCaseComboBox = new BooleanComboBox(config.isIgnoreFilenameCase());
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(ignoreFilenameCaseComboBox, gbc);
controlPanel.add(ignoreFilenameCaseComboBox);
// Label: file-writing mode
JLabel fileWritingModeLabel = new FLabel(FILE_WRITING_MODE_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(fileWritingModeLabel, gbc);
controlPanel.add(fileWritingModeLabel);
// Combo box: file-writing mode
fileWritingModeComboBox = new FComboBox<>(FileWritingMode.values());
fileWritingModeComboBox.setSelectedValue(config.getFileWritingMode());
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(fileWritingModeComboBox, gbc);
controlPanel.add(fileWritingModeComboBox);
// Label: preserve line separator
JLabel preserveLineSeparatorLabel = new FLabel(PRESERVE_LINE_SEPARATOR_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(preserveLineSeparatorLabel, gbc);
controlPanel.add(preserveLineSeparatorLabel);
// Combo box: preserve line separator
preserveLineSeparatorComboBox = new BooleanComboBox(config.isPreserveLineSeparator());
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(preserveLineSeparatorComboBox, gbc);
controlPanel.add(preserveLineSeparatorComboBox);
// Label: show UNIX pathnames
JLabel showUnixPathnamesLabel = new FLabel(SHOW_UNIX_PATHNAMES_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(showUnixPathnamesLabel, gbc);
controlPanel.add(showUnixPathnamesLabel);
// Combo box: show UNIX pathnames
showUnixPathnamesComboBox = new BooleanComboBox(config.isShowUnixPathnames());
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(showUnixPathnamesComboBox, gbc);
controlPanel.add(showUnixPathnamesComboBox);
// Label: select text on focus gained
JLabel selectTextOnFocusGainedLabel = new FLabel(SELECT_TEXT_ON_FOCUS_GAINED_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(selectTextOnFocusGainedLabel, gbc);
controlPanel.add(selectTextOnFocusGainedLabel);
// Combo box: select text on focus gained
selectTextOnFocusGainedComboBox = new BooleanComboBox(config.isSelectTextOnFocusGained());
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(selectTextOnFocusGainedComboBox, gbc);
controlPanel.add(selectTextOnFocusGainedComboBox);
// Label: save main window location
JLabel saveMainWindowLocationLabel = new FLabel(SAVE_MAIN_WINDOW_LOCATION_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(saveMainWindowLocationLabel, gbc);
controlPanel.add(saveMainWindowLocationLabel);
// Combo box: save main window location
saveMainWindowLocationComboBox = new BooleanComboBox(config.isMainWindowLocation());
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(saveMainWindowLocationComboBox, gbc);
controlPanel.add(saveMainWindowLocationComboBox);
// Label: hide control dialog
JLabel hideControlDialogLabel = new FLabel(HIDE_CONTROL_DIALOG_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(hideControlDialogLabel, gbc);
controlPanel.add(hideControlDialogLabel);
// Combo box: hide control dialog
hideControlDialogComboBox = new BooleanComboBox(config.isHideControlDialogWhenSearching());
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 1.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(hideControlDialogComboBox, gbc);
controlPanel.add(hideControlDialogComboBox);
// Label: copy results as list file
JLabel copyResultsAsListFileLabel = new FLabel(COPY_RESULTS_AS_LIST_FILE_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(copyResultsAsListFileLabel, gbc);
controlPanel.add(copyResultsAsListFileLabel);
// Combo box: copy results as list file
copyResultsAsListFileComboBox = new BooleanComboBox(config.isCopyResultsAsListFile());
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(copyResultsAsListFileComboBox, gbc);
controlPanel.add(copyResultsAsListFileComboBox);
//---- Outer panel
JPanel outerPanel = new JPanel(gridBag);
outerPanel.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));
gbc.gridx = 0;
gbc.gridy = 0;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = new Insets(0, 0, 0, 0);
gridBag.setConstraints(controlPanel, gbc);
outerPanel.add(controlPanel);
return outerPanel;
}
//------------------------------------------------------------------
private JPanel createPanelAppearance()
{
// Reset fixed-width labels
AppearancePanelLabel.reset();
//---- Upper panel
GridBagLayout gridBag = new GridBagLayout();
GridBagConstraints gbc = new GridBagConstraints();
JPanel upperPanel = new JPanel(gridBag);
GuiUtils.setPaddedLineBorder(upperPanel);
int gridY = 0;
AppConfig config = AppConfig.INSTANCE;
// Label: look-and-feel
JLabel lookAndFeelLabel = new AppearancePanelLabel(LOOK_AND_FEEL_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(lookAndFeelLabel, gbc);
upperPanel.add(lookAndFeelLabel);
// Combo box: look-and-feel
lookAndFeelComboBox = new FComboBox<>();
UIManager.LookAndFeelInfo[] lookAndFeelInfos = UIManager.getInstalledLookAndFeels();
if (lookAndFeelInfos.length == 0)
{
lookAndFeelComboBox.addItem(NO_LOOK_AND_FEELS_STR);
lookAndFeelComboBox.setSelectedIndex(0);
lookAndFeelComboBox.setEnabled(false);
}
else
{
String[] lookAndFeelNames = new String[lookAndFeelInfos.length];
for (int i = 0; i < lookAndFeelInfos.length; i++)
{
lookAndFeelNames[i] = lookAndFeelInfos[i].getName();
lookAndFeelComboBox.addItem(lookAndFeelNames[i]);
}
lookAndFeelComboBox.setSelectedValue(config.getLookAndFeel());
}
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 1.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(lookAndFeelComboBox, gbc);
upperPanel.add(lookAndFeelComboBox);
// Label: text antialiasing
JLabel textAntialiasingLabel = new AppearancePanelLabel(TEXT_ANTIALIASING_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(textAntialiasingLabel, gbc);
upperPanel.add(textAntialiasingLabel);
// Combo box: text antialiasing
textAntialiasingComboBox = new FComboBox<>(TextRendering.Antialiasing.values());
textAntialiasingComboBox.setSelectedValue(config.getTextAntialiasing());
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 1.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(textAntialiasingComboBox, gbc);
upperPanel.add(textAntialiasingComboBox);
// Label: parameter editor size
JLabel paramEditorSizeLabel = new AppearancePanelLabel(PARAMETER_EDITOR_SIZE_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(paramEditorSizeLabel, gbc);
upperPanel.add(paramEditorSizeLabel);
// Panel: parameter editor size
paramEditorSizePanel = new DimensionsSpinnerPanel(config.getParameterEditorSize().width,
ParameterEditor.MIN_NUM_COLUMNS,
ParameterEditor.MAX_NUM_COLUMNS,
PARAMETER_EDITOR_WIDTH_FIELD_LENGTH,
config.getParameterEditorSize().height,
ParameterEditor.MIN_NUM_ROWS,
ParameterEditor.MAX_NUM_ROWS,
PARAMETER_EDITOR_HEIGHT_FIELD_LENGTH,
new String[]{ COLUMNS_STR, ROWS_STR });
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 1.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(paramEditorSizePanel, gbc);
upperPanel.add(paramEditorSizePanel);
// Label: number of rows in result area
JLabel resultAreaNumRowsLabel = new AppearancePanelLabel(RESULT_AREA_NUM_ROWS_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(resultAreaNumRowsLabel, gbc);
upperPanel.add(resultAreaNumRowsLabel);
// Spinner: number of rows in result area
resultAreaNumRowsSpinner = new FIntegerSpinner(config.getResultAreaNumRows(),
AppConfig.MIN_RESULT_AREA_NUM_ROWS,
AppConfig.MAX_RESULT_AREA_NUM_ROWS,
RESULT_AREA_NUM_ROWS_FIELD_LENGTH);
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 1.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(resultAreaNumRowsSpinner, gbc);
upperPanel.add(resultAreaNumRowsSpinner);
// Label: tab surrogate
JLabel tabSurrogateLabel = new AppearancePanelLabel(TAB_SURROGATE_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(tabSurrogateLabel, gbc);
upperPanel.add(tabSurrogateLabel);
// Field: tab surrogate
tabSurrogateField = new TabSurrogateField(config.getTabSurrogate());
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 1.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(tabSurrogateField, gbc);
upperPanel.add(tabSurrogateField);
//---- Text view panel
JPanel textViewPanel = new JPanel(gridBag);
TitledBorder.setPaddedBorder(textViewPanel, TEXT_VIEW_STR);
gridY = 0;
// Label: viewable size
JLabel viewableSizeLabel = new AppearancePanelLabel(VIEWABLE_SIZE_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(viewableSizeLabel, gbc);
textViewPanel.add(viewableSizeLabel);
// Panel: text-view size
textViewSizePanel = new DimensionsSpinnerPanel(config.getTextViewViewableSize().width,
AppConfig.MIN_TEXT_VIEW_NUM_COLUMNS,
AppConfig.MAX_TEXT_VIEW_NUM_COLUMNS,
TEXT_VIEW_WIDTH_FIELD_LENGTH,
config.getTextViewViewableSize().height,
AppConfig.MIN_TEXT_VIEW_NUM_ROWS,
AppConfig.MAX_TEXT_VIEW_NUM_ROWS,
TEXT_VIEW_HEIGHT_FIELD_LENGTH,
new String[]{ COLUMNS_STR, ROWS_STR });
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 1.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(textViewSizePanel, gbc);
textViewPanel.add(textViewSizePanel);
// Label: maximum number of columns
JLabel maxNumColumnsLabel = new AppearancePanelLabel(MAX_NUM_COLUMNS_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(maxNumColumnsLabel, gbc);
textViewPanel.add(maxNumColumnsLabel);
// Spinner: maximum number of columns
textViewMaxNumColumnsSpinner = new FIntegerSpinner(config.getTextViewMaxNumColumns(),
AppConfig.MIN_TEXT_VIEW_MAX_NUM_COLUMNS,
AppConfig.MAX_TEXT_VIEW_MAX_NUM_COLUMNS,
TEXT_VIEW_MAX_NUM_COLUMNS_FIELD_LENGTH);
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 1.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(textViewMaxNumColumnsSpinner, gbc);
textViewPanel.add(textViewMaxNumColumnsSpinner);
// Label: text antialiasing
JLabel textViewTextAntialiasingLabel = new AppearancePanelLabel(TEXT_ANTIALIASING_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(textViewTextAntialiasingLabel, gbc);
textViewPanel.add(textViewTextAntialiasingLabel);
// Combo box: text antialiasing
textViewTextAntialiasingComboBox = new FComboBox<>(TextRendering.Antialiasing.values());
textViewTextAntialiasingComboBox.setSelectedValue(config.getTextViewTextAntialiasing());
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 1.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(textViewTextAntialiasingComboBox, gbc);
textViewPanel.add(textViewTextAntialiasingComboBox);
// Update widths of labels
AppearancePanelLabel.update();
//---- Text area colours panel
JPanel textAreaColoursPanel = new JPanel(gridBag);
TitledBorder.setPaddedBorder(textAreaColoursPanel, TEXT_AREA_COLOURS_STR);
// Text area colours panel A
JPanel textAreaColoursPanelA = new JPanel(gridBag);
gbc.gridx = 0;
gbc.gridy = 0;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.FIRST_LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = new Insets(0, 0, 0, 0);
gridBag.setConstraints(textAreaColoursPanelA, gbc);
textAreaColoursPanel.add(textAreaColoursPanelA);
// Label: text colour
JLabel textColourLabel = new FLabel(TEXT_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(textColourLabel, gbc);
textAreaColoursPanelA.add(textColourLabel);
// Button: text colour
textColourButton = new ColourButton(config.getTextAreaTextColour());
textColourButton.setActionCommand(Command.CHOOSE_TEXT_COLOUR);
textColourButton.addActionListener(this);
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(textColourButton, gbc);
textAreaColoursPanelA.add(textColourButton);
// Label: background colour
JLabel backgroundColourLabel = new FLabel(BACKGROUND_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(backgroundColourLabel, gbc);
textAreaColoursPanelA.add(backgroundColourLabel);
// Button: background colour
backgroundColourButton = new ColourButton(config.getTextAreaBackgroundColour());
backgroundColourButton.setActionCommand(Command.CHOOSE_BACKGROUND_COLOUR);
backgroundColourButton.addActionListener(this);
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(backgroundColourButton, gbc);
textAreaColoursPanelA.add(backgroundColourButton);
// Text area colours panel B
JPanel textAreaColoursPanelB = new JPanel(gridBag);
gbc.gridx = 1;
gbc.gridy = 0;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.FIRST_LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = new Insets(0, 8, 0, 0);
gridBag.setConstraints(textAreaColoursPanelB, gbc);
textAreaColoursPanel.add(textAreaColoursPanelB);
// Label: highlighted text colour
JLabel highlightTextColourLabel = new FLabel(HIGHLIGHT_TEXT_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(highlightTextColourLabel, gbc);
textAreaColoursPanelB.add(highlightTextColourLabel);
// Button: highlighted text colour
highlightTextColourButton = new ColourButton(config.getTextAreaHighlightTextColour());
highlightTextColourButton.setActionCommand(Command.CHOOSE_HIGHLIGHT_TEXT_COLOUR);
highlightTextColourButton.addActionListener(this);
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(highlightTextColourButton, gbc);
textAreaColoursPanelB.add(highlightTextColourButton);
// Label: highlighted background colour
JLabel highlightBackgroundColourLabel = new FLabel(HIGHLIGHT_BACKGROUND_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(highlightBackgroundColourLabel, gbc);
textAreaColoursPanelB.add(highlightBackgroundColourLabel);
// Button: highlighted background colour
highlightBackgroundColourButton =
new ColourButton(config.getTextAreaHighlightBackgroundColour());
highlightBackgroundColourButton.setActionCommand(Command.CHOOSE_HIGHLIGHT_BACKGROUND_COLOUR);
highlightBackgroundColourButton.addActionListener(this);
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(highlightBackgroundColourButton, gbc);
textAreaColoursPanelB.add(highlightBackgroundColourButton);
//---- Outer panel
JPanel outerPanel = new JPanel(gridBag);
outerPanel.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));
gridY = 0;
gbc.gridx = 0;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.insets = new Insets(0, 0, 0, 0);
gridBag.setConstraints(upperPanel, gbc);
outerPanel.add(upperPanel);
gbc.gridx = 0;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.insets = new Insets(3, 0, 0, 0);
gridBag.setConstraints(textViewPanel, gbc);
outerPanel.add(textViewPanel);
gbc.gridx = 0;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.insets = new Insets(3, 0, 0, 0);
gridBag.setConstraints(textAreaColoursPanel, gbc);
outerPanel.add(textAreaColoursPanel);
return outerPanel;
}
//------------------------------------------------------------------
private JPanel createPanelTabWidth()
{
// Reset fixed-width labels
TabWidthPanelLabel.reset();
//---- Tab-width filter list
// Selection list
AppConfig config = AppConfig.INSTANCE;
tabWidthFilterList = new TabWidthList(config.getTabWidthFilters());
tabWidthFilterList.addActionListener(this);
tabWidthFilterList.addListSelectionListener(this);
// Scroll pane: selection list
tabWidthFilterListScrollPane = new JScrollPane(tabWidthFilterList,
JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
tabWidthFilterListScrollPane.getVerticalScrollBar().setFocusable(false);
tabWidthFilterListScrollPane.getVerticalScrollBar().getModel().addChangeListener(this);
tabWidthFilterList.setViewport(tabWidthFilterListScrollPane.getViewport());
//---- Button panel
JPanel buttonPanel = new JPanel(new GridLayout(0, 1, 0, 8));
// Button: add
tabWidthAddButton = new FButton(ADD_STR + AppConstants.ELLIPSIS_STR);
tabWidthAddButton.setMnemonic(KeyEvent.VK_A);
tabWidthAddButton.setActionCommand(Command.ADD_TAB_WIDTH_FILTER);
tabWidthAddButton.addActionListener(this);
buttonPanel.add(tabWidthAddButton);
// Button: edit
tabWidthEditButton = new FButton(EDIT_STR + AppConstants.ELLIPSIS_STR);
tabWidthEditButton.setMnemonic(KeyEvent.VK_E);
tabWidthEditButton.setActionCommand(Command.EDIT_TAB_WIDTH_FILTER);
tabWidthEditButton.addActionListener(this);
buttonPanel.add(tabWidthEditButton);
// Button: delete
tabWidthDeleteButton = new FButton(DELETE_STR + AppConstants.ELLIPSIS_STR);
tabWidthDeleteButton.setMnemonic(KeyEvent.VK_D);
tabWidthDeleteButton.setActionCommand(Command.CONFIRM_DELETE_TAB_WIDTH_FILTER);
tabWidthDeleteButton.addActionListener(this);
buttonPanel.add(tabWidthDeleteButton);
// Update buttons
updateTabWidthFilterButtons();
//---- Tab-width filter panel
GridBagLayout gridBag = new GridBagLayout();
GridBagConstraints gbc = new GridBagConstraints();
JPanel tabWidthFilterPanel = new JPanel(gridBag);
gbc.gridx = 0;
gbc.gridy = 1;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = new Insets(0, 0, 0, 0);
gridBag.setConstraints(tabWidthFilterListScrollPane, gbc);
tabWidthFilterPanel.add(tabWidthFilterListScrollPane);
gbc.gridx = 1;
gbc.gridy = 1;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = new Insets(0, 8, 0, 0);
gridBag.setConstraints(buttonPanel, gbc);
tabWidthFilterPanel.add(buttonPanel);
//---- Default tab width panel
JPanel defaultTabWidthPanel = new JPanel(gridBag);
// Label: default tab width
JLabel defaultTabWidthLabel = new TabWidthPanelLabel(DEFAULT_TAB_WIDTH_STR);
gbc.gridx = 0;
gbc.gridy = 0;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(defaultTabWidthLabel, gbc);
defaultTabWidthPanel.add(defaultTabWidthLabel);
// Spinner: default tab width
defaultTabWidthSpinner = new FIntegerSpinner(config.getDefaultTabWidth(), TextModel.MIN_TAB_WIDTH,
TextModel.MAX_TAB_WIDTH,
DEFAULT_TAB_WIDTH_FIELD_LENGTH);
gbc.gridx = 1;
gbc.gridy = 0;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(defaultTabWidthSpinner, gbc);
defaultTabWidthPanel.add(defaultTabWidthSpinner);
//---- Text view panel
JPanel textViewPanel = new JPanel(gridBag);
TitledBorder.setPaddedBorder(textViewPanel, TEXT_VIEW_STR);
gbc.gridx = 0;
gbc.gridy = 0;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = new Insets(0, 0, 0, 0);
gridBag.setConstraints(tabWidthFilterPanel, gbc);
textViewPanel.add(tabWidthFilterPanel);
gbc.gridx = 0;
gbc.gridy = 1;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = new Insets(4, 0, 0, 0);
gridBag.setConstraints(defaultTabWidthPanel, gbc);
textViewPanel.add(defaultTabWidthPanel);
//---- Target and replacement areas panel
JPanel targetAndReplacementPanel = new JPanel(gridBag);
TitledBorder.setPaddedBorder(targetAndReplacementPanel, TARGET_AND_REPLACEMENT_STR);
// Label: target and replacement tab width
JLabel tabWidthLabel = new TabWidthPanelLabel(TAB_WIDTH1_STR);
gbc.gridx = 0;
gbc.gridy = 0;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(tabWidthLabel, gbc);
targetAndReplacementPanel.add(tabWidthLabel);
// Spinner: default tab width
targetAndReplacementTabWidthSpinner =
new FIntegerSpinner(config.getTargetAndReplacementTabWidth(),
TextModel.MIN_TAB_WIDTH, TextModel.MAX_TAB_WIDTH,
TARGET_AND_REPLACEMENT_TAB_WIDTH_FIELD_LENGTH);
gbc.gridx = 1;
gbc.gridy = 0;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(targetAndReplacementTabWidthSpinner, gbc);
targetAndReplacementPanel.add(targetAndReplacementTabWidthSpinner);
// Update widths of labels
TabWidthPanelLabel.update();
//---- Outer panel
JPanel outerPanel = new JPanel(gridBag);
outerPanel.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));
int gridY = 0;
gbc.gridx = 0;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.insets = new Insets(0, 0, 0, 0);
gridBag.setConstraints(textViewPanel, gbc);
outerPanel.add(textViewPanel);
gbc.gridx = 0;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.insets = new Insets(3, 0, 0, 0);
gridBag.setConstraints(targetAndReplacementPanel, gbc);
outerPanel.add(targetAndReplacementPanel);
return outerPanel;
}
//------------------------------------------------------------------
private JPanel createPanelEditor()
{
//---- Control panel
GridBagLayout gridBag = new GridBagLayout();
GridBagConstraints gbc = new GridBagConstraints();
JPanel controlPanel = new JPanel(gridBag);
GuiUtils.setPaddedLineBorder(controlPanel);
int gridY = 0;
AppConfig config = AppConfig.INSTANCE;
// Label: command
JLabel commandLabel = new FLabel(COMMAND_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(commandLabel, gbc);
controlPanel.add(commandLabel);
// Field: command
editorCommandField = new FTextField(config.getEditorCommand(), EDITOR_COMMAND_FIELD_NUM_COLUMNS);
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(editorCommandField, gbc);
controlPanel.add(editorCommandField);
//---- Outer panel
JPanel outerPanel = new JPanel(gridBag);
outerPanel.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));
gbc.gridx = 0;
gbc.gridy = 0;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = new Insets(0, 0, 0, 0);
gridBag.setConstraints(controlPanel, gbc);
outerPanel.add(controlPanel);
return outerPanel;
}
//------------------------------------------------------------------
private JPanel createPanelFileLocations()
{
//---- Control panel
GridBagLayout gridBag = new GridBagLayout();
GridBagConstraints gbc = new GridBagConstraints();
JPanel controlPanel = new JPanel(gridBag);
GuiUtils.setPaddedLineBorder(controlPanel);
int gridY = 0;
AppConfig config = AppConfig.INSTANCE;
// Label: default search parameters
JLabel defaultSearchParamsLabel = new FLabel(DEFAULT_SEARCH_PARAMS_STR);
gbc.gridx = 0;
gbc.gridy = gridY;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(defaultSearchParamsLabel, gbc);
controlPanel.add(defaultSearchParamsLabel);
// Panel: default search parameters
defaultSearchParamsField = new FPathnameField(config.getDefaultSearchParamsFile());
FPathnameField.addObserver(KEY, defaultSearchParamsField);
JPanel defaultSearchParamsPanel = new PathnamePanel(defaultSearchParamsField,
Command.CHOOSE_DEFAULT_SEARCH_PARAMS_FILE,
this);
gbc.gridx = 1;
gbc.gridy = gridY++;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(defaultSearchParamsPanel, gbc);
controlPanel.add(defaultSearchParamsPanel);
//---- Outer panel
JPanel outerPanel = new JPanel(gridBag);
outerPanel.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));
gbc.gridx = 0;
gbc.gridy = 0;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = new Insets(0, 0, 0, 0);
gridBag.setConstraints(controlPanel, gbc);
outerPanel.add(controlPanel);
return outerPanel;
}
//------------------------------------------------------------------
private JPanel createPanelFonts()
{
//---- Control panel
GridBagLayout gridBag = new GridBagLayout();
GridBagConstraints gbc = new GridBagConstraints();
JPanel controlPanel = new JPanel(gridBag);
GuiUtils.setPaddedLineBorder(controlPanel);
String[] fontNames = GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames();
fontPanels = new FontPanel[AppFont.getNumFonts()];
for (int i = 0; i < fontPanels.length; i++)
{
FontEx fontEx = AppConfig.INSTANCE.getFont(i);
fontPanels[i] = new FontPanel(fontEx, fontNames);
int gridX = 0;
// Label: font
JLabel fontLabel = new FLabel(AppFont.values()[i].toString());
gbc.gridx = gridX++;
gbc.gridy = i;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_END;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(fontLabel, gbc);
controlPanel.add(fontLabel);
// Combo box: font name
gbc.gridx = gridX++;
gbc.gridy = i;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(fontPanels[i].nameComboBox, gbc);
controlPanel.add(fontPanels[i].nameComboBox);
// Combo box: font style
gbc.gridx = gridX++;
gbc.gridy = i;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(fontPanels[i].styleComboBox, gbc);
controlPanel.add(fontPanels[i].styleComboBox);
// Panel: font size
JPanel sizePanel = new JPanel(gridBag);
gbc.gridx = gridX++;
gbc.gridy = i;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = AppConstants.COMPONENT_INSETS;
gridBag.setConstraints(sizePanel, gbc);
controlPanel.add(sizePanel);
// Spinner: font size
gbc.gridx = 0;
gbc.gridy = 0;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = new Insets(0, 0, 0, 0);
gridBag.setConstraints(fontPanels[i].sizeSpinner, gbc);
sizePanel.add(fontPanels[i].sizeSpinner);
// Label: "pt"
JLabel ptLabel = new FLabel(PT_STR);
gbc.gridx = 1;
gbc.gridy = 0;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.LINE_START;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = new Insets(0, 4, 0, 0);
gridBag.setConstraints(ptLabel, gbc);
sizePanel.add(ptLabel);
}
//---- Outer panel
JPanel outerPanel = new JPanel(gridBag);
outerPanel.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));
gbc.gridx = 0;
gbc.gridy = 0;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.NONE;
gbc.insets = new Insets(0, 0, 0, 0);
gridBag.setConstraints(controlPanel, gbc);
outerPanel.add(controlPanel);
return outerPanel;
}
//------------------------------------------------------------------
private void setFocus(Tab tab,
JComponent component)
{
tabbedPanel.setSelectedIndex(tab.ordinal());
GuiUtils.setFocus(component);
}
//------------------------------------------------------------------
private void validatePreferencesGeneral()
{
// do nothing
}
//------------------------------------------------------------------
private void validatePreferencesAppearance()
throws AppException
{
// Tab surrogate
try
{
if (tabSurrogateField.getChar() == '\0')
throw new AppException(ErrorId.INVALID_TAB_SURROGATE);
}
catch (AppException e)
{
setFocus(Tab.APPEARANCE, tabSurrogateField);
throw e;
}
}
//------------------------------------------------------------------
private void validatePreferencesTabWidth()
{
// do nothing
}
//------------------------------------------------------------------
private void validatePreferencesEditor()
{
// do nothing
}
//------------------------------------------------------------------
private void validatePreferencesFileLocations()
throws AppException
{
// Default search parameters file
try
{
if (!defaultSearchParamsField.isEmpty())
{
File file = defaultSearchParamsField.getFile();
try
{
if (!file.exists())
throw new FileException(ErrorId.FILE_DOES_NOT_EXIST, file);
if (!file.isFile())
throw new FileException(ErrorId.NOT_A_FILE, file);
}
catch (SecurityException e)
{
throw new FileException(ErrorId.FILE_ACCESS_NOT_PERMITTED, file, e);
}
}
}
catch (AppException e)
{
setFocus(Tab.FILE_LOCATIONS, defaultSearchParamsField);
throw e;
}
}
//------------------------------------------------------------------
private void validatePreferencesFonts()
{
// do nothing
}
//------------------------------------------------------------------
private void setPreferencesGeneral()
{
AppConfig config = AppConfig.INSTANCE;
config.setCharacterEncoding((characterEncodingComboBox.getSelectedIndex() <= 0)
? null
: characterEncodingComboBox.getSelectedValue());
config.setEscapedMetacharacters(escapedMetacharsField.getText());
config.setReplacementEscapeChar(replacementEscapeCharComboBox.getSelectedValue());
config.setIgnoreFilenameCase(ignoreFilenameCaseComboBox.getSelectedValue());
config.setFileWritingMode(fileWritingModeComboBox.getSelectedValue());
config.setPreserveLineSeparator(preserveLineSeparatorComboBox.getSelectedValue());
config.setShowUnixPathnames(showUnixPathnamesComboBox.getSelectedValue());
config.setSelectTextOnFocusGained(selectTextOnFocusGainedComboBox.getSelectedValue());
if (saveMainWindowLocationComboBox.getSelectedValue() != config.isMainWindowLocation())
config.setMainWindowLocation(saveMainWindowLocationComboBox.getSelectedValue() ? new Point()
: null);
config.setHideControlDialogWhenSearching(hideControlDialogComboBox.getSelectedValue());
config.setCopyResultsAsListFile(copyResultsAsListFileComboBox.getSelectedValue());
}
//------------------------------------------------------------------
private void setPreferencesAppearance()
{
AppConfig config = AppConfig.INSTANCE;
if (lookAndFeelComboBox.isEnabled() && (lookAndFeelComboBox.getSelectedIndex() >= 0))
config.setLookAndFeel(lookAndFeelComboBox.getSelectedValue());
config.setTextAntialiasing(textAntialiasingComboBox.getSelectedValue());
config.setParameterEditorSize(paramEditorSizePanel.getDimensions());
config.setResultAreaNumRows(resultAreaNumRowsSpinner.getIntValue());
config.setTabSurrogate(tabSurrogateField.getChar());
config.setTextViewViewableSize(textViewSizePanel.getDimensions());
config.setTextViewMaxNumColumns(textViewMaxNumColumnsSpinner.getIntValue());
config.setTextViewTextAntialiasing(textViewTextAntialiasingComboBox.getSelectedValue());
config.setTextAreaTextColour(textColourButton.getForeground());
config.setTextAreaBackgroundColour(backgroundColourButton.getForeground());
config.setTextAreaHighlightTextColour(highlightTextColourButton.getForeground());
config.setTextAreaHighlightBackgroundColour(highlightBackgroundColourButton.getForeground());
}
//------------------------------------------------------------------
private void setPreferencesTabWidth()
{
AppConfig config = AppConfig.INSTANCE;
config.setDefaultTabWidth(defaultTabWidthSpinner.getIntValue());
config.setTabWidthFilters(tabWidthFilterList.getElements());
config.setTargetAndReplacementTabWidth(targetAndReplacementTabWidthSpinner.getIntValue());
}
//------------------------------------------------------------------
private void setPreferencesEditor()
{
AppConfig config = AppConfig.INSTANCE;
config.setEditorCommand(editorCommandField.isEmpty() ? null : editorCommandField.getText());
}
//------------------------------------------------------------------
private void setPreferencesFileLocations()
{
AppConfig config = AppConfig.INSTANCE;
config.setDefaultSearchParamsPathname(defaultSearchParamsField.isEmpty()
? null
: defaultSearchParamsField.getText());
}
//------------------------------------------------------------------
private void setPreferencesFonts()
{
for (int i = 0; i < fontPanels.length; i++)
{
if (fontPanels[i].nameComboBox.getSelectedIndex() >= 0)
AppConfig.INSTANCE.setFont(i, fontPanels[i].getFont());
}
}
//------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////
// Class fields
////////////////////////////////////////////////////////////////////////
private static Point location;
private static int tabIndex;
////////////////////////////////////////////////////////////////////////
// Static initialiser
////////////////////////////////////////////////////////////////////////
static
{
COMMAND_MAP = new HashMap<>();
COMMAND_MAP.put(SingleSelectionList.Command.EDIT_ELEMENT,
Command.EDIT_TAB_WIDTH_FILTER);
COMMAND_MAP.put(SingleSelectionList.Command.DELETE_ELEMENT,
Command.CONFIRM_DELETE_TAB_WIDTH_FILTER);
COMMAND_MAP.put(SingleSelectionList.Command.DELETE_EX_ELEMENT,
Command.DELETE_TAB_WIDTH_FILTER);
COMMAND_MAP.put(SingleSelectionList.Command.MOVE_ELEMENT_UP,
Command.MOVE_TAB_WIDTH_FILTER_UP);
COMMAND_MAP.put(SingleSelectionList.Command.MOVE_ELEMENT_DOWN,
Command.MOVE_TAB_WIDTH_FILTER_DOWN);
COMMAND_MAP.put(SingleSelectionList.Command.DRAG_ELEMENT,
Command.MOVE_TAB_WIDTH_FILTER);
}
////////////////////////////////////////////////////////////////////////
// Instance fields
////////////////////////////////////////////////////////////////////////
// Main panel
private boolean accepted;
private JTabbedPane tabbedPanel;
// General panel
private FComboBox<String> characterEncodingComboBox;
private EscapedMetacharsField escapedMetacharsField;
private FComboBox<Character> replacementEscapeCharComboBox;
private BooleanComboBox ignoreFilenameCaseComboBox;
private FComboBox<FileWritingMode> fileWritingModeComboBox;
private BooleanComboBox preserveLineSeparatorComboBox;
private BooleanComboBox showUnixPathnamesComboBox;
private BooleanComboBox selectTextOnFocusGainedComboBox;
private BooleanComboBox saveMainWindowLocationComboBox;
private BooleanComboBox hideControlDialogComboBox;
private BooleanComboBox copyResultsAsListFileComboBox;
// Appearance panel
private FComboBox<String> lookAndFeelComboBox;
private FComboBox<TextRendering.Antialiasing> textAntialiasingComboBox;
private DimensionsSpinnerPanel paramEditorSizePanel;
private FIntegerSpinner resultAreaNumRowsSpinner;
private TabSurrogateField tabSurrogateField;
private DimensionsSpinnerPanel textViewSizePanel;
private FIntegerSpinner textViewMaxNumColumnsSpinner;
private FComboBox<TextRendering.Antialiasing> textViewTextAntialiasingComboBox;
private JButton textColourButton;
private JButton backgroundColourButton;
private JButton highlightTextColourButton;
private JButton highlightBackgroundColourButton;
// Tab width panel
private TabWidthList tabWidthFilterList;
private JScrollPane tabWidthFilterListScrollPane;
private FIntegerSpinner defaultTabWidthSpinner;
private FIntegerSpinner targetAndReplacementTabWidthSpinner;
private JButton tabWidthAddButton;
private JButton tabWidthEditButton;
private JButton tabWidthDeleteButton;
// Editor panel
private FTextField editorCommandField;
// File locations panel
private FPathnameField defaultSearchParamsField;
private JFileChooser defaultSearchParamsFileChooser;
// Fonts panel
private FontPanel[] fontPanels;
}
//----------------------------------------------------------------------
| [
"Mathew@192.168.0.15"
] | Mathew@192.168.0.15 |
d529222faca14ec68751243eba9b34606d291c77 | 41ce5edf2e270e321dddd409ffac11ab7f32de86 | /3/javax/net/ssl/KeyManager.java | 08939f78a0a0fb8e4954b5b1491817add457b531 | [] | no_license | danny-source/SDK_Android_Source_03-14 | 372bb03020203dba71bc165c8370b91c80bc6eaa | 323ad23e16f598d5589485b467bb9fba7403c811 | refs/heads/master | 2020-05-18T11:19:29.171830 | 2014-03-29T12:12:44 | 2014-03-29T12:12:44 | 18,238,039 | 2 | 2 | null | null | null | null | UTF-8 | Java | false | false | 1,147 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package javax.net.ssl;
/**
* This is the interface to implement in order to mark a class as a JSSE key managers
* so that key managers can be easily grouped.
* The key managers are responsible for handling the keys used to
* authenticate the local side to its peer,
*
* @since Android 1.0
*/
public interface KeyManager {
} | [
"danny@35g.tw"
] | danny@35g.tw |
bb8283d17b6bb5777b58ed49e895d2a50b0c73b7 | 6ecafe7e68a83541607794d419669c6d9c9e9ef3 | /src/LeetCode_983/Solution.java | a3241b7db56b12be3801b9de4117177ee9286a58 | [] | no_license | burette/LeetCodeProject | 04fd582f382f66f8489fc24b7dc26693952d898f | 942a564a3429aa6703801bb9fecafa0556cdbd65 | refs/heads/master | 2020-04-25T17:50:10.708433 | 2019-07-28T12:36:06 | 2019-07-28T12:36:06 | 172,963,013 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 673 | java | package LeetCode_983;
public class Solution {
public int mincostTickets(int[] days, int[] costs) {
int[] dp = new int[366];
int[] vis = new int[366];
int len = days.length;
for (int i = 0; i < len; i++) {
vis[days[i]] = 1;
}
for (int i = 0; i < 366; i++) {
if (vis[i] == 0) {
dp[i] = dp[i - 1];
} else {
//下标可能会越界,因此需要与0进行比较
dp[i] = Math.min(dp[i - 1] + costs[0], Math.min(dp[Math.max(0, i - 7)] + costs[1], dp[Math.max(0, i - 30)] + costs[2]));
}
}
return dp[365];
}
}
| [
"lizhiwenbit@126.com"
] | lizhiwenbit@126.com |
04236f3f3ee3d249192bc7ebd7797723fda4e73b | 896890adb3171e1bce981e26991674ceff1d5bd8 | /plugins/kernel/roi/roi4d/ROI4DArea.java | 2e140c52bd1e037db2ca303e7077f42e4a7acb42 | [] | no_license | marcelomata/Icy-Kernel | 5a5507335c5a7f4d0b613701006f582cc5560438 | e3548c4f5e2009b92f496b9df6842140e14f33a3 | refs/heads/master | 2021-01-18T07:15:08.713282 | 2016-05-12T12:39:32 | 2016-05-12T12:39:32 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,060 | java | /*
* Copyright 2010-2015 Institut Pasteur.
*
* This file is part of Icy.
*
* Icy is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Icy 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 Icy. If not, see <http://www.gnu.org/licenses/>.
*/
package plugins.kernel.roi.roi4d;
import icy.roi.BooleanMask3D;
import icy.roi.BooleanMask4D;
import icy.roi.ROI;
import icy.roi.ROI3D;
import icy.type.point.Point4D;
import icy.type.point.Point5D;
import icy.type.rectangle.Rectangle4D;
import java.awt.geom.Point2D;
import java.util.Collection;
import java.util.Map.Entry;
import plugins.kernel.roi.roi3d.ROI3DArea;
/**
* 4D Area ROI.
*
* @author Stephane
*/
public class ROI4DArea extends ROI4DStack<ROI3DArea>
{
public ROI4DArea()
{
super(ROI3DArea.class);
setName("4D area");
}
public ROI4DArea(Point4D pt)
{
this();
addBrush(pt.toPoint2D(), (int) pt.getZ(), (int) pt.getT());
}
public ROI4DArea(Point5D pt)
{
this(pt.toPoint4D());
}
/**
* Create a 3D Area ROI type from the specified {@link BooleanMask4D}.
*/
public ROI4DArea(BooleanMask4D mask)
{
this();
setAsBooleanMask(mask);
}
/**
* Create a copy of the specified 4D Area ROI.
*/
public ROI4DArea(ROI4DArea area)
{
this();
// copy the source 4D area ROI
for (Entry<Integer, ROI3DArea> entry : area.slices.entrySet())
slices.put(entry.getKey(), new ROI3DArea(entry.getValue()));
}
/**
* Adds the specified point to this ROI
*/
public void addPoint(int x, int y, int z, int t)
{
setPoint(x, y, z, t, true);
}
/**
* Remove a point from the mask.<br>
* Don't forget to call optimizeBounds() after consecutive remove operation
* to refresh the mask bounds.
*/
public void removePoint(int x, int y, int z, int t)
{
setPoint(x, y, z, t, false);
}
/**
* Set the value for the specified point in the mask.
* Don't forget to call optimizeBounds() after consecutive remove point operation
* to refresh the mask bounds.
*/
public void setPoint(int x, int y, int z, int t, boolean value)
{
getSlice(t, true).setPoint(x, y, z, value);
}
/**
* Add brush point at specified position and for specified Z,T slice.
*/
public void addBrush(Point2D pos, int z, int t)
{
getSlice(t, true).addBrush(pos, z);
}
/**
* Remove brush point from the mask at specified position and for specified Z,T slice.<br>
* Don't forget to call optimizeBounds() after consecutive remove operation
* to refresh the mask bounds.
*/
public void removeBrush(Point2D pos, int z, int t)
{
getSlice(t, true).removeBrush(pos, z);
}
/**
* Sets the ROI slice at given T position to this 4D ROI
*
* @param t
* the position where the slice must be set
* @param roiSlice
* the 3D ROI to set
* @param merge
* <code>true</code> if the given slice should be merged with the existing slice, or
* <code>false</code> to replace the existing slice.
*/
public void setSlice(int t, ROI3D roiSlice, boolean merge)
{
if (roiSlice == null)
throw new IllegalArgumentException("Cannot add an empty slice in a 4D ROI");
final ROI3DArea currentSlice = getSlice(t);
final ROI newSlice;
// merge both slice
if ((currentSlice != null) && merge)
{
// we need to modify the T and C position so we do the merge correctly
roiSlice.setT(t);
roiSlice.setC(getC());
// do ROI union
newSlice = currentSlice.getUnion(roiSlice);
}
else
newSlice = roiSlice;
if (newSlice instanceof ROI3DArea)
setSlice(t, (ROI3DArea) newSlice);
else if (newSlice instanceof ROI3D)
setSlice(t, new ROI3DArea(((ROI3D) newSlice).getBooleanMask(true)));
else
throw new IllegalArgumentException("Can't add the result of the merge operation on 3D slice " + t + ": "
+ newSlice.getClassName());
}
/**
* Returns true if the ROI is empty (the mask does not contains any point).
*/
@Override
public boolean isEmpty()
{
for (ROI3DArea area : slices.values())
if (!area.isEmpty())
return false;
return true;
}
/**
* Set the mask from a BooleanMask4D object
*/
public void setAsBooleanMask(BooleanMask4D mask)
{
if (mask != null)
{
final Collection<BooleanMask3D> values = mask.mask.values();
setAsBooleanMask(mask.bounds, values.toArray(new BooleanMask3D[values.size()]));
}
}
/**
* Set the 4D mask from a 3D boolean mask array
*
* @param rect
* the 4D region defined by 3D boolean mask array
* @param mask
* the 4D mask data (array length should be equals to rect.sizeZ)
*/
public void setAsBooleanMask(Rectangle4D.Integer rect, BooleanMask3D[] mask)
{
if (rect.isInfiniteT())
throw new IllegalArgumentException("Cannot set infinite T dimension on the 4D Area ROI.");
beginUpdate();
try
{
clear();
for (int t = 0; t < rect.sizeT; t++)
setSlice(t + rect.t, new ROI3DArea(mask[t]));
optimizeBounds();
}
finally
{
endUpdate();
}
}
/**
* Optimize the bounds size to the minimum surface which still include all mask<br>
* You should call it after consecutive remove operations.
*/
public void optimizeBounds()
{
final Rectangle4D.Integer bounds = getBounds();
beginUpdate();
try
{
for (int t = bounds.t; t < bounds.t + bounds.sizeT; t++)
{
final ROI3DArea roi = slices.get(Integer.valueOf(t));
if (roi.isEmpty())
removeSlice(t);
else
roi.optimizeBounds();
}
}
finally
{
endUpdate();
}
}
}
| [
"stephane.dallongeville@pasteur.fr"
] | stephane.dallongeville@pasteur.fr |
a389c2bcc4508fb1042d63fefb32cae31864d0bd | 099f008b3f6194aea37c4ad812e008463e568f62 | /app/src/main/java/com/harry2815/mvvmdemo/bean/AreaDTO.java | aa3c5586ea71518f864aee5b9ce6d5b9058c2cef | [] | no_license | zhang-hai/CommonMVVMArch | fca8cccff7843431c76f8105506ccf7c8a77d7e9 | 65b699711f18a90021b550c5ebb94e951f1d3ff7 | refs/heads/master | 2023-08-14T02:58:52.344229 | 2021-09-27T07:27:06 | 2021-09-27T07:27:06 | 403,534,749 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 746 | java | package com.harry2815.mvvmdemo.bean;
import java.io.Serializable;
/**
* Created by zhanghai on 2019/5/30.
* function:
*/
public class AreaDTO implements Serializable {
/**
* id : e4bc290e-345f-42ea-8d75-20e7a324c2cf
* name : 三台一中
*/
private String id;
private String name;
private int areaLevel;
public int getAreaLevel() {
return areaLevel;
}
public void setAreaLevel(int areaLevel) {
this.areaLevel = areaLevel;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
| [
"zh@sxw.cn"
] | zh@sxw.cn |
781841949e39f87c44f80d9147fe22067a6dc65f | f340d29313c87824d1932c46bbb877b8cfa86f3b | /ag-common/src/main/java/com/github/wxiaoqi/common/util/TreeUtil.java | cdd7ebf3fe90dff6556371822d13ae6a5dd6da08 | [] | no_license | Zxxjgp/ag-parent | ba8cfd24bdfc468999d978a27a11e83084a34579 | 453f8357bcdfea485a4f19939a60a9c272bbf833 | refs/heads/master | 2020-03-23T08:02:46.907698 | 2018-07-20T13:35:58 | 2018-07-20T13:35:58 | 141,305,102 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,686 | java | package com.github.wxiaoqi.common.util;
import com.github.wxiaoqi.common.vo.TreeNode;
import java.util.ArrayList;
import java.util.List;
/**
* Created by Ace on 2017/6/12.
*/
public class TreeUtil{
/**
* 两层循环实现建树
*
* @param treeNodes 传入的树节点列表
* @return
*/
public static <T extends TreeNode> List<T> bulid(List<T> treeNodes, Object root) {
List<T> trees = new ArrayList<T>();
for (T treeNode : treeNodes) {
if (root.equals(treeNode.getParentId())) {
trees.add(treeNode);
}
for (T it : treeNodes) {
if (it.getParentId() == treeNode.getId()) {
if (treeNode.getChildren() == null) {
treeNode.setChildren(new ArrayList<TreeNode>());
}
treeNode.add(it);
}
}
}
return trees;
}
/**
* 使用递归方法建树
*
* @param treeNodes
* @return
*/
public static <T extends TreeNode> List<T> buildByRecursive(List<T> treeNodes, Object root) {
List<T> trees = new ArrayList<T>();
for (T treeNode : treeNodes) {
if (root.equals(treeNode.getParentId())) {
trees.add(findChildren(treeNode, treeNodes));
}
}
return trees;
}
/**
* 递归查找子节点
*
* @param treeNodes
* @return
*/
public static <T extends TreeNode> T findChildren(T treeNode, List<T> treeNodes) {
for (T it : treeNodes) {
if (treeNode.getId() == it.getParentId()) {
if (treeNode.getChildren() == null) {
treeNode.setChildren(new ArrayList<TreeNode>());
}
treeNode.add(findChildren(it, treeNodes));
}
}
return treeNode;
}
}
| [
"948102903@qq.com"
] | 948102903@qq.com |
960492439e0d7369eb3495acc2cf50142e3839e5 | 66deadcdec75b9f163aa81de0c5d5c2cfb951c6b | /app/src/main/java/cjh/cvcall/utils/WorkerThread.java | bf65b3d983de2abef9d8c02707ea59d1bc08b8b5 | [] | no_license | FloatButterfly/Video-call-processing | 56a280ad07f3317a68ee36463e2926904440e91b | f2f6ea9df51ee68440751f722dfb071dd7d6490a | refs/heads/master | 2022-02-07T07:49:58.637997 | 2019-05-21T08:09:22 | 2019-05-21T08:09:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,435 | java | package cjh.cvcall.utils;
import android.content.Context;
import android.content.SharedPreferences;
import android.os.Environment;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.preference.PreferenceManager;
import android.provider.Settings;
import android.text.TextUtils;
import android.util.Log;
import android.view.SurfaceView;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.File;
import cjh.cvcall.R;
import io.agora.rtc.Constants;
import io.agora.rtc.RtcEngine;
import io.agora.rtc.video.VideoCanvas;
public class WorkerThread extends Thread{
private final static Logger log = LoggerFactory.getLogger(WorkerThread.class);
private final Context mContext;
private static final int ACTION_WORKER_THREAD_QUIT = 0X1010; // quit this thread
private static final int ACTION_WORKER_JOIN_CHANNEL = 0X2010;
private static final int ACTION_WORKER_LEAVE_CHANNEL = 0X2011;
private static final int ACTION_WORKER_CONFIG_ENGINE = 0X2012;
private static final int ACTION_WORKER_PREVIEW = 0X2014;
private static final class WorkerThreadHandler extends Handler {
private WorkerThread mWorkerThread;
WorkerThreadHandler(WorkerThread thread) {
this.mWorkerThread = thread;
}
public void release() {
mWorkerThread = null;
}
@Override
public void handleMessage(Message msg) {
if (this.mWorkerThread == null) {
log.warn("handler is already released! " + msg.what);
return;
}
switch (msg.what) {
case ACTION_WORKER_THREAD_QUIT:
mWorkerThread.exit();
break;
case ACTION_WORKER_JOIN_CHANNEL:
String[] data = (String[]) msg.obj;
mWorkerThread.joinChannel(data[0], msg.arg1);
break;
case ACTION_WORKER_LEAVE_CHANNEL:
String channel = (String) msg.obj;
mWorkerThread.leaveChannel(channel);
break;
case ACTION_WORKER_CONFIG_ENGINE:
Object[] configData = (Object[]) msg.obj;
mWorkerThread.configEngine((int) configData[0], (String) configData[1], (String) configData[2]);
break;
case ACTION_WORKER_PREVIEW:
Object[] previewData = (Object[]) msg.obj;
mWorkerThread.preview((boolean) previewData[0], (SurfaceView) previewData[1], (int) previewData[2]);
break;
}
}
}
private WorkerThreadHandler mWorkerHandler;
private boolean mReady;
public final void waitForReady() {
while (!mReady) {
try {
Thread.sleep(20);
} catch (InterruptedException e) {
e.printStackTrace();
}
log.debug("wait for " + WorkerThread.class.getSimpleName());
}
}
@Override
public void run() {
log.trace("start to run");
Looper.prepare();
mWorkerHandler = new WorkerThreadHandler(this);
ensureRtcEngineReadyLock();
mReady = true;
// enter thread looper
Looper.loop();
}
private RtcEngine mRtcEngine;
public final void enablePreProcessor() {
}
public final void setPreParameters(float lightness, int smoothness) {
Constant.PRP_DEFAULT_LIGHTNESS = lightness;
Constant.PRP_DEFAULT_SMOOTHNESS = smoothness;
}
public final void disablePreProcessor() {
}
public final void joinChannel(final String channel, int uid) {
if (Thread.currentThread() != this) {
log.warn("joinChannel() - worker thread asynchronously " + channel + " " + uid);
Message envelop = new Message();
envelop.what = ACTION_WORKER_JOIN_CHANNEL;
envelop.obj = new String[]{channel};
envelop.arg1 = uid;
mWorkerHandler.sendMessage(envelop);
return;
}
ensureRtcEngineReadyLock();
mRtcEngine.joinChannel(null, channel, "OpenVCall", uid);
mEngineConfig.mChannel = channel;
enablePreProcessor();
log.debug("joinChannel " + channel + " " + uid);
}
public final void leaveChannel(String channel) {
if (Thread.currentThread() != this) {
log.warn("leaveChannel() - worker thread asynchronously " + channel);
Message envelop = new Message();
envelop.what = ACTION_WORKER_LEAVE_CHANNEL;
envelop.obj = channel;
mWorkerHandler.sendMessage(envelop);
return;
}
if (mRtcEngine != null) {
mRtcEngine.leaveChannel();
mRtcEngine.enableVideo();
}
disablePreProcessor();
mEngineConfig.reset();
log.debug("leaveChannel " + channel);
}
private EngineConfig mEngineConfig;
public final EngineConfig getEngineConfig() {
return mEngineConfig;
}
private final MyEngineEventHandler mEngineEventHandler;
public final void configEngine(int vProfile, String encryptionKey, String encryptionMode) {
if (Thread.currentThread() != this) {
log.warn("configEngine() - worker thread asynchronously " + vProfile + " " + encryptionMode);
Message envelop = new Message();
envelop.what = ACTION_WORKER_CONFIG_ENGINE;
envelop.obj = new Object[]{vProfile, encryptionKey, encryptionMode};
mWorkerHandler.sendMessage(envelop);
return;
}
ensureRtcEngineReadyLock();
mEngineConfig.mVideoProfile = vProfile;
if (!TextUtils.isEmpty(encryptionKey)) {
mRtcEngine.setEncryptionMode(encryptionMode);
mRtcEngine.setEncryptionSecret(encryptionKey);
}
mRtcEngine.setVideoProfile(mEngineConfig.mVideoProfile, false);
log.debug("configEngine " + mEngineConfig.mVideoProfile + " " + encryptionMode);
}
public final void preview(boolean start, SurfaceView view, int uid) {
if (Thread.currentThread() != this) {
log.warn("preview() - worker thread asynchronously " + start + " " + view + " " + (uid & 0XFFFFFFFFL));
Message envelop = new Message();
envelop.what = ACTION_WORKER_PREVIEW;
envelop.obj = new Object[]{start, view, uid};
mWorkerHandler.sendMessage(envelop);
return;
}
ensureRtcEngineReadyLock();
if (start) {
mRtcEngine.setupLocalVideo(new VideoCanvas(view, VideoCanvas.RENDER_MODE_HIDDEN, uid));
mRtcEngine.startPreview();
} else {
mRtcEngine.stopPreview();
}
}
public static String getDeviceID(Context context) {
// XXX according to the API docs, this value may change after factory reset
// use Android id as device id
return Settings.Secure.getString(context.getContentResolver(), Settings.Secure.ANDROID_ID);
}
private RtcEngine ensureRtcEngineReadyLock() {
if (mRtcEngine == null) {
String appId = mContext.getString(R.string.agora_app_id);
if (TextUtils.isEmpty(appId)) {
throw new RuntimeException("NEED TO use your App ID, get your own ID at https://dashboard.agora.io/");
}
try {
mRtcEngine = RtcEngine.create(mContext, appId, mEngineEventHandler.mRtcEventHandler);
} catch (Exception e) {
log.error(Log.getStackTraceString(e));
throw new RuntimeException("NEED TO check rtc sdk init fatal error\n" + Log.getStackTraceString(e));
}
mRtcEngine.setChannelProfile(Constants.CHANNEL_PROFILE_COMMUNICATION);
mRtcEngine.enableVideo();
mRtcEngine.enableAudioVolumeIndication(200, 3); // 200 ms
mRtcEngine.setLogFile(Environment.getExternalStorageDirectory()
+ File.separator + mContext.getPackageName() + "/log/agora-rtc.log");
}
return mRtcEngine;
}
public MyEngineEventHandler eventHandler() {
return mEngineEventHandler;
}
public RtcEngine getRtcEngine() {
return mRtcEngine;
}
/**
* call this method to exit
* should ONLY call this method when this thread is running
*/
public final void exit() {
if (Thread.currentThread() != this) {
log.warn("exit() - exit app thread asynchronously");
mWorkerHandler.sendEmptyMessage(ACTION_WORKER_THREAD_QUIT);
return;
}
mReady = false;
// TODO should remove all pending(read) messages
log.debug("exit() > start");
// exit thread looper
Looper.myLooper().quit();
mWorkerHandler.release();
log.debug("exit() > end");
}
public WorkerThread(Context context) {
this.mContext = context;
this.mEngineConfig = new EngineConfig();
SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(context);
this.mEngineConfig.mUid = pref.getInt(ConstantApp.PrefManager.PREF_PROPERTY_UID, 0);
this.mEngineEventHandler = new MyEngineEventHandler(mContext, this.mEngineConfig);
}
}
| [
"598195274@qq.com"
] | 598195274@qq.com |
0b0dca84ed96e0b0ad9ff9d740a54ea3ccbd5fa2 | a474890a2aacc4818c16def23964206da5ee2916 | /SavingsApp/src/com/cobaltsteel/savingsapp/TimePrefActivity.java | 626375fcbf57ff0094fd9f451f29337caf7cd5f9 | [] | no_license | japheth-starita/SavingsApp | e318b232eeab25855099423a0f74dff1586a7b27 | 52fcd54000fdffc04b4597502f9c733197622b7b | refs/heads/master | 2021-01-10T10:32:39.268262 | 2016-03-03T14:19:44 | 2016-03-03T14:19:44 | 50,480,287 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,453 | java | package com.cobaltsteel.savingsapp;
import java.util.GregorianCalendar;
import android.app.Activity;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.View;
import android.widget.TimePicker;
import android.widget.Toast;
public class TimePrefActivity extends Activity {
//Dont change. 852 is the request code
private int requestCode = StaticData.code;
private TimePicker tpAlarmTime;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_time_pref);
tpAlarmTime = (TimePicker) findViewById(R.id.tpAlarmTime);
GregorianCalendar currentCal = (GregorianCalendar) GregorianCalendar.getInstance();
}
public void setAlarm(View v){
int tpHour = tpAlarmTime.getCurrentHour();
int tpMinute = tpAlarmTime.getCurrentMinute();
GregorianCalendar currentCal = (GregorianCalendar) GregorianCalendar.getInstance();
GregorianCalendar alarmCal = new GregorianCalendar();
alarmCal.set(GregorianCalendar.YEAR, currentCal.get(GregorianCalendar.YEAR));
alarmCal.set(GregorianCalendar.MONTH, currentCal.get(GregorianCalendar.MONTH));
alarmCal.set(GregorianCalendar.DATE, currentCal.get(GregorianCalendar.DATE));
alarmCal.set(GregorianCalendar.HOUR_OF_DAY, tpHour);
alarmCal.set(GregorianCalendar.MINUTE, tpMinute);
alarmCal.add(GregorianCalendar.DATE, 1);
long alarmTime = alarmCal.getTimeInMillis();
Toast.makeText(this, "Alarm Scheduled for " + alarmCal.getTime(), Toast.LENGTH_LONG).show();
Intent intent = new Intent(this, AlarmReceiver.class);
PendingIntent alarmIntent = PendingIntent.getBroadcast(this, requestCode, intent, 0);
// create the object
AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
//set the alarm for particular time
//alarmManager.set(AlarmManager.RTC_WAKEUP, alarmTime, alarmIntent);
alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, alarmTime, AlarmManager.INTERVAL_DAY, alarmIntent);
//alarmManager.setInexactRepeating(AlarmManager.RTC_WAKEUP, alarmTime, AlarmManager.INTERVAL_DAY, alarmIntent);
SharedPreferences.Editor edit = getSharedPreferences(StaticData.prefName, MODE_PRIVATE).edit();
edit.putBoolean("isthereAlarm", true);
edit.commit();
}
}
| [
"sta.rita.japheth@gmail.com"
] | sta.rita.japheth@gmail.com |
a820c6f15fc282d6ea1164ced6db3ab1415b1bc3 | 4f75ef949726e6dd17e0151fe52290a75aecc85d | /src/com/mbx/settingsmbox/WifiUtils.java | a648d5e43c5e7c63902eb293e7e139188a35ff76 | [] | no_license | nicolastorassa/MboxSettings | f47f16599c6625fccb8941b5f8b3bad201ce22cd | 8b2191fc067cbdf3e548e5db791d9f5b618d3197 | refs/heads/master | 2020-06-11T13:53:50.866025 | 2014-06-23T07:14:31 | 2014-06-23T07:14:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,640 | java | package com.mbx.settingsmbox;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import android.content.Context;
import android.net.ConnectivityManager;
import android.net.NetworkInfo.State;
import android.net.ethernet.EthernetDevInfo;
import android.net.ethernet.EthernetManager;
import android.net.ethernet.EthernetStateTracker;
import android.net.NetworkInfo;
import android.net.wifi.ScanResult;
import android.net.wifi.WifiConfiguration;
import android.net.wifi.WifiConfiguration.AuthAlgorithm;
import android.net.wifi.WifiConfiguration.KeyMgmt;
import android.net.wifi.WifiInfo;
import android.net.wifi.WifiManager;
import android.util.Log;
public class WifiUtils {
private final static String TAG = "WifiUtils";
private final boolean DEBUG = true;
private static Context mContext = null;
private static String mPassWord = null;
private static String mApName = null;
private WifiManager mWifiManager = null;
private List<ScanResult> mWifiAccessPointlist = null;
private final int SECURITY_OPEN = 0;
private final int SECURITY_WPA = 1;
private final int SECURITY_WEP = 2;
private final int SECURITY_EAP = 3;
private final int SECURITY_UNKNOW = 4;
public WifiUtils(Context context) {
mContext = context;
mWifiManager = (WifiManager) mContext
.getSystemService(Context.WIFI_SERVICE);
}
public int openWifi() {
int state = mWifiManager.getWifiState();
if (state == WifiManager.WIFI_STATE_DISABLED
|| state == WifiManager.WIFI_STATE_DISABLING
|| state == WifiManager.WIFI_STATE_UNKNOWN) {
mWifiManager.setWifiEnabled(true);
}
if (!mWifiManager.isWifiEnabled()) {
mWifiManager.setWifiEnabled(true);
}
return mWifiManager.getWifiState();
}
public int getWifiState() {
return mWifiManager.getWifiState();
}
public int closeWifi() {
int state = mWifiManager.getWifiState();
if (state == WifiManager.WIFI_STATE_ENABLED
|| state == WifiManager.WIFI_STATE_ENABLING) {
mWifiManager.setWifiEnabled(false);
}
return mWifiManager.getWifiState();
}
public void stopWifi(WifiConfiguration existingConfig) {
mWifiManager.disableNetwork(existingConfig.networkId);
}
public void connect2AccessPoint(ScanResult scanResult, String password) {
mPassWord = password;
mApName = scanResult.SSID;
int securityType = getSecurityType(scanResult);
List<WifiConfiguration> configs = mWifiManager.getConfiguredNetworks();
WifiConfiguration config = getSavedWifiConfig(scanResult.SSID, configs);
if (config == null) {
Log.d(TAG, "===== It's a new AccessPoint!!! ");
config = new WifiConfiguration();
// config.BSSID = scanResult.BSSID;
config.SSID = "\"" + scanResult.SSID + "\"";
config = getConfigBySecurityType(config, securityType);
// config.priority = 1;
config.status = WifiConfiguration.Status.ENABLED;
int netId = mWifiManager.addNetwork(config);
mWifiManager.enableNetwork(netId, true);
mWifiManager.saveConfiguration();
} else {
Log.d(TAG, "===== It's a saved AccessPoint!!! ");
config.status = WifiConfiguration.Status.ENABLED;
config = getConfigBySecurityType(config, securityType);
mWifiManager.enableNetwork(config.networkId, true);
mWifiManager.updateNetwork(config);
}
}
private WifiConfiguration getConfigBySecurityType(WifiConfiguration config,
int securityType) {
switch (securityType) {
case SECURITY_OPEN:
config.allowedKeyManagement.set(KeyMgmt.NONE);
break;
case SECURITY_WPA:
config.allowedKeyManagement.set(KeyMgmt.WPA_PSK);
config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
config.preSharedKey = "\"" + getPassWord() + "\"";
break;
case SECURITY_EAP:
config.allowedKeyManagement.set(KeyMgmt.WPA_EAP);
config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
config.preSharedKey = "\"" + getPassWord() + "\"";
break;
default:
config.allowedKeyManagement.set(KeyMgmt.NONE);
break;
}
return config;
}
public static void setPassWord(String password) {
mPassWord = password;
}
public static void setApName(String name) {
mApName = name;
}
public static String getApName() {
return mApName;
}
public static String getPassWord() {
return mPassWord;
}
public void unSaveConfig(WifiConfiguration existingConfig) {
mWifiManager.removeNetwork(existingConfig.networkId);
}
public boolean saveConfiguration() {
return mWifiManager.saveConfiguration();
}
public boolean disconnect() {
return mWifiManager.disconnect();
}
public WifiInfo getCurrentWifiInfo() {
WifiInfo wInfo = mWifiManager.getConnectionInfo();
return wInfo;
}
public WifiConfiguration getSavedWifiConfig(String SSID,
List<WifiConfiguration> existingConfigs) {
for (WifiConfiguration existingConfig : existingConfigs) {
if (existingConfig.SSID.equals("\"" + SSID + "\"")) {
return existingConfig;
}
}
return null;
}
public List<ScanResult> getWifiAccessPointList() {
List<ScanResult> list = new ArrayList<ScanResult>();
List<ScanResult> new_list = new ArrayList<ScanResult>();
list.clear();
new_list.clear();
list = mWifiManager.getScanResults();
for (ScanResult result : list) {
if (result.SSID == null || result.SSID.length() == 0
|| result.capabilities.contains("[IBSS]")) {
continue;
}
new_list.add(result);
}
Collections.sort(new_list, new sortByLevel());
return new_list;
}
public class sortByLevel implements Comparator<ScanResult> {
public int compare(ScanResult obj1, ScanResult obj2) {
if (obj1.level > obj2.level)
return 1;
else
return 0;
}
}
public boolean startScan() {
return mWifiManager.startScan();
}
public int getWifiLevel(ScanResult result) {
return result.level;
}
public int getSecurityType(ScanResult result) {
if (result.capabilities == null) {
return SECURITY_OPEN;
}
if (result.capabilities.contains("WPA")) {
return SECURITY_WPA;
} else if (result.capabilities.contains("WEP")) {
return SECURITY_WEP;
} else if (result.capabilities.contains("EAP")) {
return SECURITY_EAP;
} else {
return SECURITY_UNKNOW;
}
}
public static boolean isWifiConnected(Context context) {
final ConnectivityManager connMgr = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
State mWifState = connMgr.getNetworkInfo(ConnectivityManager.TYPE_WIFI)
.getState();
if (State.CONNECTED == mWifState) {
return true;
} else {
return false;
}
// final android.net.NetworkInfo wifi =
// connMgr.getNetworkInfo(ConnectivityManager.TYPE_WIFI);
// final android.net.NetworkInfo mobile =
// connMgr.getNetworkInfo(ConnectivityManager.TYPE_MOBILE);
// if (wifi.isAvailable()) return true;
// else return false;
}
public static boolean isEthConnected(Context context) {
ConnectivityManager connManager = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
State mEthState = connManager.getNetworkInfo(
ConnectivityManager.TYPE_ETHERNET).getState();
if (State.CONNECTED == mEthState) {
return true;
} else {
return false;
}
}
} | [
"wurenrong@hipad.hk"
] | wurenrong@hipad.hk |
eddd445a990b32591e0cc197d7b3d3178e76e100 | eff9d1e6ce4032c7a2618cf8b40922401f3d1ce0 | /ls-java-core/src/main/java/com/ls/lishuai/java/User.java | cbba7c7a7843113c3e228be976affc25f3d6c88f | [] | no_license | lishuai2016/all | 67d8ff5db911ca5c38b249172d3dcbf4234d49d7 | aa7d6774611c21e126e628268a6abd020138974f | refs/heads/master | 2022-12-09T11:03:08.571479 | 2019-08-18T16:38:41 | 2019-08-18T16:38:44 | 200,311,974 | 5 | 4 | null | 2022-11-16T07:57:51 | 2019-08-03T00:08:21 | Java | UTF-8 | Java | false | false | 581 | java | package com.ls.lishuai.java;
/**
* @Author: lishuai
* @CreateDate: 2018/6/5 17:03
*/
public class User {
private Integer id;
private String name;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "User{" +
"id=" + id +
", name='" + name + '\'' +
'}';
}
}
| [
"1830473670@qq.com"
] | 1830473670@qq.com |
872571e1160d22edfee82e27ddc6fc2363bc50e2 | 6a0a42df6ca02c8b66d2791e0439279f215b34f7 | /changgou-parent/changgou-service/changgou-service-order/src/main/java/com/icicle/order/service/OrderLogService.java | e3baa59a5e031a7ae54f4fb4ded0f1b29300628a | [] | no_license | boyscoding/job | ce6b2537b00584979a704dfd3ebe4d2c93811b89 | 58609fca1b9b1a05e9a37b1fcf4a9089304aba2a | refs/heads/master | 2021-02-23T01:38:59.589055 | 2019-10-30T15:19:09 | 2019-10-30T15:19:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,250 | java | package com.icicle.order.service;
import com.github.pagehelper.PageInfo;
import com.icicle.order.pojo.OrderLog;
import java.util.List;
/****
* @Author:Max
* @Description:OrderLog业务层接口
* @Date 2019/1/28
*****/
public interface OrderLogService {
/***
* OrderLog多条件分页查询
* @param orderLog
* @param page
* @param size
* @return
*/
PageInfo<OrderLog> findPage(OrderLog orderLog, int page, int size);
/***
* OrderLog分页查询
* @param page
* @param size
* @return
*/
PageInfo<OrderLog> findPage(int page, int size);
/***
* OrderLog多条件搜索方法
* @param orderLog
* @return
*/
List<OrderLog> findList(OrderLog orderLog);
/***
* 删除OrderLog
* @param id
*/
void delete(String id);
/***
* 修改OrderLog数据
* @param orderLog
*/
void update(OrderLog orderLog);
/***
* 新增OrderLog
* @param orderLog
*/
void add(OrderLog orderLog);
/**
* 根据ID查询OrderLog
* @param id
* @return
*/
OrderLog findById(String id);
/***
* 查询所有OrderLog
* @return
*/
List<OrderLog> findAll();
}
| [
"yang@163.com"
] | yang@163.com |
cff894107dfb19d3cd4a76f889d9fe19b4625783 | 1373ce8bf50974c4864b9821a469e389c4975b3a | /ReactNavigationExample/android/app/src/main/java/com/reactnavigationexample/MainApplication.java | 68082b86a1d111b9e2af3869f0906a9cede51c64 | [] | no_license | hangweiping/react-navigation-example | dc858684fb387222b04aeefed54c5ee923187cc5 | 1143913e29d57a99d46c7e38d54545b2db35f949 | refs/heads/master | 2020-04-14T11:18:54.131737 | 2018-08-12T02:21:40 | 2018-08-12T02:21:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,147 | java | package com.reactnavigationexample;
import android.app.Application;
import com.facebook.react.ReactApplication;
import com.oblador.vectoricons.VectorIconsPackage;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.react.shell.MainReactPackage;
import com.facebook.soloader.SoLoader;
import java.util.Arrays;
import java.util.List;
public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
@Override
public boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new VectorIconsPackage()
);
}
@Override
protected String getJSMainModuleName() {
return "index";
}
};
@Override
public ReactNativeHost getReactNativeHost() {
return mReactNativeHost;
}
@Override
public void onCreate() {
super.onCreate();
SoLoader.init(this, /* native exopackage */ false);
}
}
| [
"Allen.Yang@outlook.com"
] | Allen.Yang@outlook.com |
95a4be76b1d6e1efafcc702ce6b22f0cfddeca74 | bc2ebae0ab6383308c35921ee96d56549cd5669d | /src/main/java/com/lance/datastructure/BudgetItemTwo.java | 47c69b9977fe3bd8a38e5e084ca3c31ce8aaf116 | [] | no_license | Lance0226/FeiLuHomeServer | ea68203935461ea6d75d4acfd8637fd1dc395e95 | d5825b00743c07f4c15d7b99c7bb973733f6513e | refs/heads/master | 2021-01-23T05:34:59.533090 | 2015-09-16T10:28:42 | 2015-09-16T10:28:42 | 40,965,976 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 318 | java | package com.lance.datastructure;
public class BudgetItemTwo
{
public String project_id;
public String item_name;
public String item_brand;
public String item_code;
public String item_unit;
public String item_amount;
public String item_price;
public String item_total;
public String item_address;
}
| [
"hl0614020104@126.com"
] | hl0614020104@126.com |
1232789acf0acf35524e5f6725544b046241bf40 | a658b5111dfabce174fe0cc32e18a4eba87c6210 | /de.fxdiagram.eclipse/xtend-gen/de/fxdiagram/eclipse/commands/ClearDiagramHandler.java | ef4d35fbf326091acf7a0d5bc0f4b6aa543925e6 | [] | no_license | JuergenHaug/FXDiagram | c8de6f84af5e27260c4db472da461163b3fd0118 | e69f89421c592bd1146c43dd23ab8961e800d9b6 | refs/heads/master | 2021-05-13T21:54:11.655369 | 2018-08-03T18:07:49 | 2018-08-03T18:07:49 | 116,474,996 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 771 | java | package de.fxdiagram.eclipse.commands;
import de.fxdiagram.eclipse.FXDiagramView;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.handlers.HandlerUtil;
@SuppressWarnings("all")
public class ClearDiagramHandler extends AbstractHandler {
@Override
public Object execute(final ExecutionEvent event) throws ExecutionException {
Object _xblockexpression = null;
{
final IWorkbenchPart view = HandlerUtil.getActivePart(event);
if ((view instanceof FXDiagramView)) {
((FXDiagramView)view).clear();
}
_xblockexpression = null;
}
return _xblockexpression;
}
}
| [
"jan.koehnlein@itemis.de"
] | jan.koehnlein@itemis.de |
237881d5226987180cc3f69b3f65452815e7e75e | ed8488fcc26627a8bdcfed7abfd6ecd484084ed9 | /xueqiao_company_webapi/java/src/main/java/com/longsheng/trader/bean/TimeRegionBean.java | 67eff8b10c0d304c1ae24324e2a826576abe9e21 | [] | no_license | SunningPig/xueqiao-company | 3cf1932ecaf3a43b66534e30f4a9a9c7d84cd9fb | a5fa82facad07baaf247dd803c36af9019cb6fe6 | refs/heads/main | 2023-04-13T17:59:29.631874 | 2021-04-25T12:19:49 | 2021-04-25T12:19:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 380 | java | package com.longsheng.trader.bean;
public class TimeRegionBean {
private String beginTime;
private String endTime;
public String getBeginTime() {
return beginTime;
}
public void setBeginTime(String beginTime) {
this.beginTime = beginTime;
}
public String getEndTime() {
return endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
}
| [
"wangli@authine.com"
] | wangli@authine.com |
c93320883d63caf484a9a45af778032742c0a763 | 2f144e398380c272b5924230c23d677064018dd2 | /src/test/java/com/tecsup/lab3/controller/AppTest.java | 49022ed15de2a70a6a8d7438a3d88e5c87d12823 | [] | no_license | Jessus410/Lab03-4C24-2021-2-JPM | fefe73428ffe18dca85c59e59f01a539496c9608 | d1f5fb33d532c35d11c3fdbb64efb12520beb935 | refs/heads/main | 2023-08-02T10:07:26.567791 | 2021-09-09T04:19:35 | 2021-09-09T04:19:35 | 403,822,372 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 298 | java | package com.tecsup.lab3.controller;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
/**
* Unit test for simple App.
*/
public class AppTest
{
/**
* Rigorous Test :-)
*/
@Test
public void shouldAnswerWithTrue()
{
assertTrue( true );
}
}
| [
"marco.portilla@tecsup.edu.pe"
] | marco.portilla@tecsup.edu.pe |
898f248111594260bf94357e0b4b3c92beb55292 | 6edeb5a8a8eab0cfbcb82be295b2b8646553c1c6 | /src/main/java/com/cn/cust/entities/FeedbackExample.java | f87f2e60b75aa02b628be8ce1fb97ddd06579172 | [] | no_license | Gafkcenter/warm | 0afe95cf0b214565ec77196d934011144f5a2a89 | 2dd40ea649c7a0d6daa612f98ac1737ace37b92c | refs/heads/master | 2020-07-02T08:14:04.407790 | 2016-09-11T15:33:20 | 2016-09-11T15:33:20 | 67,936,903 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 49,572 | java | package com.cn.cust.entities;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class FeedbackExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
protected String orderByClause;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
protected boolean distinct;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
protected List<Criteria> oredCriteria;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
public FeedbackExample() {
oredCriteria = new ArrayList<Criteria>();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
public String getOrderByClause() {
return orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
public boolean isDistinct() {
return distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andIdIsNull() {
addCriterion("Id is null");
return (Criteria) this;
}
public Criteria andIdIsNotNull() {
addCriterion("Id is not null");
return (Criteria) this;
}
public Criteria andIdEqualTo(Long value) {
addCriterion("Id =", value, "id");
return (Criteria) this;
}
public Criteria andIdNotEqualTo(Long value) {
addCriterion("Id <>", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThan(Long value) {
addCriterion("Id >", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThanOrEqualTo(Long value) {
addCriterion("Id >=", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThan(Long value) {
addCriterion("Id <", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThanOrEqualTo(Long value) {
addCriterion("Id <=", value, "id");
return (Criteria) this;
}
public Criteria andIdIn(List<Long> values) {
addCriterion("Id in", values, "id");
return (Criteria) this;
}
public Criteria andIdNotIn(List<Long> values) {
addCriterion("Id not in", values, "id");
return (Criteria) this;
}
public Criteria andIdBetween(Long value1, Long value2) {
addCriterion("Id between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andIdNotBetween(Long value1, Long value2) {
addCriterion("Id not between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andCategoryIsNull() {
addCriterion("Category is null");
return (Criteria) this;
}
public Criteria andCategoryIsNotNull() {
addCriterion("Category is not null");
return (Criteria) this;
}
public Criteria andCategoryEqualTo(String value) {
addCriterion("Category =", value, "category");
return (Criteria) this;
}
public Criteria andCategoryNotEqualTo(String value) {
addCriterion("Category <>", value, "category");
return (Criteria) this;
}
public Criteria andCategoryGreaterThan(String value) {
addCriterion("Category >", value, "category");
return (Criteria) this;
}
public Criteria andCategoryGreaterThanOrEqualTo(String value) {
addCriterion("Category >=", value, "category");
return (Criteria) this;
}
public Criteria andCategoryLessThan(String value) {
addCriterion("Category <", value, "category");
return (Criteria) this;
}
public Criteria andCategoryLessThanOrEqualTo(String value) {
addCriterion("Category <=", value, "category");
return (Criteria) this;
}
public Criteria andCategoryLike(String value) {
addCriterion("Category like", value, "category");
return (Criteria) this;
}
public Criteria andCategoryNotLike(String value) {
addCriterion("Category not like", value, "category");
return (Criteria) this;
}
public Criteria andCategoryIn(List<String> values) {
addCriterion("Category in", values, "category");
return (Criteria) this;
}
public Criteria andCategoryNotIn(List<String> values) {
addCriterion("Category not in", values, "category");
return (Criteria) this;
}
public Criteria andCategoryBetween(String value1, String value2) {
addCriterion("Category between", value1, value2, "category");
return (Criteria) this;
}
public Criteria andCategoryNotBetween(String value1, String value2) {
addCriterion("Category not between", value1, value2, "category");
return (Criteria) this;
}
public Criteria andContentIsNull() {
addCriterion("Content is null");
return (Criteria) this;
}
public Criteria andContentIsNotNull() {
addCriterion("Content is not null");
return (Criteria) this;
}
public Criteria andContentEqualTo(String value) {
addCriterion("Content =", value, "content");
return (Criteria) this;
}
public Criteria andContentNotEqualTo(String value) {
addCriterion("Content <>", value, "content");
return (Criteria) this;
}
public Criteria andContentGreaterThan(String value) {
addCriterion("Content >", value, "content");
return (Criteria) this;
}
public Criteria andContentGreaterThanOrEqualTo(String value) {
addCriterion("Content >=", value, "content");
return (Criteria) this;
}
public Criteria andContentLessThan(String value) {
addCriterion("Content <", value, "content");
return (Criteria) this;
}
public Criteria andContentLessThanOrEqualTo(String value) {
addCriterion("Content <=", value, "content");
return (Criteria) this;
}
public Criteria andContentLike(String value) {
addCriterion("Content like", value, "content");
return (Criteria) this;
}
public Criteria andContentNotLike(String value) {
addCriterion("Content not like", value, "content");
return (Criteria) this;
}
public Criteria andContentIn(List<String> values) {
addCriterion("Content in", values, "content");
return (Criteria) this;
}
public Criteria andContentNotIn(List<String> values) {
addCriterion("Content not in", values, "content");
return (Criteria) this;
}
public Criteria andContentBetween(String value1, String value2) {
addCriterion("Content between", value1, value2, "content");
return (Criteria) this;
}
public Criteria andContentNotBetween(String value1, String value2) {
addCriterion("Content not between", value1, value2, "content");
return (Criteria) this;
}
public Criteria andResponsecontentIsNull() {
addCriterion("ResponseContent is null");
return (Criteria) this;
}
public Criteria andResponsecontentIsNotNull() {
addCriterion("ResponseContent is not null");
return (Criteria) this;
}
public Criteria andResponsecontentEqualTo(String value) {
addCriterion("ResponseContent =", value, "responsecontent");
return (Criteria) this;
}
public Criteria andResponsecontentNotEqualTo(String value) {
addCriterion("ResponseContent <>", value, "responsecontent");
return (Criteria) this;
}
public Criteria andResponsecontentGreaterThan(String value) {
addCriterion("ResponseContent >", value, "responsecontent");
return (Criteria) this;
}
public Criteria andResponsecontentGreaterThanOrEqualTo(String value) {
addCriterion("ResponseContent >=", value, "responsecontent");
return (Criteria) this;
}
public Criteria andResponsecontentLessThan(String value) {
addCriterion("ResponseContent <", value, "responsecontent");
return (Criteria) this;
}
public Criteria andResponsecontentLessThanOrEqualTo(String value) {
addCriterion("ResponseContent <=", value, "responsecontent");
return (Criteria) this;
}
public Criteria andResponsecontentLike(String value) {
addCriterion("ResponseContent like", value, "responsecontent");
return (Criteria) this;
}
public Criteria andResponsecontentNotLike(String value) {
addCriterion("ResponseContent not like", value, "responsecontent");
return (Criteria) this;
}
public Criteria andResponsecontentIn(List<String> values) {
addCriterion("ResponseContent in", values, "responsecontent");
return (Criteria) this;
}
public Criteria andResponsecontentNotIn(List<String> values) {
addCriterion("ResponseContent not in", values, "responsecontent");
return (Criteria) this;
}
public Criteria andResponsecontentBetween(String value1, String value2) {
addCriterion("ResponseContent between", value1, value2, "responsecontent");
return (Criteria) this;
}
public Criteria andResponsecontentNotBetween(String value1, String value2) {
addCriterion("ResponseContent not between", value1, value2, "responsecontent");
return (Criteria) this;
}
public Criteria andTitleIsNull() {
addCriterion("Title is null");
return (Criteria) this;
}
public Criteria andTitleIsNotNull() {
addCriterion("Title is not null");
return (Criteria) this;
}
public Criteria andTitleEqualTo(String value) {
addCriterion("Title =", value, "title");
return (Criteria) this;
}
public Criteria andTitleNotEqualTo(String value) {
addCriterion("Title <>", value, "title");
return (Criteria) this;
}
public Criteria andTitleGreaterThan(String value) {
addCriterion("Title >", value, "title");
return (Criteria) this;
}
public Criteria andTitleGreaterThanOrEqualTo(String value) {
addCriterion("Title >=", value, "title");
return (Criteria) this;
}
public Criteria andTitleLessThan(String value) {
addCriterion("Title <", value, "title");
return (Criteria) this;
}
public Criteria andTitleLessThanOrEqualTo(String value) {
addCriterion("Title <=", value, "title");
return (Criteria) this;
}
public Criteria andTitleLike(String value) {
addCriterion("Title like", value, "title");
return (Criteria) this;
}
public Criteria andTitleNotLike(String value) {
addCriterion("Title not like", value, "title");
return (Criteria) this;
}
public Criteria andTitleIn(List<String> values) {
addCriterion("Title in", values, "title");
return (Criteria) this;
}
public Criteria andTitleNotIn(List<String> values) {
addCriterion("Title not in", values, "title");
return (Criteria) this;
}
public Criteria andTitleBetween(String value1, String value2) {
addCriterion("Title between", value1, value2, "title");
return (Criteria) this;
}
public Criteria andTitleNotBetween(String value1, String value2) {
addCriterion("Title not between", value1, value2, "title");
return (Criteria) this;
}
public Criteria andWechatIsNull() {
addCriterion("WeChat is null");
return (Criteria) this;
}
public Criteria andWechatIsNotNull() {
addCriterion("WeChat is not null");
return (Criteria) this;
}
public Criteria andWechatEqualTo(String value) {
addCriterion("WeChat =", value, "wechat");
return (Criteria) this;
}
public Criteria andWechatNotEqualTo(String value) {
addCriterion("WeChat <>", value, "wechat");
return (Criteria) this;
}
public Criteria andWechatGreaterThan(String value) {
addCriterion("WeChat >", value, "wechat");
return (Criteria) this;
}
public Criteria andWechatGreaterThanOrEqualTo(String value) {
addCriterion("WeChat >=", value, "wechat");
return (Criteria) this;
}
public Criteria andWechatLessThan(String value) {
addCriterion("WeChat <", value, "wechat");
return (Criteria) this;
}
public Criteria andWechatLessThanOrEqualTo(String value) {
addCriterion("WeChat <=", value, "wechat");
return (Criteria) this;
}
public Criteria andWechatLike(String value) {
addCriterion("WeChat like", value, "wechat");
return (Criteria) this;
}
public Criteria andWechatNotLike(String value) {
addCriterion("WeChat not like", value, "wechat");
return (Criteria) this;
}
public Criteria andWechatIn(List<String> values) {
addCriterion("WeChat in", values, "wechat");
return (Criteria) this;
}
public Criteria andWechatNotIn(List<String> values) {
addCriterion("WeChat not in", values, "wechat");
return (Criteria) this;
}
public Criteria andWechatBetween(String value1, String value2) {
addCriterion("WeChat between", value1, value2, "wechat");
return (Criteria) this;
}
public Criteria andWechatNotBetween(String value1, String value2) {
addCriterion("WeChat not between", value1, value2, "wechat");
return (Criteria) this;
}
public Criteria andWeqqIsNull() {
addCriterion("WeQQ is null");
return (Criteria) this;
}
public Criteria andWeqqIsNotNull() {
addCriterion("WeQQ is not null");
return (Criteria) this;
}
public Criteria andWeqqEqualTo(String value) {
addCriterion("WeQQ =", value, "weqq");
return (Criteria) this;
}
public Criteria andWeqqNotEqualTo(String value) {
addCriterion("WeQQ <>", value, "weqq");
return (Criteria) this;
}
public Criteria andWeqqGreaterThan(String value) {
addCriterion("WeQQ >", value, "weqq");
return (Criteria) this;
}
public Criteria andWeqqGreaterThanOrEqualTo(String value) {
addCriterion("WeQQ >=", value, "weqq");
return (Criteria) this;
}
public Criteria andWeqqLessThan(String value) {
addCriterion("WeQQ <", value, "weqq");
return (Criteria) this;
}
public Criteria andWeqqLessThanOrEqualTo(String value) {
addCriterion("WeQQ <=", value, "weqq");
return (Criteria) this;
}
public Criteria andWeqqLike(String value) {
addCriterion("WeQQ like", value, "weqq");
return (Criteria) this;
}
public Criteria andWeqqNotLike(String value) {
addCriterion("WeQQ not like", value, "weqq");
return (Criteria) this;
}
public Criteria andWeqqIn(List<String> values) {
addCriterion("WeQQ in", values, "weqq");
return (Criteria) this;
}
public Criteria andWeqqNotIn(List<String> values) {
addCriterion("WeQQ not in", values, "weqq");
return (Criteria) this;
}
public Criteria andWeqqBetween(String value1, String value2) {
addCriterion("WeQQ between", value1, value2, "weqq");
return (Criteria) this;
}
public Criteria andWeqqNotBetween(String value1, String value2) {
addCriterion("WeQQ not between", value1, value2, "weqq");
return (Criteria) this;
}
public Criteria andTaobaoIsNull() {
addCriterion("Taobao is null");
return (Criteria) this;
}
public Criteria andTaobaoIsNotNull() {
addCriterion("Taobao is not null");
return (Criteria) this;
}
public Criteria andTaobaoEqualTo(String value) {
addCriterion("Taobao =", value, "taobao");
return (Criteria) this;
}
public Criteria andTaobaoNotEqualTo(String value) {
addCriterion("Taobao <>", value, "taobao");
return (Criteria) this;
}
public Criteria andTaobaoGreaterThan(String value) {
addCriterion("Taobao >", value, "taobao");
return (Criteria) this;
}
public Criteria andTaobaoGreaterThanOrEqualTo(String value) {
addCriterion("Taobao >=", value, "taobao");
return (Criteria) this;
}
public Criteria andTaobaoLessThan(String value) {
addCriterion("Taobao <", value, "taobao");
return (Criteria) this;
}
public Criteria andTaobaoLessThanOrEqualTo(String value) {
addCriterion("Taobao <=", value, "taobao");
return (Criteria) this;
}
public Criteria andTaobaoLike(String value) {
addCriterion("Taobao like", value, "taobao");
return (Criteria) this;
}
public Criteria andTaobaoNotLike(String value) {
addCriterion("Taobao not like", value, "taobao");
return (Criteria) this;
}
public Criteria andTaobaoIn(List<String> values) {
addCriterion("Taobao in", values, "taobao");
return (Criteria) this;
}
public Criteria andTaobaoNotIn(List<String> values) {
addCriterion("Taobao not in", values, "taobao");
return (Criteria) this;
}
public Criteria andTaobaoBetween(String value1, String value2) {
addCriterion("Taobao between", value1, value2, "taobao");
return (Criteria) this;
}
public Criteria andTaobaoNotBetween(String value1, String value2) {
addCriterion("Taobao not between", value1, value2, "taobao");
return (Criteria) this;
}
public Criteria andPhoneIsNull() {
addCriterion("Phone is null");
return (Criteria) this;
}
public Criteria andPhoneIsNotNull() {
addCriterion("Phone is not null");
return (Criteria) this;
}
public Criteria andPhoneEqualTo(String value) {
addCriterion("Phone =", value, "phone");
return (Criteria) this;
}
public Criteria andPhoneNotEqualTo(String value) {
addCriterion("Phone <>", value, "phone");
return (Criteria) this;
}
public Criteria andPhoneGreaterThan(String value) {
addCriterion("Phone >", value, "phone");
return (Criteria) this;
}
public Criteria andPhoneGreaterThanOrEqualTo(String value) {
addCriterion("Phone >=", value, "phone");
return (Criteria) this;
}
public Criteria andPhoneLessThan(String value) {
addCriterion("Phone <", value, "phone");
return (Criteria) this;
}
public Criteria andPhoneLessThanOrEqualTo(String value) {
addCriterion("Phone <=", value, "phone");
return (Criteria) this;
}
public Criteria andPhoneLike(String value) {
addCriterion("Phone like", value, "phone");
return (Criteria) this;
}
public Criteria andPhoneNotLike(String value) {
addCriterion("Phone not like", value, "phone");
return (Criteria) this;
}
public Criteria andPhoneIn(List<String> values) {
addCriterion("Phone in", values, "phone");
return (Criteria) this;
}
public Criteria andPhoneNotIn(List<String> values) {
addCriterion("Phone not in", values, "phone");
return (Criteria) this;
}
public Criteria andPhoneBetween(String value1, String value2) {
addCriterion("Phone between", value1, value2, "phone");
return (Criteria) this;
}
public Criteria andPhoneNotBetween(String value1, String value2) {
addCriterion("Phone not between", value1, value2, "phone");
return (Criteria) this;
}
public Criteria andAddressIsNull() {
addCriterion("Address is null");
return (Criteria) this;
}
public Criteria andAddressIsNotNull() {
addCriterion("Address is not null");
return (Criteria) this;
}
public Criteria andAddressEqualTo(String value) {
addCriterion("Address =", value, "address");
return (Criteria) this;
}
public Criteria andAddressNotEqualTo(String value) {
addCriterion("Address <>", value, "address");
return (Criteria) this;
}
public Criteria andAddressGreaterThan(String value) {
addCriterion("Address >", value, "address");
return (Criteria) this;
}
public Criteria andAddressGreaterThanOrEqualTo(String value) {
addCriterion("Address >=", value, "address");
return (Criteria) this;
}
public Criteria andAddressLessThan(String value) {
addCriterion("Address <", value, "address");
return (Criteria) this;
}
public Criteria andAddressLessThanOrEqualTo(String value) {
addCriterion("Address <=", value, "address");
return (Criteria) this;
}
public Criteria andAddressLike(String value) {
addCriterion("Address like", value, "address");
return (Criteria) this;
}
public Criteria andAddressNotLike(String value) {
addCriterion("Address not like", value, "address");
return (Criteria) this;
}
public Criteria andAddressIn(List<String> values) {
addCriterion("Address in", values, "address");
return (Criteria) this;
}
public Criteria andAddressNotIn(List<String> values) {
addCriterion("Address not in", values, "address");
return (Criteria) this;
}
public Criteria andAddressBetween(String value1, String value2) {
addCriterion("Address between", value1, value2, "address");
return (Criteria) this;
}
public Criteria andAddressNotBetween(String value1, String value2) {
addCriterion("Address not between", value1, value2, "address");
return (Criteria) this;
}
public Criteria andIpaddressIsNull() {
addCriterion("IpAddress is null");
return (Criteria) this;
}
public Criteria andIpaddressIsNotNull() {
addCriterion("IpAddress is not null");
return (Criteria) this;
}
public Criteria andIpaddressEqualTo(String value) {
addCriterion("IpAddress =", value, "ipaddress");
return (Criteria) this;
}
public Criteria andIpaddressNotEqualTo(String value) {
addCriterion("IpAddress <>", value, "ipaddress");
return (Criteria) this;
}
public Criteria andIpaddressGreaterThan(String value) {
addCriterion("IpAddress >", value, "ipaddress");
return (Criteria) this;
}
public Criteria andIpaddressGreaterThanOrEqualTo(String value) {
addCriterion("IpAddress >=", value, "ipaddress");
return (Criteria) this;
}
public Criteria andIpaddressLessThan(String value) {
addCriterion("IpAddress <", value, "ipaddress");
return (Criteria) this;
}
public Criteria andIpaddressLessThanOrEqualTo(String value) {
addCriterion("IpAddress <=", value, "ipaddress");
return (Criteria) this;
}
public Criteria andIpaddressLike(String value) {
addCriterion("IpAddress like", value, "ipaddress");
return (Criteria) this;
}
public Criteria andIpaddressNotLike(String value) {
addCriterion("IpAddress not like", value, "ipaddress");
return (Criteria) this;
}
public Criteria andIpaddressIn(List<String> values) {
addCriterion("IpAddress in", values, "ipaddress");
return (Criteria) this;
}
public Criteria andIpaddressNotIn(List<String> values) {
addCriterion("IpAddress not in", values, "ipaddress");
return (Criteria) this;
}
public Criteria andIpaddressBetween(String value1, String value2) {
addCriterion("IpAddress between", value1, value2, "ipaddress");
return (Criteria) this;
}
public Criteria andIpaddressNotBetween(String value1, String value2) {
addCriterion("IpAddress not between", value1, value2, "ipaddress");
return (Criteria) this;
}
public Criteria andUseragentIsNull() {
addCriterion("UserAgent is null");
return (Criteria) this;
}
public Criteria andUseragentIsNotNull() {
addCriterion("UserAgent is not null");
return (Criteria) this;
}
public Criteria andUseragentEqualTo(String value) {
addCriterion("UserAgent =", value, "useragent");
return (Criteria) this;
}
public Criteria andUseragentNotEqualTo(String value) {
addCriterion("UserAgent <>", value, "useragent");
return (Criteria) this;
}
public Criteria andUseragentGreaterThan(String value) {
addCriterion("UserAgent >", value, "useragent");
return (Criteria) this;
}
public Criteria andUseragentGreaterThanOrEqualTo(String value) {
addCriterion("UserAgent >=", value, "useragent");
return (Criteria) this;
}
public Criteria andUseragentLessThan(String value) {
addCriterion("UserAgent <", value, "useragent");
return (Criteria) this;
}
public Criteria andUseragentLessThanOrEqualTo(String value) {
addCriterion("UserAgent <=", value, "useragent");
return (Criteria) this;
}
public Criteria andUseragentLike(String value) {
addCriterion("UserAgent like", value, "useragent");
return (Criteria) this;
}
public Criteria andUseragentNotLike(String value) {
addCriterion("UserAgent not like", value, "useragent");
return (Criteria) this;
}
public Criteria andUseragentIn(List<String> values) {
addCriterion("UserAgent in", values, "useragent");
return (Criteria) this;
}
public Criteria andUseragentNotIn(List<String> values) {
addCriterion("UserAgent not in", values, "useragent");
return (Criteria) this;
}
public Criteria andUseragentBetween(String value1, String value2) {
addCriterion("UserAgent between", value1, value2, "useragent");
return (Criteria) this;
}
public Criteria andUseragentNotBetween(String value1, String value2) {
addCriterion("UserAgent not between", value1, value2, "useragent");
return (Criteria) this;
}
public Criteria andCreatetimeIsNull() {
addCriterion("CreateTime is null");
return (Criteria) this;
}
public Criteria andCreatetimeIsNotNull() {
addCriterion("CreateTime is not null");
return (Criteria) this;
}
public Criteria andCreatetimeEqualTo(Date value) {
addCriterion("CreateTime =", value, "createtime");
return (Criteria) this;
}
public Criteria andCreatetimeNotEqualTo(Date value) {
addCriterion("CreateTime <>", value, "createtime");
return (Criteria) this;
}
public Criteria andCreatetimeGreaterThan(Date value) {
addCriterion("CreateTime >", value, "createtime");
return (Criteria) this;
}
public Criteria andCreatetimeGreaterThanOrEqualTo(Date value) {
addCriterion("CreateTime >=", value, "createtime");
return (Criteria) this;
}
public Criteria andCreatetimeLessThan(Date value) {
addCriterion("CreateTime <", value, "createtime");
return (Criteria) this;
}
public Criteria andCreatetimeLessThanOrEqualTo(Date value) {
addCriterion("CreateTime <=", value, "createtime");
return (Criteria) this;
}
public Criteria andCreatetimeIn(List<Date> values) {
addCriterion("CreateTime in", values, "createtime");
return (Criteria) this;
}
public Criteria andCreatetimeNotIn(List<Date> values) {
addCriterion("CreateTime not in", values, "createtime");
return (Criteria) this;
}
public Criteria andCreatetimeBetween(Date value1, Date value2) {
addCriterion("CreateTime between", value1, value2, "createtime");
return (Criteria) this;
}
public Criteria andCreatetimeNotBetween(Date value1, Date value2) {
addCriterion("CreateTime not between", value1, value2, "createtime");
return (Criteria) this;
}
public Criteria andResponsetimeIsNull() {
addCriterion("ResponseTime is null");
return (Criteria) this;
}
public Criteria andResponsetimeIsNotNull() {
addCriterion("ResponseTime is not null");
return (Criteria) this;
}
public Criteria andResponsetimeEqualTo(Date value) {
addCriterion("ResponseTime =", value, "responsetime");
return (Criteria) this;
}
public Criteria andResponsetimeNotEqualTo(Date value) {
addCriterion("ResponseTime <>", value, "responsetime");
return (Criteria) this;
}
public Criteria andResponsetimeGreaterThan(Date value) {
addCriterion("ResponseTime >", value, "responsetime");
return (Criteria) this;
}
public Criteria andResponsetimeGreaterThanOrEqualTo(Date value) {
addCriterion("ResponseTime >=", value, "responsetime");
return (Criteria) this;
}
public Criteria andResponsetimeLessThan(Date value) {
addCriterion("ResponseTime <", value, "responsetime");
return (Criteria) this;
}
public Criteria andResponsetimeLessThanOrEqualTo(Date value) {
addCriterion("ResponseTime <=", value, "responsetime");
return (Criteria) this;
}
public Criteria andResponsetimeIn(List<Date> values) {
addCriterion("ResponseTime in", values, "responsetime");
return (Criteria) this;
}
public Criteria andResponsetimeNotIn(List<Date> values) {
addCriterion("ResponseTime not in", values, "responsetime");
return (Criteria) this;
}
public Criteria andResponsetimeBetween(Date value1, Date value2) {
addCriterion("ResponseTime between", value1, value2, "responsetime");
return (Criteria) this;
}
public Criteria andResponsetimeNotBetween(Date value1, Date value2) {
addCriterion("ResponseTime not between", value1, value2, "responsetime");
return (Criteria) this;
}
public Criteria andUpdateuserIsNull() {
addCriterion("UpdateUser is null");
return (Criteria) this;
}
public Criteria andUpdateuserIsNotNull() {
addCriterion("UpdateUser is not null");
return (Criteria) this;
}
public Criteria andUpdateuserEqualTo(String value) {
addCriterion("UpdateUser =", value, "updateuser");
return (Criteria) this;
}
public Criteria andUpdateuserNotEqualTo(String value) {
addCriterion("UpdateUser <>", value, "updateuser");
return (Criteria) this;
}
public Criteria andUpdateuserGreaterThan(String value) {
addCriterion("UpdateUser >", value, "updateuser");
return (Criteria) this;
}
public Criteria andUpdateuserGreaterThanOrEqualTo(String value) {
addCriterion("UpdateUser >=", value, "updateuser");
return (Criteria) this;
}
public Criteria andUpdateuserLessThan(String value) {
addCriterion("UpdateUser <", value, "updateuser");
return (Criteria) this;
}
public Criteria andUpdateuserLessThanOrEqualTo(String value) {
addCriterion("UpdateUser <=", value, "updateuser");
return (Criteria) this;
}
public Criteria andUpdateuserLike(String value) {
addCriterion("UpdateUser like", value, "updateuser");
return (Criteria) this;
}
public Criteria andUpdateuserNotLike(String value) {
addCriterion("UpdateUser not like", value, "updateuser");
return (Criteria) this;
}
public Criteria andUpdateuserIn(List<String> values) {
addCriterion("UpdateUser in", values, "updateuser");
return (Criteria) this;
}
public Criteria andUpdateuserNotIn(List<String> values) {
addCriterion("UpdateUser not in", values, "updateuser");
return (Criteria) this;
}
public Criteria andUpdateuserBetween(String value1, String value2) {
addCriterion("UpdateUser between", value1, value2, "updateuser");
return (Criteria) this;
}
public Criteria andUpdateuserNotBetween(String value1, String value2) {
addCriterion("UpdateUser not between", value1, value2, "updateuser");
return (Criteria) this;
}
public Criteria andUpdatetimeIsNull() {
addCriterion("UpdateTime is null");
return (Criteria) this;
}
public Criteria andUpdatetimeIsNotNull() {
addCriterion("UpdateTime is not null");
return (Criteria) this;
}
public Criteria andUpdatetimeEqualTo(Date value) {
addCriterion("UpdateTime =", value, "updatetime");
return (Criteria) this;
}
public Criteria andUpdatetimeNotEqualTo(Date value) {
addCriterion("UpdateTime <>", value, "updatetime");
return (Criteria) this;
}
public Criteria andUpdatetimeGreaterThan(Date value) {
addCriterion("UpdateTime >", value, "updatetime");
return (Criteria) this;
}
public Criteria andUpdatetimeGreaterThanOrEqualTo(Date value) {
addCriterion("UpdateTime >=", value, "updatetime");
return (Criteria) this;
}
public Criteria andUpdatetimeLessThan(Date value) {
addCriterion("UpdateTime <", value, "updatetime");
return (Criteria) this;
}
public Criteria andUpdatetimeLessThanOrEqualTo(Date value) {
addCriterion("UpdateTime <=", value, "updatetime");
return (Criteria) this;
}
public Criteria andUpdatetimeIn(List<Date> values) {
addCriterion("UpdateTime in", values, "updatetime");
return (Criteria) this;
}
public Criteria andUpdatetimeNotIn(List<Date> values) {
addCriterion("UpdateTime not in", values, "updatetime");
return (Criteria) this;
}
public Criteria andUpdatetimeBetween(Date value1, Date value2) {
addCriterion("UpdateTime between", value1, value2, "updatetime");
return (Criteria) this;
}
public Criteria andUpdatetimeNotBetween(Date value1, Date value2) {
addCriterion("UpdateTime not between", value1, value2, "updatetime");
return (Criteria) this;
}
public Criteria andFeedbackuserIsNull() {
addCriterion("FeedBackUser is null");
return (Criteria) this;
}
public Criteria andFeedbackuserIsNotNull() {
addCriterion("FeedBackUser is not null");
return (Criteria) this;
}
public Criteria andFeedbackuserEqualTo(String value) {
addCriterion("FeedBackUser =", value, "feedbackuser");
return (Criteria) this;
}
public Criteria andFeedbackuserNotEqualTo(String value) {
addCriterion("FeedBackUser <>", value, "feedbackuser");
return (Criteria) this;
}
public Criteria andFeedbackuserGreaterThan(String value) {
addCriterion("FeedBackUser >", value, "feedbackuser");
return (Criteria) this;
}
public Criteria andFeedbackuserGreaterThanOrEqualTo(String value) {
addCriterion("FeedBackUser >=", value, "feedbackuser");
return (Criteria) this;
}
public Criteria andFeedbackuserLessThan(String value) {
addCriterion("FeedBackUser <", value, "feedbackuser");
return (Criteria) this;
}
public Criteria andFeedbackuserLessThanOrEqualTo(String value) {
addCriterion("FeedBackUser <=", value, "feedbackuser");
return (Criteria) this;
}
public Criteria andFeedbackuserLike(String value) {
addCriterion("FeedBackUser like", value, "feedbackuser");
return (Criteria) this;
}
public Criteria andFeedbackuserNotLike(String value) {
addCriterion("FeedBackUser not like", value, "feedbackuser");
return (Criteria) this;
}
public Criteria andFeedbackuserIn(List<String> values) {
addCriterion("FeedBackUser in", values, "feedbackuser");
return (Criteria) this;
}
public Criteria andFeedbackuserNotIn(List<String> values) {
addCriterion("FeedBackUser not in", values, "feedbackuser");
return (Criteria) this;
}
public Criteria andFeedbackuserBetween(String value1, String value2) {
addCriterion("FeedBackUser between", value1, value2, "feedbackuser");
return (Criteria) this;
}
public Criteria andFeedbackuserNotBetween(String value1, String value2) {
addCriterion("FeedBackUser not between", value1, value2, "feedbackuser");
return (Criteria) this;
}
public Criteria andIsshowIsNull() {
addCriterion("IsShow is null");
return (Criteria) this;
}
public Criteria andIsshowIsNotNull() {
addCriterion("IsShow is not null");
return (Criteria) this;
}
public Criteria andIsshowEqualTo(Integer value) {
addCriterion("IsShow =", value, "isshow");
return (Criteria) this;
}
public Criteria andIsshowNotEqualTo(Integer value) {
addCriterion("IsShow <>", value, "isshow");
return (Criteria) this;
}
public Criteria andIsshowGreaterThan(Integer value) {
addCriterion("IsShow >", value, "isshow");
return (Criteria) this;
}
public Criteria andIsshowGreaterThanOrEqualTo(Integer value) {
addCriterion("IsShow >=", value, "isshow");
return (Criteria) this;
}
public Criteria andIsshowLessThan(Integer value) {
addCriterion("IsShow <", value, "isshow");
return (Criteria) this;
}
public Criteria andIsshowLessThanOrEqualTo(Integer value) {
addCriterion("IsShow <=", value, "isshow");
return (Criteria) this;
}
public Criteria andIsshowIn(List<Integer> values) {
addCriterion("IsShow in", values, "isshow");
return (Criteria) this;
}
public Criteria andIsshowNotIn(List<Integer> values) {
addCriterion("IsShow not in", values, "isshow");
return (Criteria) this;
}
public Criteria andIsshowBetween(Integer value1, Integer value2) {
addCriterion("IsShow between", value1, value2, "isshow");
return (Criteria) this;
}
public Criteria andIsshowNotBetween(Integer value1, Integer value2) {
addCriterion("IsShow not between", value1, value2, "isshow");
return (Criteria) this;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table feedback
*
* @mbggenerated do_not_delete_during_merge Sun Sep 11 14:51:54 CST 2016
*/
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table feedback
*
* @mbggenerated Sun Sep 11 14:51:54 CST 2016
*/
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
} | [
"gafker@sina.com"
] | gafker@sina.com |
54d6d4684553c3562e1c95741e59c3eaae213624 | 6b4b91fed8f5845c5da49726ab17b49a449443dd | /cityAPI/src/main/java/challenge/adidas/api/city/dto/response/Link.java | 7e447d34ca879624ac801bd27edda6a87253516e | [] | no_license | joseMiguelAgudo/challenge | 9102a0279fd35350ed76d7dda37d24e11fd8784c | b0fb1d08ceebc7edc776c868e0f3fba1fbdddada | refs/heads/master | 2020-03-09T06:45:42.736731 | 2018-04-08T14:43:28 | 2018-04-08T14:43:28 | 128,647,584 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 722 | java | package challenge.adidas.api.city.dto.response;
import java.time.LocalTime;
/**
*
* Business object to represent a Link, it is formed by its destination,
* departure and arrival
*
* @author joseam
*
*/
public class Link {
String destination;
LocalTime departure;
LocalTime arrival;
public String getDestination() {
return destination;
}
public void setDestination(String destination) {
this.destination = destination;
}
public LocalTime getDeparture() {
return departure;
}
public void setDeparture(LocalTime departure) {
this.departure = departure;
}
public LocalTime getArrival() {
return arrival;
}
public void setArrival(LocalTime arrival) {
this.arrival = arrival;
}
}
| [
"joselillo.agudo@gmail.com"
] | joselillo.agudo@gmail.com |
2598ec43f72d1b7477cbcf70187ca08f1263f3b3 | 1127dba4cf81789a9ef67eff4a443658974e1a10 | /src/main/java/com/rain/learn/sms/ebo/package-info.java | bb39129eb81b93cde99a6376e0615966e0c6fda7 | [] | no_license | xidianzxm/spring-mvc-learn | c0818ef6d6c64b172e045709cafc7ac8014e0b82 | 3594eeada7737183af37ad3181ed6aee62b406e6 | refs/heads/master | 2021-06-17T01:44:28.642109 | 2017-01-21T13:56:20 | 2017-01-21T13:56:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 70 | java | /**
*
*/
/**
* @author rain
*
*/
package com.rain.learn.sms.ebo; | [
"12120351@bjtu.edu.cn"
] | 12120351@bjtu.edu.cn |
41fa48f069521f04bcc67771b20eab101e359e1a | ee1646573ad741d65308ce7991764815c326a348 | /src/main/java/Main.java | fca056c396f059b31b30e8991182e22843d9260d | [] | no_license | lalvarezc/Proyecto-Calculadora | 264eb49b0fdf069100ba54d0003721674b9cc8a3 | 143dde60d5c5dc96eb04dba0b943f5a47f04e72a | refs/heads/master | 2021-01-17T17:45:16.013299 | 2016-08-02T15:57:30 | 2016-08-02T15:57:30 | 64,770,414 | 0 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 590 | java | import java.util.Scanner;
public class Main {
static Scanner sc = new Scanner(System.in);
static Calculadora c = new Calculadora();
public static void main (String[]args){
System.out.println("Ingrese el primer número");
int primer = sc.nextInt();
c.setPrimerNum(primer);
System.out.println("Ingrese la operación (+,-,*,/)");
String operacion = sc.next();
c.setOperacion(operacion);
System.out.println("Ingrese el segundo número");
int segundo = sc.nextInt();
c.setSegundoNum(segundo);
System.out.println("El resultado es: " + c.Resultado());
}
}
| [
"lesliealvarez.c@hotmail.com"
] | lesliealvarez.c@hotmail.com |
07fd92e6d16e06306fcf73558e63f0a4b0c221ab | 9ac82a106cdb45dc91e603e4b5826cbe66c6aca6 | /src/main/java/avion/events/LicenciaActualizada.java | 8ceaddb71e54fcc4ae3246b10031be56e9fd7958 | [] | no_license | eduardoramirez7/Reto-DDD-SistemaAbordajePasajeros | d741d8781b22a04ce9aee71f149b8a0f6fa35ea8 | 2071b5ebf904383e684c03475a345e6d9755e847 | refs/heads/master | 2023-06-04T22:31:19.145943 | 2021-06-18T22:23:44 | 2021-06-18T22:23:44 | 378,056,637 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 636 | java | package avion.events;
import avion.values.PilotoId;
import avion.values.TipoLicencia;
import co.com.sofka.domain.generic.DomainEvent;
public class LicenciaActualizada extends DomainEvent {
private final PilotoId pilotoId;
private final TipoLicencia tipoLicencia;
public LicenciaActualizada(PilotoId pilotoId, TipoLicencia tipoLicencia) {
super("sofka.avion.licenciaactualizada");
this.pilotoId = pilotoId;
this.tipoLicencia = tipoLicencia;
}
public PilotoId getPilotoId() {
return pilotoId;
}
public TipoLicencia getTipoLicencia() {
return tipoLicencia;
}
}
| [
"jeduard@unicauca.edu.co"
] | jeduard@unicauca.edu.co |
0129bdf3fa798181dbc817ae590ff7f3929cda3d | 4525822f703ff4c4eda76859a4c9a05e62f75515 | /17/17-3/Senior/client/Client.java | bb7c19f370881ce125d8f21dea8fc73d6cfdf5d4 | [] | no_license | zhdying/CrazyJava | 4bc2ef9a480313836026bf908e82c1447c7fc9e9 | a08261769568de131a291c2efe2cb4142e6e023e | refs/heads/master | 2020-12-24T21:22:50.514801 | 2016-04-15T03:11:23 | 2016-04-15T03:11:23 | 56,286,246 | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 3,586 | java |
import java.net.*;
import java.io.*;
import javax.swing.*;
import java.util.*;
/**
* @author yeeku.H.lee kongyeeku@163.com
* @version 1.0
* <br>Copyright (C), 2005-2008, yeeku.H.Lee
* <br>This program is protected by copyright laws.
* <br>Program Name:
* <br>Date:
*/
public class Client
{
private static final int SERVER_PORT = 30000;
private Socket socket;
private PrintStream ps;
private BufferedReader brServer;
private BufferedReader keyIn;
public void init()
{
try
{
//初始化代表键盘的输入流
keyIn = new BufferedReader(
new InputStreamReader(System.in));
//连接到服务器
socket = new Socket("127.0.0.1", SERVER_PORT);
//获取该Socket对应的输入流和输出流
ps = new PrintStream(socket.getOutputStream());
brServer = new BufferedReader(
new InputStreamReader(socket.getInputStream()));
String tip = "";
//采用循环不断地弹出对话框要求输入用户名
while(true)
{
String userName = JOptionPane.showInputDialog(tip + "输入用户名");
//将用户输入的用户名的前后增加协议字符串后发送
ps.println(YeekuProtocol.USER_ROUND + userName
+ YeekuProtocol.USER_ROUND);
//读取服务器的响应
String result = brServer.readLine();
//如果用户重复,开始下次循环
if (result.equals(YeekuProtocol.NAME_REP))
{
tip = "用户名重复!请重新";
continue;
}
//如果服务器返回登陆成功,结束循环
if (result.equals(YeekuProtocol.LOGIN_SUCCESS))
{
break;
}
}
}
//捕捉到异常,关闭网络资源,并退出该程序
catch (UnknownHostException ex)
{
System.out.println("找不到远程服务器,请确定服务器已经启动!");
closeRs();
System.exit(1);
}
catch (IOException ex)
{
System.out.println("网络异常!请重新登陆!");
closeRs();
System.exit(1);
}
//以该Socket对应的输入流启动ClientThread线程
new ClientThread(brServer).start();
}
//定义一个读取键盘输出,并向网络发送的方法
private void readAndSend()
{
try
{
//不断读取键盘输入
String line = null;
while((line = keyIn.readLine()) != null)
{
//如果发送的信息中有冒号,且以//开头,则认为想发送私聊信息
if (line.indexOf(":") > 0 && line.startsWith("//"))
{
line = line.substring(2);
//冒号之前的是私聊用户,冒号之后的是聊天信息
ps.println(YeekuProtocol.PRIVATE_ROUND +
line.split(":")[0] + YeekuProtocol.SPLIT_SIGN +
line.split(":")[1] + YeekuProtocol.PRIVATE_ROUND);
}
else
{
ps.println(YeekuProtocol.MSG_ROUND + line
+ YeekuProtocol.MSG_ROUND);
}
}
}
//捕捉到异常,关闭网络资源,并退出该程序
catch (IOException ex)
{
System.out.println("网络通信异常!请重新登陆!");
closeRs();
System.exit(1);
}
}
//关闭Socket、输入流、输出流的方法
private void closeRs()
{
try
{
if (keyIn != null)
{
ps.close();
}
if (brServer != null)
{
ps.close();
}
if (ps != null)
{
ps.close();
}
if (socket != null)
{
keyIn.close();
}
}
catch (IOException ex)
{
ex.printStackTrace();
}
}
public static void main(String[] args)
{
Client client = new Client();
client.init();
client.readAndSend();
}
}
| [
"cnhnzhangdi@gmail.com"
] | cnhnzhangdi@gmail.com |
b8572e57fa4ce48e296cbb6652f953d38ce68032 | 1d928c3f90d4a0a9a3919a804597aa0a4aab19a3 | /java/lucene-solr/2017/12/RealTimeGetComponent.java | 8e3ffebd849df36f0ab6ddca28a796009f872452 | [] | no_license | rosoareslv/SED99 | d8b2ff5811e7f0ffc59be066a5a0349a92cbb845 | a062c118f12b93172e31e8ca115ce3f871b64461 | refs/heads/main | 2023-02-22T21:59:02.703005 | 2021-01-28T19:40:51 | 2021-01-28T19:40:51 | 306,497,459 | 1 | 1 | null | 2020-11-24T20:56:18 | 2020-10-23T01:18:07 | null | UTF-8 | Java | false | false | 48,849 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.solr.handler.component;
import static org.apache.solr.common.params.CommonParams.DISTRIB;
import static org.apache.solr.common.params.CommonParams.ID;
import static org.apache.solr.common.params.CommonParams.VERSION_FIELD;
import java.io.IOException;
import java.lang.invoke.MethodHandles;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.atomic.AtomicLong;
import java.util.stream.Collectors;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.lucene.index.DocValuesType;
import org.apache.lucene.index.IndexableField;
import org.apache.lucene.index.LeafReaderContext;
import org.apache.lucene.index.Term;
import org.apache.lucene.search.MatchAllDocsQuery;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.ScoreMode;
import org.apache.lucene.search.Scorer;
import org.apache.lucene.util.BytesRef;
import org.apache.lucene.util.BytesRefBuilder;
import org.apache.solr.client.solrj.SolrResponse;
import org.apache.solr.cloud.CloudDescriptor;
import org.apache.solr.cloud.ZkController;
import org.apache.solr.common.SolrDocument;
import org.apache.solr.common.SolrDocumentList;
import org.apache.solr.common.SolrException;
import org.apache.solr.common.SolrException.ErrorCode;
import org.apache.solr.common.SolrInputDocument;
import org.apache.solr.common.StringUtils;
import org.apache.solr.common.cloud.ClusterState;
import org.apache.solr.common.cloud.DocCollection;
import org.apache.solr.common.cloud.Replica;
import org.apache.solr.common.cloud.Slice;
import org.apache.solr.common.params.CommonParams;
import org.apache.solr.common.params.ModifiableSolrParams;
import org.apache.solr.common.params.ShardParams;
import org.apache.solr.common.params.SolrParams;
import org.apache.solr.common.util.NamedList;
import org.apache.solr.common.util.StrUtils;
import org.apache.solr.core.SolrCore;
import org.apache.solr.request.SolrQueryRequest;
import org.apache.solr.response.ResultContext;
import org.apache.solr.response.SolrQueryResponse;
import org.apache.solr.response.transform.DocTransformer;
import org.apache.solr.schema.FieldType;
import org.apache.solr.schema.IndexSchema;
import org.apache.solr.schema.SchemaField;
import org.apache.solr.search.DocList;
import org.apache.solr.search.QParser;
import org.apache.solr.search.ReturnFields;
import org.apache.solr.search.SolrDocumentFetcher;
import org.apache.solr.search.SolrIndexSearcher;
import org.apache.solr.search.SolrReturnFields;
import org.apache.solr.search.SyntaxError;
import org.apache.solr.update.DocumentBuilder;
import org.apache.solr.update.IndexFingerprint;
import org.apache.solr.update.PeerSync;
import org.apache.solr.update.UpdateLog;
import org.apache.solr.util.RefCounted;
import org.apache.solr.util.TestInjection;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class RealTimeGetComponent extends SearchComponent
{
private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
public static final String COMPONENT_NAME = "get";
@Override
public void prepare(ResponseBuilder rb) throws IOException {
// Set field flags
ReturnFields returnFields = new SolrReturnFields( rb.req );
rb.rsp.setReturnFields( returnFields );
}
@Override
public void process(ResponseBuilder rb) throws IOException
{
SolrQueryRequest req = rb.req;
SolrQueryResponse rsp = rb.rsp;
SolrParams params = req.getParams();
CloudDescriptor cloudDesc = req.getCore().getCoreDescriptor().getCloudDescriptor();
if (cloudDesc != null) {
Replica.Type replicaType = cloudDesc.getReplicaType();
if (replicaType != null) {
if (replicaType == Replica.Type.PULL) {
throw new SolrException(ErrorCode.BAD_REQUEST,
String.format(Locale.ROOT, "%s can't handle realtime get requests. Replicas of type %s do not support these type of requests",
cloudDesc.getCoreNodeName(),
Replica.Type.PULL));
}
// non-leader TLOG replicas should not respond to distrib /get requests, but internal requests are OK
}
}
if (!params.getBool(COMPONENT_NAME, true)) {
return;
}
// This seems rather kludgey, may there is better way to indicate
// that replica can support handling version ranges
String val = params.get("checkCanHandleVersionRanges");
if(val != null) {
rb.rsp.add("canHandleVersionRanges", true);
return;
}
val = params.get("getFingerprint");
if(val != null) {
processGetFingeprint(rb);
return;
}
val = params.get("getVersions");
if (val != null) {
processGetVersions(rb);
return;
}
val = params.get("getUpdates");
if (val != null) {
// solrcloud_debug
if (log.isDebugEnabled()) {
try {
RefCounted<SolrIndexSearcher> searchHolder = req.getCore()
.getNewestSearcher(false);
SolrIndexSearcher searcher = searchHolder.get();
try {
log.debug(req.getCore()
.getCoreContainer().getZkController().getNodeName()
+ " min count to sync to (from most recent searcher view) "
+ searcher.search(new MatchAllDocsQuery(), 1).totalHits);
} finally {
searchHolder.decref();
}
} catch (Exception e) {
log.debug("Error in solrcloud_debug block", e);
}
}
processGetUpdates(rb);
return;
}
val = params.get("getInputDocument");
if (val != null) {
processGetInputDocument(rb);
return;
}
final IdsRequsted reqIds = IdsRequsted.parseParams(req);
if (reqIds.allIds.isEmpty()) {
return;
}
// parse any existing filters
try {
String[] fqs = req.getParams().getParams(CommonParams.FQ);
if (fqs!=null && fqs.length!=0) {
List<Query> filters = rb.getFilters();
// if filters already exists, make a copy instead of modifying the original
filters = filters == null ? new ArrayList<Query>(fqs.length) : new ArrayList<>(filters);
for (String fq : fqs) {
if (fq != null && fq.trim().length()!=0) {
QParser fqp = QParser.getParser(fq, req);
filters.add(fqp.getQuery());
}
}
if (!filters.isEmpty()) {
rb.setFilters( filters );
}
}
} catch (SyntaxError e) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, e);
}
final SolrCore core = req.getCore();
SchemaField idField = core.getLatestSchema().getUniqueKeyField();
FieldType fieldType = idField.getType();
SolrDocumentList docList = new SolrDocumentList();
UpdateLog ulog = core.getUpdateHandler().getUpdateLog();
SearcherInfo searcherInfo = new SearcherInfo(core);
// this is initialized & set on the context *after* any searcher (re-)opening
ResultContext resultContext = null;
final DocTransformer transformer = rsp.getReturnFields().getTransformer();
// true in any situation where we have to use a realtime searcher rather then returning docs
// directly from the UpdateLog
final boolean mustUseRealtimeSearcher =
// if we have filters, we need to check those against the indexed form of the doc
(rb.getFilters() != null)
|| ((null != transformer) && transformer.needsSolrIndexSearcher());
try {
BytesRefBuilder idBytes = new BytesRefBuilder();
for (String idStr : reqIds.allIds) {
fieldType.readableToIndexed(idStr, idBytes);
if (ulog != null) {
Object o = ulog.lookup(idBytes.get());
if (o != null) {
// should currently be a List<Oper,Ver,Doc/Id>
List entry = (List)o;
assert entry.size() >= 3;
int oper = (Integer)entry.get(UpdateLog.FLAGS_IDX) & UpdateLog.OPERATION_MASK;
switch (oper) {
case UpdateLog.UPDATE_INPLACE: // fall through to ADD
case UpdateLog.ADD:
if (mustUseRealtimeSearcher) {
// close handles to current searchers & result context
searcherInfo.clear();
resultContext = null;
ulog.openRealtimeSearcher(); // force open a new realtime searcher
o = null; // pretend we never found this record and fall through to use the searcher
break;
}
SolrDocument doc;
if (oper == UpdateLog.ADD) {
doc = toSolrDoc((SolrInputDocument)entry.get(entry.size()-1), core.getLatestSchema());
} else if (oper == UpdateLog.UPDATE_INPLACE) {
assert entry.size() == 5;
// For in-place update case, we have obtained the partial document till now. We need to
// resolve it to a full document to be returned to the user.
doc = resolveFullDocument(core, idBytes.get(), rsp.getReturnFields(), (SolrInputDocument)entry.get(entry.size()-1), entry, null);
if (doc == null) {
break; // document has been deleted as the resolve was going on
}
} else {
throw new SolrException(ErrorCode.INVALID_STATE, "Expected ADD or UPDATE_INPLACE. Got: " + oper);
}
if (transformer!=null) {
transformer.transform(doc, -1); // unknown docID
}
docList.add(doc);
break;
case UpdateLog.DELETE:
break;
default:
throw new SolrException(SolrException.ErrorCode.SERVER_ERROR, "Unknown Operation! " + oper);
}
if (o != null) continue;
}
}
// didn't find it in the update log, so it should be in the newest searcher opened
searcherInfo.init();
// don't bother with ResultContext yet, we won't need it if doc doesn't match filters
int docid = -1;
long segAndId = searcherInfo.getSearcher().lookupId(idBytes.get());
if (segAndId >= 0) {
int segid = (int) segAndId;
LeafReaderContext ctx = searcherInfo.getSearcher().getTopReaderContext().leaves().get((int) (segAndId >> 32));
docid = segid + ctx.docBase;
if (rb.getFilters() != null) {
for (Query raw : rb.getFilters()) {
Query q = raw.rewrite(searcherInfo.getSearcher().getIndexReader());
Scorer scorer = searcherInfo.getSearcher().createWeight(q, ScoreMode.COMPLETE_NO_SCORES, 1f).scorer(ctx);
if (scorer == null || segid != scorer.iterator().advance(segid)) {
// filter doesn't match.
docid = -1;
break;
}
}
}
}
if (docid < 0) continue;
Document luceneDocument = searcherInfo.getSearcher().doc(docid, rsp.getReturnFields().getLuceneFieldNames());
SolrDocument doc = toSolrDoc(luceneDocument, core.getLatestSchema());
SolrDocumentFetcher docFetcher = searcherInfo.getSearcher().getDocFetcher();
docFetcher.decorateDocValueFields(doc, docid, docFetcher.getNonStoredDVs(true));
if ( null != transformer) {
if (null == resultContext) {
// either first pass, or we've re-opened searcher - either way now we setContext
resultContext = new RTGResultContext(rsp.getReturnFields(), searcherInfo.getSearcher(), req);
transformer.setContext(resultContext);
}
transformer.transform(doc, docid);
}
docList.add(doc);
}
} finally {
searcherInfo.clear();
}
addDocListToResponse(rb, docList);
}
/**
* Return the requested SolrInputDocument from the tlog/index. This will
* always be a full document, i.e. any partial in-place document will be resolved.
*/
void processGetInputDocument(ResponseBuilder rb) throws IOException {
SolrQueryRequest req = rb.req;
SolrQueryResponse rsp = rb.rsp;
SolrParams params = req.getParams();
if (!params.getBool(COMPONENT_NAME, true)) {
return;
}
String idStr = params.get("getInputDocument", null);
if (idStr == null) return;
AtomicLong version = new AtomicLong();
SolrInputDocument doc = getInputDocument(req.getCore(), new BytesRef(idStr), version, false, null, true);
log.info("getInputDocument called for id="+idStr+", returning: "+doc);
rb.rsp.add("inputDocument", doc);
rb.rsp.add("version", version.get());
}
/**
* A SearcherInfo provides mechanism for obtaining RT searcher, from
* a SolrCore, and closing it, while taking care of the RefCounted references.
*/
private static class SearcherInfo {
private RefCounted<SolrIndexSearcher> searcherHolder = null;
private SolrIndexSearcher searcher = null;
final SolrCore core;
public SearcherInfo(SolrCore core) {
this.core = core;
}
void clear(){
if (searcherHolder != null) {
// close handles to current searchers
searcher = null;
searcherHolder.decref();
searcherHolder = null;
}
}
void init(){
if (searcher == null) {
searcherHolder = core.getRealtimeSearcher();
searcher = searcherHolder.get();
}
}
public SolrIndexSearcher getSearcher() {
assert null != searcher : "init not called!";
return searcher;
}
}
/***
* Given a partial document obtained from the transaction log (e.g. as a result of RTG), resolve to a full document
* by populating all the partial updates that were applied on top of that last full document update.
*
* @param onlyTheseFields When a non-null set of field names is passed in, the resolve process only attempts to populate
* the given fields in this set. When this set is null, it resolves all fields.
* @return Returns the merged document, i.e. the resolved full document, or null if the document was not found (deleted
* after the resolving began)
*/
private static SolrDocument resolveFullDocument(SolrCore core, BytesRef idBytes,
ReturnFields returnFields, SolrInputDocument partialDoc, List logEntry, Set<String> onlyTheseFields) throws IOException {
if (idBytes == null || logEntry.size() != 5) {
throw new SolrException(ErrorCode.INVALID_STATE, "Either Id field not present in partial document or log entry doesn't have previous version.");
}
long prevPointer = (long) logEntry.get(UpdateLog.PREV_POINTER_IDX);
long prevVersion = (long) logEntry.get(UpdateLog.PREV_VERSION_IDX);
// get the last full document from ulog
UpdateLog ulog = core.getUpdateHandler().getUpdateLog();
long lastPrevPointer = ulog.applyPartialUpdates(idBytes, prevPointer, prevVersion, onlyTheseFields, partialDoc);
if (lastPrevPointer == -1) { // full document was not found in tlog, but exists in index
SolrDocument mergedDoc = mergePartialDocWithFullDocFromIndex(core, idBytes, returnFields, onlyTheseFields, partialDoc);
return mergedDoc;
} else if (lastPrevPointer > 0) {
// We were supposed to have found the last full doc also in the tlogs, but the prevPointer links led to nowhere
// We should reopen a new RT searcher and get the doc. This should be a rare occurrence
Term idTerm = new Term(core.getLatestSchema().getUniqueKeyField().getName(), idBytes);
SolrDocument mergedDoc = reopenRealtimeSearcherAndGet(core, idTerm, returnFields);
if (mergedDoc == null) {
return null; // the document may have been deleted as the resolving was going on.
}
return mergedDoc;
} else { // i.e. lastPrevPointer==0
assert lastPrevPointer == 0;
// We have successfully resolved the document based off the tlogs
return toSolrDoc(partialDoc, core.getLatestSchema());
}
}
/**
* Re-open the RT searcher and get the document, referred to by the idTerm, from that searcher.
* @return Returns the document or null if not found.
*/
private static SolrDocument reopenRealtimeSearcherAndGet(SolrCore core, Term idTerm, ReturnFields returnFields) throws IOException {
UpdateLog ulog = core.getUpdateHandler().getUpdateLog();
ulog.openRealtimeSearcher();
RefCounted<SolrIndexSearcher> searcherHolder = core.getRealtimeSearcher();
try {
SolrIndexSearcher searcher = searcherHolder.get();
int docid = searcher.getFirstMatch(idTerm);
if (docid < 0) {
return null;
}
Document luceneDocument = searcher.doc(docid, returnFields.getLuceneFieldNames());
SolrDocument doc = toSolrDoc(luceneDocument, core.getLatestSchema());
SolrDocumentFetcher docFetcher = searcher.getDocFetcher();
docFetcher.decorateDocValueFields(doc, docid, docFetcher.getNonStoredDVs(false));
return doc;
} finally {
searcherHolder.decref();
}
}
/**
* Gets a document from the index by id. If a non-null partial document (for in-place update) is passed in,
* this method obtains the document from the tlog/index by the given id, merges the partial document on top of it and then returns
* the resultant document.
*
* @param core A SolrCore instance, useful for obtaining a realtimesearcher and the schema
* @param idBytes Binary representation of the value of the unique key field
* @param returnFields Return fields, as requested
* @param onlyTheseFields When a non-null set of field names is passed in, the merge process only attempts to merge
* the given fields in this set. When this set is null, it merges all fields.
* @param partialDoc A partial document (containing an in-place update) used for merging against a full document
* from index; this maybe be null.
* @return If partial document is null, this returns document from the index or null if not found.
* If partial document is not null, this returns a document from index merged with the partial document, or null if
* document doesn't exist in the index.
*/
private static SolrDocument mergePartialDocWithFullDocFromIndex(SolrCore core, BytesRef idBytes, ReturnFields returnFields,
Set<String> onlyTheseFields, SolrInputDocument partialDoc) throws IOException {
RefCounted<SolrIndexSearcher> searcherHolder = core.getRealtimeSearcher(); //Searcher();
try {
// now fetch last document from index, and merge partialDoc on top of it
SolrIndexSearcher searcher = searcherHolder.get();
SchemaField idField = core.getLatestSchema().getUniqueKeyField();
Term idTerm = new Term(idField.getName(), idBytes);
int docid = searcher.getFirstMatch(idTerm);
if (docid < 0) {
// The document was not found in index! Reopen a new RT searcher (to be sure) and get again.
// This should be because the document was deleted recently.
SolrDocument doc = reopenRealtimeSearcherAndGet(core, idTerm, returnFields);
if (doc == null) {
// Unable to resolve the last full doc in tlog fully,
// and document not found in index even after opening new rt searcher.
// This must be a case of deleted doc
return null;
}
return doc;
}
SolrDocument doc;
Set<String> decorateFields = onlyTheseFields == null ? searcher.getDocFetcher().getNonStoredDVs(false): onlyTheseFields;
Document luceneDocument = searcher.doc(docid, returnFields.getLuceneFieldNames());
doc = toSolrDoc(luceneDocument, core.getLatestSchema());
searcher.getDocFetcher().decorateDocValueFields(doc, docid, decorateFields);
long docVersion = (long) doc.getFirstValue(VERSION_FIELD);
Object partialVersionObj = partialDoc.getFieldValue(VERSION_FIELD);
long partialDocVersion = partialVersionObj instanceof Field? ((Field) partialVersionObj).numericValue().longValue():
partialVersionObj instanceof Number? ((Number) partialVersionObj).longValue(): Long.parseLong(partialVersionObj.toString());
if (docVersion > partialDocVersion) {
return doc;
}
for (String fieldName: partialDoc.getFieldNames()) {
doc.setField(fieldName.toString(), partialDoc.getFieldValue(fieldName)); // since partial doc will only contain single valued fields, this is fine
}
return doc;
} finally {
if (searcherHolder != null) {
searcherHolder.decref();
}
}
}
public static SolrInputDocument DELETED = new SolrInputDocument();
/** returns the SolrInputDocument from the current tlog, or DELETED if it has been deleted, or
* null if there is no record of it in the current update log. If null is returned, it could
* still be in the latest index.
* @param versionReturned If a non-null AtomicLong is passed in, it is set to the version of the update returned from the TLog.
* @param resolveFullDocument In case the document is fetched from the tlog, it could only be a partial document if the last update
* was an in-place update. In that case, should this partial document be resolved to a full document (by following
* back prevPointer/prevVersion)?
*/
public static SolrInputDocument getInputDocumentFromTlog(SolrCore core, BytesRef idBytes, AtomicLong versionReturned,
Set<String> onlyTheseNonStoredDVs, boolean resolveFullDocument) {
UpdateLog ulog = core.getUpdateHandler().getUpdateLog();
if (ulog != null) {
Object o = ulog.lookup(idBytes);
if (o != null) {
// should currently be a List<Oper,Ver,Doc/Id>
List entry = (List)o;
assert entry.size() >= 3;
int oper = (Integer)entry.get(0) & UpdateLog.OPERATION_MASK;
if (versionReturned != null) {
versionReturned.set((long)entry.get(UpdateLog.VERSION_IDX));
}
switch (oper) {
case UpdateLog.UPDATE_INPLACE:
assert entry.size() == 5;
if (resolveFullDocument) {
SolrInputDocument doc = (SolrInputDocument)entry.get(entry.size()-1);
try {
// For in-place update case, we have obtained the partial document till now. We need to
// resolve it to a full document to be returned to the user.
SolrDocument sdoc = resolveFullDocument(core, idBytes, new SolrReturnFields(), doc, entry, onlyTheseNonStoredDVs);
if (sdoc == null) {
return DELETED;
}
doc = toSolrInputDocument(sdoc, core.getLatestSchema());
return doc;
} catch (IOException ex) {
throw new SolrException(ErrorCode.SERVER_ERROR, "Error while resolving full document. ", ex);
}
} else {
// fall through to ADD, so as to get only the partial document
}
case UpdateLog.ADD:
return (SolrInputDocument) entry.get(entry.size()-1);
case UpdateLog.DELETE:
return DELETED;
default:
throw new SolrException(SolrException.ErrorCode.SERVER_ERROR, "Unknown Operation! " + oper);
}
}
}
return null;
}
/**
* Obtains the latest document for a given id from the tlog or index (if not found in the tlog).
*
* NOTE: This method uses the effective value for avoidRetrievingStoredFields param as false and
* for nonStoredDVs as null in the call to @see {@link RealTimeGetComponent#getInputDocument(SolrCore, BytesRef, AtomicLong, boolean, Set, boolean)},
* so as to retrieve all stored and non-stored DV fields from all documents. Also, it uses the effective value of
* resolveFullDocument param as true, i.e. it resolves any partial documents (in-place updates), in case the
* document is fetched from the tlog, to a full document.
*/
public static SolrInputDocument getInputDocument(SolrCore core, BytesRef idBytes) throws IOException {
return getInputDocument (core, idBytes, null, false, null, true);
}
/**
* Obtains the latest document for a given id from the tlog or through the realtime searcher (if not found in the tlog).
* @param versionReturned If a non-null AtomicLong is passed in, it is set to the version of the update returned from the TLog.
* @param avoidRetrievingStoredFields Setting this to true avoids fetching stored fields through the realtime searcher,
* however has no effect on documents obtained from the tlog.
* Non-stored docValues fields are populated anyway, and are not affected by this parameter. Note that if
* the id field is a stored field, it will not be populated if this parameter is true and the document is
* obtained from the index.
* @param onlyTheseNonStoredDVs If not-null, populate only these DV fields in the document fetched through the realtime searcher.
* If this is null, decorate all non-stored DVs (that are not targets of copy fields) from the searcher.
* @param resolveFullDocument In case the document is fetched from the tlog, it could only be a partial document if the last update
* was an in-place update. In that case, should this partial document be resolved to a full document (by following
* back prevPointer/prevVersion)?
*/
public static SolrInputDocument getInputDocument(SolrCore core, BytesRef idBytes, AtomicLong versionReturned, boolean avoidRetrievingStoredFields,
Set<String> onlyTheseNonStoredDVs, boolean resolveFullDocument) throws IOException {
SolrInputDocument sid = null;
RefCounted<SolrIndexSearcher> searcherHolder = null;
try {
SolrIndexSearcher searcher = null;
sid = getInputDocumentFromTlog(core, idBytes, versionReturned, onlyTheseNonStoredDVs, resolveFullDocument);
if (sid == DELETED) {
return null;
}
if (sid == null) {
// didn't find it in the update log, so it should be in the newest searcher opened
if (searcher == null) {
searcherHolder = core.getRealtimeSearcher();
searcher = searcherHolder.get();
}
// SolrCore.verbose("RealTimeGet using searcher ", searcher);
SchemaField idField = core.getLatestSchema().getUniqueKeyField();
int docid = searcher.getFirstMatch(new Term(idField.getName(), idBytes));
if (docid < 0) return null;
SolrDocumentFetcher docFetcher = searcher.getDocFetcher();
if (avoidRetrievingStoredFields) {
sid = new SolrInputDocument();
} else {
Document luceneDocument = docFetcher.doc(docid);
sid = toSolrInputDocument(luceneDocument, core.getLatestSchema());
}
if (onlyTheseNonStoredDVs != null) {
docFetcher.decorateDocValueFields(sid, docid, onlyTheseNonStoredDVs);
} else {
docFetcher.decorateDocValueFields(sid, docid, docFetcher.getNonStoredDVsWithoutCopyTargets());
}
}
} finally {
if (searcherHolder != null) {
searcherHolder.decref();
}
}
if (versionReturned != null) {
if (sid.containsKey(VERSION_FIELD)) {
versionReturned.set((long)sid.getFieldValue(VERSION_FIELD));
}
}
return sid;
}
private static SolrInputDocument toSolrInputDocument(Document doc, IndexSchema schema) {
SolrInputDocument out = new SolrInputDocument();
for( IndexableField f : doc.getFields() ) {
String fname = f.name();
SchemaField sf = schema.getFieldOrNull(f.name());
Object val = null;
if (sf != null) {
if ((!sf.hasDocValues() && !sf.stored()) || schema.isCopyFieldTarget(sf)) continue;
val = sf.getType().toObject(f); // object or external string?
} else {
val = f.stringValue();
if (val == null) val = f.numericValue();
if (val == null) val = f.binaryValue();
if (val == null) val = f;
}
// todo: how to handle targets of copy fields (including polyfield sub-fields)?
out.addField(fname, val);
}
return out;
}
private static SolrInputDocument toSolrInputDocument(SolrDocument doc, IndexSchema schema) {
SolrInputDocument out = new SolrInputDocument();
for( String fname : doc.getFieldNames() ) {
SchemaField sf = schema.getFieldOrNull(fname);
if (sf != null) {
if ((!sf.hasDocValues() && !sf.stored()) || schema.isCopyFieldTarget(sf)) continue;
}
for (Object val: doc.getFieldValues(fname)) {
if (val instanceof Field) {
Field f = (Field) val;
if (sf != null) {
val = sf.getType().toObject(f); // object or external string?
} else {
val = f.stringValue();
if (val == null) val = f.numericValue();
if (val == null) val = f.binaryValue();
if (val == null) val = f;
}
}
out.addField(fname, val);
}
}
return out;
}
private static SolrDocument toSolrDoc(Document doc, IndexSchema schema) {
SolrDocument out = new SolrDocument();
for( IndexableField f : doc.getFields() ) {
// Make sure multivalued fields are represented as lists
Object existing = out.get(f.name());
if (existing == null) {
SchemaField sf = schema.getFieldOrNull(f.name());
// don't return copyField targets
if (sf != null && schema.isCopyFieldTarget(sf)) continue;
if (sf != null && sf.multiValued()) {
List<Object> vals = new ArrayList<>();
if (f.fieldType().docValuesType() == DocValuesType.SORTED_NUMERIC) {
// SORTED_NUMERICS store sortable bits version of the value, need to retrieve the original
vals.add(sf.getType().toObject(f)); // (will materialize by side-effect)
} else {
vals.add( materialize(f) );
}
out.setField( f.name(), vals );
}
else{
out.setField( f.name(), materialize(f) );
}
}
else {
out.addField( f.name(), materialize(f) );
}
}
return out;
}
/**
* Ensure we don't have {@link org.apache.lucene.document.LazyDocument.LazyField} or equivalent.
* It can pose problems if the searcher is about to be closed and we haven't fetched a value yet.
*/
private static IndexableField materialize(IndexableField in) {
if (in instanceof Field) { // already materialized
return in;
}
return new ClonedField(in);
}
private static class ClonedField extends Field { // TODO Lucene Field has no copy constructor; maybe it should?
ClonedField(IndexableField in) {
super(in.name(), in.fieldType());
this.fieldsData = in.numericValue();
if (this.fieldsData == null) {
this.fieldsData = in.binaryValue();
if (this.fieldsData == null) {
this.fieldsData = in.stringValue();
if (this.fieldsData == null) {
// fallback:
assert false : in; // unexpected
}
}
}
}
}
/**
* Converts a SolrInputDocument to SolrDocument, using an IndexSchema instance.
* @lucene.experimental
*/
public static SolrDocument toSolrDoc(SolrInputDocument sdoc, IndexSchema schema) {
// TODO: do something more performant than this double conversion
Document doc = DocumentBuilder.toDocument(sdoc, schema, false);
// copy the stored fields only
Document out = new Document();
for (IndexableField f : doc.getFields()) {
if (f.fieldType().stored()) {
out.add(f);
} else if (f.fieldType().docValuesType() != DocValuesType.NONE) {
SchemaField schemaField = schema.getFieldOrNull(f.name());
if (schemaField != null && !schemaField.stored() && schemaField.useDocValuesAsStored()) {
out.add(f);
}
} else {
log.debug("Don't know how to handle field {}", f);
}
}
return toSolrDoc(out, schema);
}
@Override
public int distributedProcess(ResponseBuilder rb) throws IOException {
if (rb.stage < ResponseBuilder.STAGE_GET_FIELDS)
return ResponseBuilder.STAGE_GET_FIELDS;
if (rb.stage == ResponseBuilder.STAGE_GET_FIELDS) {
return createSubRequests(rb);
}
return ResponseBuilder.STAGE_DONE;
}
public int createSubRequests(ResponseBuilder rb) throws IOException {
final IdsRequsted reqIds = IdsRequsted.parseParams(rb.req);
if (reqIds.allIds.isEmpty()) {
return ResponseBuilder.STAGE_DONE;
}
SolrParams params = rb.req.getParams();
// TODO: handle collection=...?
ZkController zkController = rb.req.getCore().getCoreContainer().getZkController();
// if shards=... then use that
if (zkController != null && params.get(ShardParams.SHARDS) == null) {
CloudDescriptor cloudDescriptor = rb.req.getCore().getCoreDescriptor().getCloudDescriptor();
String collection = cloudDescriptor.getCollectionName();
ClusterState clusterState = zkController.getClusterState();
DocCollection coll = clusterState.getCollection(collection);
Map<String, List<String>> sliceToId = new HashMap<>();
for (String id : reqIds.allIds) {
Slice slice = coll.getRouter().getTargetSlice(id, null, null, params, coll);
List<String> idsForShard = sliceToId.get(slice.getName());
if (idsForShard == null) {
idsForShard = new ArrayList<>(2);
sliceToId.put(slice.getName(), idsForShard);
}
idsForShard.add(id);
}
for (Map.Entry<String,List<String>> entry : sliceToId.entrySet()) {
String shard = entry.getKey();
ShardRequest sreq = createShardRequest(rb, entry.getValue());
// sreq.shards = new String[]{shard}; // TODO: would be nice if this would work...
sreq.shards = sliceToShards(rb, collection, shard);
sreq.actualShards = sreq.shards;
rb.addRequest(this, sreq);
}
} else {
ShardRequest sreq = createShardRequest(rb, reqIds.allIds);
sreq.shards = null; // ALL
sreq.actualShards = sreq.shards;
rb.addRequest(this, sreq);
}
return ResponseBuilder.STAGE_DONE;
}
/**
* Helper method for creating a new ShardRequest for the specified ids, based on the params
* specified for the current request. The new ShardRequest does not yet know anything about
* which shard/slice it will be sent to.
*/
private ShardRequest createShardRequest(final ResponseBuilder rb, final List<String> ids) {
final ShardRequest sreq = new ShardRequest();
sreq.purpose = 1;
sreq.params = new ModifiableSolrParams(rb.req.getParams());
// TODO: how to avoid hardcoding this and hit the same handler?
sreq.params.set(ShardParams.SHARDS_QT,"/get");
sreq.params.set(DISTRIB,false);
sreq.params.remove(ShardParams.SHARDS);
sreq.params.remove(ID);
sreq.params.remove("ids");
sreq.params.set("ids", StrUtils.join(ids, ','));
return sreq;
}
private String[] sliceToShards(ResponseBuilder rb, String collection, String slice) {
String lookup = collection + '_' + slice; // seems either form may be filled in rb.slices?
// We use this since the shard handler already filled in the slice to shards mapping.
// A better approach would be to avoid filling out every slice each time, or to cache
// the mappings.
for (int i=0; i<rb.slices.length; i++) {
log.info("LOOKUP_SLICE:" + rb.slices[i] + "=" + rb.shards[i]);
if (lookup.equals(rb.slices[i]) || slice.equals(rb.slices[i])) {
return new String[]{rb.shards[i]};
}
}
throw new SolrException(SolrException.ErrorCode.SERVER_ERROR, "Can't find shard '" + lookup + "'");
}
/***
private void handleRegularResponses(ResponseBuilder rb, ShardRequest sreq) {
}
***/
@Override
public void finishStage(ResponseBuilder rb) {
if (rb.stage != ResponseBuilder.STAGE_GET_FIELDS) {
return;
}
mergeResponses(rb);
}
private void mergeResponses(ResponseBuilder rb) {
SolrDocumentList docList = new SolrDocumentList();
for (ShardRequest sreq : rb.finished) {
// if shards=shard1,shard2 was used, then we query both shards for each id and
// can get more than one response
for (ShardResponse srsp : sreq.responses) {
SolrResponse sr = srsp.getSolrResponse();
NamedList nl = sr.getResponse();
SolrDocumentList subList = (SolrDocumentList)nl.get("response");
docList.addAll(subList);
}
}
addDocListToResponse(rb, docList);
}
/**
* Encapsulates logic for how a {@link SolrDocumentList} should be added to the response
* based on the request params used
*/
private void addDocListToResponse(final ResponseBuilder rb, final SolrDocumentList docList) {
assert null != docList;
final SolrQueryResponse rsp = rb.rsp;
final IdsRequsted reqIds = IdsRequsted.parseParams(rb.req);
if (reqIds.useSingleDocResponse) {
assert docList.size() <= 1;
// if the doc was not found, then use a value of null.
rsp.add("doc", docList.size() > 0 ? docList.get(0) : null);
} else {
docList.setNumFound(docList.size());
rsp.addResponse(docList);
}
}
////////////////////////////////////////////
/// SolrInfoBean
////////////////////////////////////////////
@Override
public String getDescription() {
return "query";
}
@Override
public Category getCategory() {
return Category.QUERY;
}
public void processGetFingeprint(ResponseBuilder rb) throws IOException {
TestInjection.injectFailIndexFingerprintRequests();
SolrQueryRequest req = rb.req;
SolrParams params = req.getParams();
long maxVersion = params.getLong("getFingerprint", Long.MAX_VALUE);
if (TestInjection.injectWrongIndexFingerprint()) {
maxVersion = -1;
}
IndexFingerprint fingerprint = IndexFingerprint.getFingerprint(req.getCore(), Math.abs(maxVersion));
rb.rsp.add("fingerprint", fingerprint);
}
///////////////////////////////////////////////////////////////////////////////////
// Returns last versions added to index
///////////////////////////////////////////////////////////////////////////////////
public void processGetVersions(ResponseBuilder rb) throws IOException
{
SolrQueryRequest req = rb.req;
SolrQueryResponse rsp = rb.rsp;
SolrParams params = req.getParams();
if (!params.getBool(COMPONENT_NAME, true)) {
return;
}
int nVersions = params.getInt("getVersions", -1);
if (nVersions == -1) return;
boolean doFingerprint = params.getBool("fingerprint", false);
String sync = params.get("sync");
if (sync != null) {
processSync(rb, nVersions, sync);
return;
}
UpdateLog ulog = req.getCore().getUpdateHandler().getUpdateLog();
if (ulog == null) return;
// get fingerprint first as it will cause a soft commit
// and would avoid mismatch if documents are being actively index especially during PeerSync
if (doFingerprint) {
IndexFingerprint fingerprint = IndexFingerprint.getFingerprint(req.getCore(), Long.MAX_VALUE);
rb.rsp.add("fingerprint", fingerprint);
}
try (UpdateLog.RecentUpdates recentUpdates = ulog.getRecentUpdates()) {
List<Long> versions = recentUpdates.getVersions(nVersions);
rb.rsp.add("versions", versions);
}
}
public void processSync(ResponseBuilder rb, int nVersions, String sync) {
boolean onlyIfActive = rb.req.getParams().getBool("onlyIfActive", false);
if (onlyIfActive) {
if (rb.req.getCore().getCoreDescriptor().getCloudDescriptor().getLastPublished() != Replica.State.ACTIVE) {
log.info("Last published state was not ACTIVE, cannot sync.");
rb.rsp.add("sync", "false");
return;
}
}
List<String> replicas = StrUtils.splitSmart(sync, ",", true);
boolean cantReachIsSuccess = rb.req.getParams().getBool("cantReachIsSuccess", false);
PeerSync peerSync = new PeerSync(rb.req.getCore(), replicas, nVersions, cantReachIsSuccess, true);
boolean success = peerSync.sync().isSuccess();
// TODO: more complex response?
rb.rsp.add("sync", success);
}
public void processGetUpdates(ResponseBuilder rb) throws IOException
{
SolrQueryRequest req = rb.req;
SolrQueryResponse rsp = rb.rsp;
SolrParams params = req.getParams();
if (!params.getBool(COMPONENT_NAME, true)) {
return;
}
String versionsStr = params.get("getUpdates");
if (versionsStr == null) return;
UpdateLog ulog = req.getCore().getUpdateHandler().getUpdateLog();
if (ulog == null) return;
// handle version ranges
List<Long> versions = null;
if (versionsStr.indexOf("...") != -1) {
versions = resolveVersionRanges(versionsStr, ulog);
} else {
versions = StrUtils.splitSmart(versionsStr, ",", true).stream().map(Long::parseLong)
.collect(Collectors.toList());
}
// find fingerprint for max version for which updates are requested
boolean doFingerprint = params.getBool("fingerprint", false);
if (doFingerprint) {
long maxVersionForUpdate = Collections.min(versions, PeerSync.absComparator);
IndexFingerprint fingerprint = IndexFingerprint.getFingerprint(req.getCore(), Math.abs(maxVersionForUpdate));
rb.rsp.add("fingerprint", fingerprint);
}
List<Object> updates = new ArrayList<>(versions.size());
long minVersion = Long.MAX_VALUE;
// TODO: get this from cache instead of rebuilding?
try (UpdateLog.RecentUpdates recentUpdates = ulog.getRecentUpdates()) {
for (Long version : versions) {
try {
Object o = recentUpdates.lookup(version);
if (o == null) continue;
if (version > 0) {
minVersion = Math.min(minVersion, version);
}
// TODO: do any kind of validation here?
updates.add(o);
} catch (SolrException | ClassCastException e) {
log.warn("Exception reading log for updates", e);
}
}
// Must return all delete-by-query commands that occur after the first add requested
// since they may apply.
updates.addAll(recentUpdates.getDeleteByQuery(minVersion));
rb.rsp.add("updates", updates);
}
}
private List<Long> resolveVersionRanges(String versionsStr, UpdateLog ulog) {
if (StringUtils.isEmpty(versionsStr)) {
return Collections.emptyList();
}
List<String> ranges = StrUtils.splitSmart(versionsStr, ",", true);
// TODO merge ranges.
// get all the versions from updatelog and sort them
List<Long> versionAvailable = null;
try (UpdateLog.RecentUpdates recentUpdates = ulog.getRecentUpdates()) {
versionAvailable = recentUpdates.getVersions(ulog.getNumRecordsToKeep());
}
// sort versions
Collections.sort(versionAvailable, PeerSync.absComparator);
// This can be done with single pass over both ranges and versionsAvailable, that would require
// merging ranges. We currently use Set to ensure there are no duplicates.
Set<Long> versionsToRet = new HashSet<>(ulog.getNumRecordsToKeep());
for (String range : ranges) {
String[] rangeBounds = range.split("\\.{3}");
int indexStart = Collections.binarySearch(versionAvailable, Long.valueOf(rangeBounds[1]), PeerSync.absComparator);
int indexEnd = Collections.binarySearch(versionAvailable, Long.valueOf(rangeBounds[0]), PeerSync.absComparator);
if(indexStart >=0 && indexEnd >= 0) {
versionsToRet.addAll(versionAvailable.subList(indexStart, indexEnd + 1)); // indexEnd is exclusive
}
}
// TODO do we need to sort versions using PeerSync.absComparator?
return new ArrayList<>(versionsToRet);
}
/**
* Simple struct for tracking what ids were requested and what response format is expected
* acording to the request params
*/
private final static class IdsRequsted {
/** An List (which may be empty but will never be null) of the uniqueKeys requested. */
public final List<String> allIds;
/**
* true if the params provided by the user indicate that a single doc response structure
* should be used.
* Value is meaninless if <code>ids</code> is empty.
*/
public final boolean useSingleDocResponse;
private IdsRequsted(List<String> allIds, boolean useSingleDocResponse) {
assert null != allIds;
this.allIds = allIds;
this.useSingleDocResponse = useSingleDocResponse;
}
/**
* Parsers the <code>id</code> and <code>ids</code> params attached to the specified request object,
* and returns an <code>IdsRequsted</code> struct to use for this request.
* The <code>IdsRequsted</code> is cached in the {@link SolrQueryRequest#getContext} so subsequent
* method calls on the same request will not re-parse the params.
*/
public static IdsRequsted parseParams(SolrQueryRequest req) {
final String contextKey = IdsRequsted.class.toString() + "_PARSED_ID_PARAMS";
if (req.getContext().containsKey(contextKey)) {
return (IdsRequsted)req.getContext().get(contextKey);
}
final SolrParams params = req.getParams();
final String id[] = params.getParams(ID);
final String ids[] = params.getParams("ids");
if (id == null && ids == null) {
IdsRequsted result = new IdsRequsted(Collections.<String>emptyList(), true);
req.getContext().put(contextKey, result);
return result;
}
final List<String> allIds = new ArrayList<>((null == id ? 0 : id.length)
+ (null == ids ? 0 : (2 * ids.length)));
if (null != id) {
for (String singleId : id) {
allIds.add(singleId);
}
}
if (null != ids) {
for (String idList : ids) {
allIds.addAll( StrUtils.splitSmart(idList, ",", true) );
}
}
// if the client specified a single id=foo, then use "doc":{
// otherwise use a standard doclist
IdsRequsted result = new IdsRequsted(allIds, (ids == null && allIds.size() <= 1));
req.getContext().put(contextKey, result);
return result;
}
}
/**
* A lite weight ResultContext for use with RTG requests that can point at Realtime Searchers
*/
private static final class RTGResultContext extends ResultContext {
final ReturnFields returnFields;
final SolrIndexSearcher searcher;
final SolrQueryRequest req;
public RTGResultContext(ReturnFields returnFields, SolrIndexSearcher searcher, SolrQueryRequest req) {
this.returnFields = returnFields;
this.searcher = searcher;
this.req = req;
}
/** @returns null */
public DocList getDocList() {
return null;
}
public ReturnFields getReturnFields() {
return this.returnFields;
}
public SolrIndexSearcher getSearcher() {
return this.searcher;
}
/** @returns null */
public Query getQuery() {
return null;
}
public SolrQueryRequest getRequest() {
return this.req;
}
/** @returns null */
public Iterator<SolrDocument> getProcessedDocuments() {
return null;
}
}
}
| [
"rodrigosoaresilva@gmail.com"
] | rodrigosoaresilva@gmail.com |
5c02a296ab366c78420f8756d1ccb786a58295a1 | ee6f9f357514b811430c1e99cbb52c60e136bf2a | /healthdemo/src/main/java/com/hand/hand/controller/DoctorController.java | b936dadffd7007996ae0da350c2a99226e46cab9 | [] | no_license | shuaishuaihand/health | 886c56455529a7a52bd4aea1804f8e6604616269 | ea2b3870207cd58c3e03350af141b2ee99b4909a | refs/heads/master | 2020-03-22T01:23:25.926262 | 2018-07-01T05:30:30 | 2018-07-01T05:30:30 | 139,302,350 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 3,610 | java | package com.hand.hand.controller;
import com.hand.hand.domain.Doctor;
import com.hand.hand.service.DoctorService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import com.github.pagehelper.Page;
import java.util.*;
/**
* Created by nishuai on 2017/11/12.
*/
@CrossOrigin
@RestController
public class DoctorController {
//注入Service服务对象
@Autowired
private DoctorService doctorService;
/**
* 查询所有医院信息(未分页)
*/
@RequestMapping(value = "findAllDoctor/{hid}",method = RequestMethod.GET)
public List<Doctor> findAllDoctor(@PathVariable Integer hid){
List<Doctor> doctorList= doctorService.findAllDoctor(hid);
return doctorList;
}
/**
* 查询所有医院信息(分页)
*/
@RequestMapping(value = "findAllDoctorPage/{hid}",method = RequestMethod.GET)
public Map<String,Object> findAllDoctorPage(@PathVariable Integer hid, @RequestParam Integer page,@RequestParam Integer size){
Page<Doctor> doctorListpage= doctorService.findAllDoctorPage(hid,page,size);
Map<String,Object> map= new HashMap<String,Object>();
map.put("pagedoctordata",doctorListpage);
map.put("total",doctorListpage.getTotal());
return map;
}
/**
* 添加单个医生信息
*/
@RequestMapping(value = "addDoctor",method = RequestMethod.POST) //post
public Doctor addDoctor(@RequestBody Doctor doctor){
/*Hospital hospital=new Hospital(null,"9","9");*/
// @RequestBody Doctor doctor
/* Doctor doctor=new Doctor();
doctor.setDname("蒯医生");
doctor.setIdnumber("1112");
System.out.println(doctor.getDname());
System.out.print(doctor.getIdnumber());*/
System.out.print(doctor.getDepartment().getDname()+"name");
Doctor resultdoctor= doctorService.addDoctor(doctor);
return resultdoctor;
}
/**
* 根据id删除医院信息
*/
@RequestMapping(value = "deleteDoctor/{id}",method = RequestMethod.DELETE) //delete
public int deleteDoctor(@PathVariable Integer id){
return doctorService.deleteDoctor(id);
}
/**
* 根据id查询医生信息
*/
@RequestMapping(value = "getDoctorById/{id}",method = RequestMethod.GET)
public Doctor getDoctorById(@PathVariable Integer id){
/* *//**//*/
Integer hid=104;*/
Doctor doctor=doctorService.getDoctorById(id);
System.out.print( doctor.getDepartment().getDname()+"deptname");
return doctor;
}
/**
* 编辑单个医院信息
*/
@RequestMapping(value = "editDoctor",method = RequestMethod.PUT) //put
public Doctor editDoctor(@RequestBody Doctor doctor){
System.out.println("1111111111111"+doctor.getDepartment().getDid()+"1111111111111");
/* Hospital hospital=new Hospital(104,"name1","grade","address",11,22,"introduce");*/
Doctor resultdoctor= doctorService.editDoctor(doctor);
System.out.print(resultdoctor.getDepartment().getDname()+"deptname");
return resultdoctor;
}
/**
* 根据id,name,idnumber,practicenumber,professionaltitle,gender,phone,speciality,introduce,age等医生字段,模糊查询医生信息
*/
@RequestMapping(value = "getDoctorLike/{selectword}",method = RequestMethod.GET)
public List<Doctor> getDoctorLike(@PathVariable String selectword){
List<Doctor> doctors=doctorService.getDoctorLike(selectword);
return doctors;
}
}
| [
"nishuai@example.com"
] | nishuai@example.com |
795d145d819b6abada85042edbb1b509e8a1511e | 01a6b9bf33d2091737d504022e0ca4b2198f15aa | /src/main/java/com/vironit/pharmacy/controller/medicine/adminAccess/AdminControllerEffectToUseMedicine.java | acd3ca268486cd4808732f6788ce54d763d8e701 | [] | no_license | YDzmitry/Pharmacy | 4e4bc62e098256b291c3ab506615fbba55727aa4 | 61e5cc15599eb3ad8a7cf8df691fcb0166cc024b | refs/heads/master | 2020-03-11T14:36:30.574161 | 2018-06-12T12:47:11 | 2018-06-12T12:47:11 | 130,059,673 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,285 | java | package com.vironit.pharmacy.controller.medicine.adminAccess;
import com.vironit.pharmacy.model.medicine.EffectToUse;
import com.vironit.pharmacy.service.adminService.AdminServiceEffectToUse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
@CrossOrigin
@RestController
public class AdminControllerEffectToUseMedicine {
@Autowired
AdminServiceEffectToUse adminServiceEffectToUse;
@PostMapping("/admin/effectToUse/save")
public ResponseEntity<?> saveIndicatorToUse(@RequestBody EffectToUse effectToUse) {
long id = adminServiceEffectToUse.save(effectToUse);
return ResponseEntity.ok().body(id);
}
@PutMapping("/admin/effectToUse/update/{id}")
public ResponseEntity<?> updateManufacture(@PathVariable("id") long id, @RequestBody EffectToUse effectToUse) {
adminServiceEffectToUse.update(effectToUse);
return ResponseEntity.ok().body(id);
}
@DeleteMapping("/admin/effectToUse/delete/{id}")
public ResponseEntity<?> deleteManufacture(@PathVariable("id") long id) {
adminServiceEffectToUse.delete(id);
return ResponseEntity.ok().body("IndicatorToUse has been deleted" + id);
}
}
| [
"yanusikdima@yandex.ru"
] | yanusikdima@yandex.ru |
e1b3b565051dcc8e04bbd51e67653721633caad4 | 11a2decd99d782809e8023bdfa9942003db8ae16 | /app/src/main/java/com/logix/symphony/onItemClickListener.java | 08362c60e62525543703c015f71944dad4f527ac | [] | no_license | aakash17kc/Symphony | 916f3b94232ae81f49357d5766a334982417210c | ee92d93e779342fad3c0211d81bb547ba50e5890 | refs/heads/master | 2022-09-16T07:07:08.882441 | 2022-08-28T16:34:57 | 2022-08-28T16:34:57 | 176,552,859 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 193 | java | package com.logix.symphony;
import android.view.View;
/**
* Created by Valdio Veliu on 16-08-06.
*/
public interface onItemClickListener {
public void onClick(View view, int index);
}
| [
"aakash17.kc@gmail.com"
] | aakash17.kc@gmail.com |
e7f8643dca6bb578847966d20c83fb5f015322ef | 18da61c9913642d3f4a8d982e2963df9b5a40df3 | /spring-boot-api/src/main/java/io/sample/springbootapi/resource/InvalidErrorResource.java | 091439c6e327e1b55987f6bd5eb7d6b0f66e1674 | [] | no_license | kickccat/SpringBoot2 | 85a0957743841951c78d80b95cf6777233252487 | 2f5ac4275ceca62459bfef5fe5dd54023f2f2cd0 | refs/heads/master | 2020-03-24T07:41:08.708894 | 2018-09-21T13:02:58 | 2018-09-21T13:02:58 | 142,571,791 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 226 | java | package io.sample.springbootapi.resource;
import lombok.AllArgsConstructor;
import lombok.Getter;
@AllArgsConstructor
@Getter
public class InvalidErrorResource {
private String message;
private Object errors;
}
| [
"kickccat@hotmail.com"
] | kickccat@hotmail.com |
0cbd7ab23dcd94bb3080db04152ebef3f9a2e422 | ce5b1a659a4f93d80724aea923bdd46b8c1585cb | /games/src/com/zhc/sys/service/SysRoleServiceImpl.java | 4c7ef0c3e98d886040dfa0f4e7c6a303a5aeec72 | [] | no_license | zhangchong5566/MyGroup | 9b3c210abfae39f08519b17911abdc10cc840725 | a957a7d60a616f3ef07e3d0c306199826cf4f2fd | refs/heads/master | 2021-01-19T02:18:58.721741 | 2017-06-14T06:09:44 | 2017-06-14T06:09:44 | 39,106,218 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,369 | java | package com.zhc.sys.service;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.lang3.StringUtils;
import com.zhc.sys.entity.SysRole;
import com.zhc.sys.entity.SysRoleToSysMenu;
import com.zhc.sys.service.base.BaseJpaService;
import com.zhc.sys.service.base.Pages;
public class SysRoleServiceImpl extends BaseJpaService implements SysRoleService {
@Override
public List<SysRole> listRole(SysRole bean, Pages pages) {
String jpql = "from SysRole where 1=1";
List params = new ArrayList();
if(bean != null){
if(StringUtils.isNotBlank(bean.getDescription())){
jpql += " and description=?";
params.add(bean.getDescription());
}
}
String countJpql = "select count(id) "+jpql;
String queryJpql = "select new SysRole(id,name,description) "+jpql;
if(pages != null){
return super.queryByJPQL(countJpql, queryJpql, params.toArray(), pages);
}else{
return super.queryByJPQL(queryJpql, params.toArray());
}
}
@Override
public void saveRoleToMenu(SysRole sysrole, List<SysRoleToSysMenu> rmList) {
String jpql = "delete SysRoleToSysMenu where id.sysrole.id="+sysrole.getId();
super.executeJPQL(jpql);
if(rmList != null){
for(SysRoleToSysMenu rm : rmList){
super.getEntityManager().persist(rm);
}
}
}
}
| [
"zhangchong5566@aliyun.com"
] | zhangchong5566@aliyun.com |
7d377fc8aac541a95cd0ad24ccfcd2d733077472 | 308eb5b90954a5946684dd64056d22511164fdec | /Sonnenbrand/src/PropertiesBeispiel.java | fed92af076cdf525a5b4d435a5f6541b526e2611 | [] | no_license | PhilippJakob/LK_TI_17 | 5b31c5d89323466f9f8da2f8a264aa0821ac5b55 | 29632649041a09b1451c14992fa8adcce3b4336e | refs/heads/master | 2021-01-16T21:50:57.649467 | 2016-08-07T11:21:35 | 2016-08-07T11:21:35 | 64,925,273 | 0 | 0 | null | 2016-08-07T11:29:11 | 2016-08-04T10:19:44 | HTML | ISO-8859-1 | Java | false | false | 1,103 | java | /* 2.8.2016 Hr.Jakob
*
*/
import javafx.application.Application;
import javafx.application.Platform;
import javafx.beans.binding.Bindings;
import javafx.beans.binding.NumberBinding;
import javafx.beans.property.DoubleProperty;
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.SimpleDoubleProperty;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.scene.paint.Color;
import javafx.stage.Stage;
public class PropertiesBeispiel extends Application {
public static void main(String[] args) throws Exception {
launch(args);
}
/** Beispiel: Ein Mann sonnt sich und beobachtet dabei seine sich verändernde Bräunung.
*
* @see javafx.application.Application#start(javafx.stage.Stage)
*/
@Override
public void start(Stage primaryStage)
{
Mann lDummerMann = new Mann(); //Ein absolut dummer Mann würde überhaupt nicht darauf achten, ob er einen Sonnenbrand bekommt.
lDummerMann.stellenSonnenwecker();
lDummerMann.sonnen();
}
}
| [
"jakob@osztiem.de"
] | jakob@osztiem.de |
75661dda2ad72b50f4405871b5761eaa164b97e5 | 57e0bb6df155a54545d9cee8f645a95f3db58fd2 | /src/by/it/vshchur/at22/connection/ConnectionCreator.java | 3be31a1f504d9d50aeb0b94a31222750cec3d809 | [] | no_license | VitaliShchur/AT2019-03-12 | a73d3acd955bc08aac6ab609a7d40ad109edd4ef | 3297882ea206173ed39bc496dec04431fa957d0d | refs/heads/master | 2020-04-30T23:28:19.377985 | 2019-08-09T14:11:52 | 2019-08-09T14:11:52 | 177,144,769 | 0 | 0 | null | 2019-05-15T21:22:32 | 2019-03-22T13:26:43 | Java | UTF-8 | Java | false | false | 180 | java | package by.it.vshchur.at22.connection;
import java.sql.Connection;
import java.sql.SQLException;
public interface ConnectionCreator {
Connection get() throws SQLException;
}
| [
"vitali.shchur@gmail.com"
] | vitali.shchur@gmail.com |
613dfc50888697af3f51fc41d0704e0649d18149 | 0eb068d01e31fc1905da53535bccd8733d6b6858 | /app/src/main/java/accessweb/com/br/radiocontrole/adapter/PromocoesAdapter.java | 16f8941f5017d91f09cf87f44a4376fa0fec0cd2 | [] | no_license | sanztss/RadioControle | 7bdc961e5adb84d93fa4125307dc214e1af899db | 8e31cd0b9ecb4a7310bad67c71f3a14763ed926b | refs/heads/master | 2020-06-27T05:03:37.770275 | 2017-09-05T13:30:49 | 2017-09-05T13:30:49 | 94,243,094 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,276 | java | package accessweb.com.br.radiocontrole.adapter;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.DialogFragment;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.RecyclerView;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.TextView;
import com.squareup.picasso.Picasso;
import java.io.Serializable;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Locale;
import accessweb.com.br.radiocontrole.R;
import accessweb.com.br.radiocontrole.activity.ForgotPasswordActivity;
import accessweb.com.br.radiocontrole.activity.PromocaoActivity;
import accessweb.com.br.radiocontrole.model.Promocao;
import static java.security.AccessController.getContext;
/**
* Created by Des. Android on 29/06/2017.
*/
public class PromocoesAdapter extends RecyclerView.Adapter<PromocoesAdapter.MyViewHolder> {
List<Promocao> data = Collections.emptyList();
private LayoutInflater inflater;
private Context context;
public PromocoesAdapter(Context context, List<Promocao> data) {
this.context = context;
inflater = LayoutInflater.from(context);
this.data = data;
}
@Override
public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = inflater.inflate(R.layout.promocao_row, parent, false);
MyViewHolder holder = new MyViewHolder(view);
return holder;
}
@Override
public void onBindViewHolder(final MyViewHolder holder, final int position) {
final Promocao current = data.get(position);
Picasso.with(context)
.load(current.getImagemPromocao())
.placeholder(R.drawable.picture)
.error(R.drawable.picture)
.into(holder.imagemPromocao);
holder.tituloPromocao.setText(current.getTituloPromocao());
String string = "04/08/2017";
/*DateFormat format = new SimpleDateFormat("dd/MM/yyy", Locale.ENGLISH);
Date date = null;
try {
date = format.parse(string);
System.out.println(date);
} catch (ParseException e) {
e.printStackTrace();
}*/
holder.dataEncerramentoPromocao.setText(current.getDataEncerramentoPromocao());
holder.dataSorteioPromocao.setText(current.getDataSorteioPromocao());
/*if (current.getParticipando()){
holder.participando.setVisibility(View.VISIBLE);
}else {
holder.participando.setVisibility(View.GONE);
}*/
holder.btnCompartilhar.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Log.v("Click", "Botão Compartilhar.");
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "No dia " + current.getDataEncerramentoPromocao() + " encerrará a promoção " + current.getTituloPromocao() + ", venha participar comigo, baixe já o aplicativo Rádio controle:\nVersão Android: https://play.google.com/store/apps/details?id=br.com.devmaker.radiocontroletest\nVersão iOS: https://itunes.apple.com/us/app/access-mobile-rádio-controle/id905070426?mt=8");
sendIntent.setType("text/plain");
context.startActivity(Intent.createChooser(sendIntent,"Compartilhar no:" ));
}
});
holder.itemView.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Log.v("Click", "Click Item");
Intent intent = new Intent(context, PromocaoActivity.class);
intent.putExtra("posicao", position);
intent.putExtra("lista", (Serializable) data);
context.startActivity(intent);
}
});
}
@Override
public int getItemCount() {
return this.data == null ? 0 : this.data.size();
}
class MyViewHolder extends RecyclerView.ViewHolder {
ImageView imagemPromocao;
TextView tituloPromocao;
TextView dataEncerramentoPromocao;
TextView dataSorteioPromocao;
TextView participando;
ImageButton btnCompartilhar;
public MyViewHolder(View itemView) {
super(itemView);
imagemPromocao = (ImageView) itemView.findViewById(R.id.imagemPromocao);
tituloPromocao = (TextView) itemView.findViewById(R.id.tituloPromocao);
dataEncerramentoPromocao = (TextView) itemView.findViewById(R.id.dataEncerramentoPromocao);
dataSorteioPromocao = (TextView) itemView.findViewById(R.id.dataSorteioPromocao);
participando = (TextView) itemView.findViewById(R.id.participando);
btnCompartilhar = (ImageButton) itemView.findViewById(R.id.btnCompartilhar);
}
}
}
| [
"sanztss@gmail.com"
] | sanztss@gmail.com |
0b05d09ca49939656d1cea01e33f73ac6ce47704 | 1114fe9fe280cfd4ae582983348c9ccfd16b1fdd | /src/main/java/business/interfaces/CommentService.java | cae6dff3637a0c0e3771595fbfa67c2805f794fc | [] | no_license | zebybez/JEA | ad1ea6401e38cf71676aa63f8768063b518db26b | 158c02fd21ad4eb091532c92f747cea56cfd637c | refs/heads/master | 2020-04-20T22:28:18.774450 | 2019-06-20T01:19:03 | 2019-06-20T01:19:03 | 169,140,704 | 0 | 1 | null | 2019-06-20T01:19:04 | 2019-02-04T20:03:23 | Java | UTF-8 | Java | false | false | 66 | java | package business.interfaces;
public interface CommentService {
}
| [
"zebybez@gmail.com"
] | zebybez@gmail.com |
5716d3be3f6c8d118951224a67a9e27e0296bf4e | aca143e0958b0762e97faccd7a71f4dafe9d4484 | /25. K 个一组翻转链表.java | f700a74b1406210b474e18c26e0fe95e3f985829 | [] | no_license | xiadahuo/bytedance | 0692a59cf0e8702dbc48522f26f2d9d65566d25b | 41e5950277580e90f10cb71ea03aa9761b388d49 | refs/heads/master | 2022-08-25T00:10:14.777430 | 2020-05-25T14:45:48 | 2020-05-25T14:45:48 | 265,868,717 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,220 | java | /**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode reverseKGroup(ListNode head, int k) {
if(head == null || k <= 0) return null;
ListNode dummy = new ListNode(0);
dummy.next = head;
ListNode curNode = dummy;
ListNode preNode = dummy;
while(curNode != null){
int n = k+1;
while(n > 0 && curNode != null){
curNode = curNode.next;
n--;
}
if(n == 0) {
reverse(preNode, curNode);
n = k;
while(n > 0){
preNode = preNode.next;
n--;
}
curNode = preNode;
}
}
return dummy.next;
}
public void reverse(ListNode preHead, ListNode tailNext){
ListNode cur = preHead.next;
preHead.next = tailNext;
while(cur != tailNext){
ListNode nextNode = cur.next;
cur.next = preHead.next;
preHead.next = cur;
cur = nextNode;
}
}
}
| [
"sunchao09091@hellobike.com"
] | sunchao09091@hellobike.com |
5d792d3e0036c11852bb6b8b7b3ffbd944ccde89 | 6bfd7ded89cb000a36208a2727dcbdf1772db4b4 | /jWise/test/ngpanwei/jWise/test/PairTest.java | b3c7b4f43e7addb156522d04f9341cf5356dd6e8 | [] | no_license | ngpanwei/jtools | 672ab91e86d4896d8f21b7e9af22eb88bed6749b | df8b51cc7ea6ea5d97f0244fe1d6caae19630805 | refs/heads/master | 2021-05-15T01:39:08.572800 | 2018-12-30T08:37:32 | 2018-12-30T08:37:32 | 19,488,138 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,405 | java | /**
* Copyright (c) 2010 Ng Pan Wei
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package ngpanwei.jWise.test;
import java.util.Vector;
import junit.framework.TestCase;
import ngpanwei.jWise.algorithm.basic.BasicAlgorithm;
import ngpanwei.jWise.core.Combination;
import ngpanwei.jWise.core.CombinationTable;
import ngpanwei.jWise.core.Dimension;
import ngpanwei.jWise.core.Domain;
import ngpanwei.jWise.core.Generator;
import org.junit.Test;
/***
* Test chttps://github.com/ngpanwei/examples.gitase to test the core generator algorithm.
*
* @author panwei
*
*/
public class PairTest extends TestCase {
public PairTest() {
}
/***
* Test case #1 to generate the combinations.
*/
@Test
public void testGeneratePair() {
Domain domain = new Domain();
String a[] = { "A1", "A2", "A3" , "A4" };
String b[] = { "B1", "B2", "B3" };
String c[] = { "C1", "C2" };
domain.add(new Dimension("A", a));
domain.add(new Dimension("B", b));
domain.add(new Dimension("C", c));
executePairGeneration(domain);
}
/***
* Exactly the same as Test case #1, but using a simpler API
* with the help of variable arguments.
*/
@Test
public void testGeneratePair_usingVariableArg() {
Domain domain = new Domain();
domain.add("A", "A1", "A2", "A3");
domain.add("B", "B1", "B2", "B3");
domain.add("C", "C1", "C2");
executePairGeneration(domain);
}
/***
* Test Case #2 that generates pair wise combinations that
* include some required combinations.
*/
@Test
public void testGeneratePair2D() {
Domain domain = new Domain();
domain.add("A", "A1","A2");
domain.add("B", "B1","B2");
domain.add("C", "C1", "C2");
Vector<Combination> requiredList = new Vector<Combination>() ;
requiredList.add(Combination.create("A2","B2","C2")) ;
requiredList.add(Combination.create("A1","B2","C1")) ;
executePairGeneration(domain,requiredList);
}
/**
* Generates pairwise combinations in a domain that includes some required
* combinations.
* @param domain variable domains.
* @param requiredList required combinations of values.
* @return Combinations
*/
private CombinationTable executePairGeneration(Domain domain,Vector<Combination> requiredList) {
Generator generator = new Generator(domain);
generator.verbose = false;
generator.generate(new BasicAlgorithm(5), 2, requiredList);
CombinationTable combinations = generator.result();
assertEquals(generator.span(), combinations.span());
for(Dimension dim :domain.getDimensions()) {
System.err.print(Combination.SEPARATOR+ dim.name) ;
}
System.err.println(Combination.SEPARATOR) ;
printCombinations(generator);
return combinations ;
}
private void printCombinations(Generator generator) {
for (Combination entry : generator.result().combinations()) {
System.err.println(Combination.SEPARATOR
+ entry.getKey() + Combination.SEPARATOR);
}
System.err.println(generator.result().combinations().size()
+ " combinations.");
}
/**
* Wrapper for helper function that has null required combinations.
* @param domain
* @return
*/
private CombinationTable executePairGeneration(Domain domain) {
return executePairGeneration(domain,null) ;
}
}
| [
"dev@ngpanwei.com"
] | dev@ngpanwei.com |
8a0ef11b27eb63eb90d545593eb1c8faa2976b02 | 7c4feea022fd7d67351a55f521201a585aae21ef | /OpenVC/TestCV 矩形处理.java | e40b514801b874be3060e4ba8c4632e5f61711d9 | [] | no_license | stoull/Notebook | 40101c21967a43ec3f8d120e5927a4d85d08b395 | a4d55b6434d364bd720f11e16de6eb04d39cd22f | refs/heads/master | 2023-08-19T22:30:38.851933 | 2023-08-14T12:18:49 | 2023-08-14T12:18:49 | 93,300,812 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 6,949 | java | package com.lk;
import org.opencv.core.*;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.imgproc.Imgproc;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
public class TestCV {
public static final Scalar FILL_COLOR = new Scalar(222,222,222); // 色块的 填充颜色
public static final Scalar TEXT_COLOR = new Scalar(1,1,255); // 图片标记的字体的 颜色
public static String PIC_BASE = "D:\\0clr\\"; // APP 的图片本地存储路径
public static final String AWS_PREFIX = "aws_"; // 答案图片的 前缀
static Scalar ffcolor = new Scalar(222, 222, 222);
static int fontFace = 1;
static int thickness = 1;
private static int scale = 3;// 图像的 缩放比例
public static final double MIN_AREA = 300*scale;// 色块的 最小面积
// 当图片的大小是 550* 600 的时候, 行间距大概是10px, MAX_LINE_THICKNESS 为4或5 比较合适。 如果图像很大,则可以适当设置大一些
public static int MAX_LINE_THICKNESS = 4*scale; // 行间距的最小值。
static String imgSuffix = ".jpg";
static String fname = "";
static {
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
}
public static void main(String[] args) {
// testBUG();
testSingle("D:\\0clr\\aa.jpg");
testSingle("D:\\0clr\\bb.jpg");
testSingle("D:\\0clr\\cc.jpg");
testSingle("D:\\0clr\\dd.jpg");
}
private static void testBUG() {
String imgPath = "D:\\0clr\\b.jpg";
imgPath = "D:\\0clr\\c.jpg";
String color = "orange";
testXX(imgPath, color);
color = "cyan";
testXX(imgPath, color);
imgPath = "D:\\0clr\\d.jpg";
color = "orange";
testXX(imgPath, color);
color = "cyan";
testXX(imgPath, color);
}
private static void testSingle(String imgPath) {
// String imgPath = "D:\\0clr\\f.jpg";
String color = "red";
testXX(imgPath, color);
color = "green";
testXX(imgPath, color);
color = "purple";
testXX(imgPath, color);
color = "yellow";
testXX(imgPath, color);
color = "orange";
testXX(imgPath, color);
color = "cyan";
testXX(imgPath, color);
}
private static void testXX(String imgPath, String color) {
System.out.println("imgPath = [" + imgPath + "], color = [" + color + "]");
fname = "ret_"+color+ "_"+getImgName(imgPath);
PIC_BASE = "D:\\0clr\\" + color + File.separator;
File dir = new File(PIC_BASE);
if (!dir.exists()) {
dir.mkdir();
} else {
}
Mat src = Imgcodecs.imread(imgPath, Imgcodecs.CV_LOAD_IMAGE_COLOR);
Mat hsvImage = new Mat();
Imgproc.cvtColor(src, hsvImage, Imgproc.COLOR_BGR2HSV);
Mat mask = new Mat();
Scalar[] hsvRange = getHSVRange(color);
Scalar lowerb = hsvRange[0];
Scalar upperb = hsvRange[1];
// 获取范围
Core.inRange(hsvImage, lowerb, upperb, mask);
double thresh = 123.0;
Mat thresholdOutput = new Mat();
// 二值化
Imgproc.threshold(mask, thresholdOutput, thresh, 255, 3);
// 闭合图形
Mat close_mask = close(MAX_LINE_THICKNESS, thresholdOutput);
// 找到轮廓, 并挖出轮廓, 填充 轮廓。
findcontour(close_mask, src);
// 保存 被挖出色块的 原图。
String destImg = PIC_BASE + fname;
Imgcodecs.imwrite(destImg, src);
}
public static String getImgName(String imgPath) {
return imgPath.substring(imgPath.lastIndexOf(File.separator)+1);
}
public static void findcontour(Mat maskedImage, Mat frame) {
List<MatOfPoint> contours = new ArrayList<>();
Mat hierarchy = new Mat();
// find contours
Imgproc.findContours(maskedImage, contours, hierarchy, Imgproc.RETR_EXTERNAL, Imgproc.CHAIN_APPROX_SIMPLE);
// if any contour exist...
int contoursize = contours.size()-1;
if (hierarchy.size().height > 0 && hierarchy.size().width > 0)
{
int cnt = 1;
for (int idx = 0; idx >= 0; idx = (int) hierarchy.get(0, idx)[0])
{
MatOfPoint points = contours.get(contoursize - idx);
Rect rect = Imgproc.boundingRect(points);
double contourArea = Imgproc.contourArea(points);
contourArea = rect.area();
if (contourArea < MIN_AREA) {
continue;
}
// 单独 保存一个个的 色块
Mat newMat = new Mat(frame, rect);
String destImg = PIC_BASE + AWS_PREFIX + (cnt) + imgSuffix;
// String destImg = PIC_BASE + fname + (cnt) + imgSuffix;;// 测试的时候, 可以把AWS_PREFIX 换成 fname
Imgcodecs.imwrite(destImg, newMat);
// 填充原图
newMat.setTo(ffcolor);
Point pos = new Point(rect.tl().x + 2, rect.tl().y + 11);
// 色块 编号, 可选。
Imgproc.putText(frame, ""+(cnt), pos, fontFace, scale, TEXT_COLOR, thickness);
cnt++;
}
}
}
private static Mat close(double kenelSize, Mat src) {
// TODO Auto-generated method stub
Mat element = Imgproc.getStructuringElement(Imgproc.MORPH_RECT, new Size(kenelSize, kenelSize));
Mat dst = new Mat(src.rows(), src.cols(), CvType.CV_8UC3);
// Imgproc.dilate(src, dst, element);
Imgproc.morphologyEx(src, dst, Imgproc.MORPH_CLOSE, element);
return dst;
}
public static Scalar RGB2HSV(int rr,int gg,int bb) {
float r = rr;
float g =gg;
float b = bb;
float max = max(r, g, b);
float min = min(r, g, b);
float h = 0;
if (max == min)
h = 0;
else if (r == max && g >= b)
h = (g - b) / (max - min) * 60;
else if (r == max && g < b)
h = (g - b) / (max - min) + 360;
else if (g == max)
h = (b - r) / (max - min) * 60 + 120;
else if (b == max)
h = (r - g) / (max - min) * 60 + 240;
float s = (max - min) / max;
if (max == 0)
s = 0;
Scalar hsv = new Scalar(h, s, max/255);
return hsv;
}
private static float max(float r, float g, float b) {
return Math.max(r, Math.max(g, b));
}
private static float min(float r, float g, float b) {
return Math.min(r, Math.min(g, b));
}
private static Scalar[] getHSVRange(String color) {
Scalar[] hsv = new Scalar[2];
switch (color) {
case "red":
hsv[0] = new Scalar(165, 69, 66);
hsv[1] = new Scalar(170, 255, 255);
break;
case "orange":
hsv[0] = new Scalar(11, 43, 46);
hsv[1] = new Scalar(25, 255, 255);
break;
case "yellow":
// hsv[0] = new Scalar(26, 43, 46);
// hsv[1] = new Scalar(34, 255, 255);
hsv[0] = new Scalar(29, 105, 115);
hsv[1] = new Scalar(38, 225, 225);
break;
case "green":
hsv[0] = new Scalar(50, 43, 46);
hsv[1] = new Scalar(70, 225, 225);
break;
case "cyan":
hsv[0] = new Scalar(89, 43, 46);
hsv[1] = new Scalar(95, 225, 225);
break;
case "blue":
hsv[0] = new Scalar(100, 43, 46);
hsv[1] = new Scalar(124, 225, 225);
break;
case "purple":
hsv[0] = new Scalar(125, 43, 46);
hsv[1] = new Scalar(155, 225, 225);
break;
default:
break;
}
return hsv;
}
}
| [
"chencc@linkapp.cn"
] | chencc@linkapp.cn |
9e34264d12a18a4fb25d040e20fa98bb3476a388 | c4ce3e9115cd393eca4152dadf0178ab813c7851 | /99.Java/demo/src/main/java/com/example/demo/controller/HomeController.java | 176d5fade555f573649a1269a2cff9adbf740bb1 | [] | no_license | ckiekim/TIL | 2314cbfd304d60240ece879a0e405ec4dd73e386 | bc77e2c9e8d10757ee07c6c6c4d3c08f8539d376 | refs/heads/master | 2023-02-20T16:59:54.805208 | 2023-02-08T09:00:49 | 2023-02-08T09:00:49 | 188,774,191 | 0 | 2 | null | 2019-05-27T05:28:57 | 2019-05-27T05:05:51 | null | UTF-8 | Java | false | false | 258 | java | package com.example.demo.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class HomeController {
@GetMapping("/")
public String home() {
return "home";
}
}
| [
"ckiekim@naver.com"
] | ckiekim@naver.com |
ea601c170234dfff3a859c802f80a265a4b0dec0 | e58e84d07f7c1096237475f79ebbe5496f539c5c | /android/build/generated/r/android/support/v7/recyclerview/R.java | 89ebe3b9489c819e8b0ec88a14f8456da291a179 | [] | no_license | appcelerator-forks/pdfview | bb3742953c430c9b193ea58ca0e0002973ed762f | 19c8c0170be4737f1ae3c51d1a7e322e19a09945 | refs/heads/master | 2020-04-26T20:18:48.277724 | 2019-03-04T11:17:55 | 2019-03-04T11:17:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 665,377 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package android.support.v7.recyclerview;
public final class R {
public static final class anim {
public static int abc_fade_in=0x7f040000;
public static int abc_fade_out=0x7f040001;
public static int abc_grow_fade_in_from_bottom=0x7f040002;
public static int abc_popup_enter=0x7f040003;
public static int abc_popup_exit=0x7f040004;
public static int abc_shrink_fade_out_from_bottom=0x7f040005;
public static int abc_slide_in_bottom=0x7f040006;
public static int abc_slide_in_top=0x7f040007;
public static int abc_slide_out_bottom=0x7f040008;
public static int abc_slide_out_top=0x7f040009;
public static int abc_tooltip_enter=0x7f04000a;
public static int abc_tooltip_exit=0x7f04000b;
public static int design_bottom_sheet_slide_in=0x7f04000c;
public static int design_bottom_sheet_slide_out=0x7f04000d;
public static int design_snackbar_in=0x7f04000e;
public static int design_snackbar_out=0x7f04000f;
}
public static final class animator {
public static int design_appbar_state_list_animator=0x7f050000;
}
public static final class attr {
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarDivider=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 int actionBarItemBackground=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 int actionBarPopupTheme=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>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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 int actionBarSize=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 int actionBarSplitStyle=0x7f010053;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarStyle=0x7f010052;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabBarStyle=0x7f01004d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabStyle=0x7f01004c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabTextStyle=0x7f01004e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTheme=0x7f010054;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarWidgetTheme=0x7f010055;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionButtonStyle=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 int actionDropDownStyle=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 int actionLayout=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 int actionMenuTextAppearance=0x7f010059;
/** <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 int actionMenuTextColor=0x7f01005a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeBackground=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 int actionModeCloseButtonStyle=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 int actionModeCloseDrawable=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 int actionModeCopyDrawable=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 int actionModeCutDrawable=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 int actionModeFindDrawable=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 int actionModePasteDrawable=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 int actionModePopupWindowStyle=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 int actionModeSelectAllDrawable=0x7f010063;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeShareDrawable=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 int actionModeSplitBackground=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 int actionModeStyle=0x7f01005b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeWebSearchDrawable=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 int actionOverflowButtonStyle=0x7f01004f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionOverflowMenuStyle=0x7f010050;
/** <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 int actionProviderClass=0x7f0100cc;
/** <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 int actionViewClass=0x7f0100cb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int activityChooserViewStyle=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 int alertDialogButtonGroupStyle=0x7f01009f;
/** <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 int alertDialogCenterButtons=0x7f0100a0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogStyle=0x7f01009e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogTheme=0x7f0100a1;
/** <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 int allowStacking=0x7f0100b8;
/** <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 int alpha=0x7f0100b9;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static int alphabeticModifiers=0x7f0100c7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int arrowHeadLength=0x7f0100c0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int arrowShaftLength=0x7f0100c1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int autoCompleteTextViewStyle=0x7f0100a6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int autoSizeMaxTextSize=0x7f010040;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int autoSizeMinTextSize=0x7f01003f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int autoSizePresetSizes=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 int autoSizeStepGranularity=0x7f01003d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>uniform</code></td><td>1</td><td></td></tr>
</table>
*/
public static int autoSizeTextType=0x7f01003c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int background=0x7f010019;
/** <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 int backgroundSplit=0x7f01001b;
/** <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 int backgroundStacked=0x7f01001a;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int backgroundTint=0x7f010103;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int backgroundTintMode=0x7f010104;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int barLength=0x7f0100c2;
/** <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 int behavior_autoHide=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 int behavior_hideable=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 int behavior_overlapTop=0x7f010144;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
*/
public static int behavior_peekHeight=0x7f01011e;
/** <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 int behavior_skipCollapsed=0x7f010120;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int borderWidth=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 int borderlessButtonStyle=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 int bottomSheetDialogTheme=0x7f010132;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int bottomSheetStyle=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 int buttonBarButtonStyle=0x7f010074;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarNegativeButtonStyle=0x7f0100a4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarNeutralButtonStyle=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 int buttonBarPositiveButtonStyle=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 int buttonBarStyle=0x7f010073;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
*/
public static int buttonGravity=0x7f0100f8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int buttonIconDimen=0x7f010034;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonPanelSideLayout=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 int buttonStyle=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 int buttonStyleSmall=0x7f0100a8;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int buttonTint=0x7f0100ba;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int buttonTintMode=0x7f0100bb;
/** <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 int cardBackgroundColor=0x7f010105;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardCornerRadius=0x7f010106;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardElevation=0x7f010107;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardMaxElevation=0x7f010108;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardPreventCornerOverlap=0x7f01010a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardUseCompatPadding=0x7f010109;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int cardViewStyle=0x7f01016d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int checkboxStyle=0x7f0100a9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int checkedTextViewStyle=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 int closeIcon=0x7f0100db;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int closeItemLayout=0x7f01002b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int collapseContentDescription=0x7f0100fa;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int collapseIcon=0x7f0100f9;
/** <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 int collapsedTitleGravity=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 int collapsedTitleTextAppearance=0x7f010127;
/** <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 int color=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 int colorAccent=0x7f010096;
/** <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 int colorBackgroundFloating=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 int colorButtonNormal=0x7f01009a;
/** <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 int colorControlActivated=0x7f010098;
/** <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 int colorControlHighlight=0x7f010099;
/** <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 int colorControlNormal=0x7f010097;
/** <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 int colorError=0x7f0100b6;
/** <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 int colorPrimary=0x7f010094;
/** <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 int colorPrimaryDark=0x7f010095;
/** <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 int colorSwitchThumbNormal=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 int commitIcon=0x7f0100e0;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentDescription=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 int contentInsetEnd=0x7f010024;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetEndWithActions=0x7f010028;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetLeft=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 int contentInsetRight=0x7f010026;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetStart=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 int contentInsetStartWithNavigation=0x7f010027;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPadding=0x7f01010b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingBottom=0x7f01010f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingLeft=0x7f01010c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingRight=0x7f01010d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingTop=0x7f01010e;
/** <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 int contentScrim=0x7f010128;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int controlBackground=0x7f01009c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int coordinatorLayoutStyle=0x7f010168;
/** <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 int counterEnabled=0x7f01015a;
/** <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 int counterMaxLength=0x7f01015b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int counterOverflowTextAppearance=0x7f01015d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int counterTextAppearance=0x7f01015c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int customNavigationLayout=0x7f01001c;
/** <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 int defaultQueryHint=0x7f0100da;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dialogPreferredPadding=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 int dialogTheme=0x7f01006b;
/** <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 int displayOptions=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 int divider=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 int dividerHorizontal=0x7f010079;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dividerPadding=0x7f0100c6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dividerVertical=0x7f010078;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int drawableSize=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 int drawerArrowStyle=0x7f010169;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dropDownListViewStyle=0x7f01008b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dropdownListPreferredItemHeight=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 int editTextBackground=0x7f010080;
/** <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 int editTextColor=0x7f01007f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int editTextStyle=0x7f0100ab;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int elevation=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 int errorEnabled=0x7f010158;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int errorTextAppearance=0x7f010159;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int expandActivityOverflowButtonDrawable=0x7f01002d;
/** <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 int expanded=0x7f010119;
/** <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 int expandedTitleGravity=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 int expandedTitleMargin=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 int expandedTitleMarginBottom=0x7f010125;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginEnd=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 int expandedTitleMarginStart=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 int expandedTitleMarginTop=0x7f010123;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int expandedTitleTextAppearance=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 int fabCustomSize=0x7f010137;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fabSize=0x7f010136;
/** <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 int fastScrollEnabled=0x7f010004;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollHorizontalThumbDrawable=0x7f010007;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollHorizontalTrackDrawable=0x7f010008;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollVerticalThumbDrawable=0x7f010005;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollVerticalTrackDrawable=0x7f010006;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int font=0x7f010117;
/** <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 int fontFamily=0x7f010041;
/** <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 int fontProviderAuthority=0x7f010110;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fontProviderCerts=0x7f010113;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>blocking</code></td><td>0</td><td></td></tr>
<tr><td><code>async</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fontProviderFetchStrategy=0x7f010114;
/** <p>May be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>forever</code></td><td>-1</td><td></td></tr>
</table>
*/
public static int fontProviderFetchTimeout=0x7f010115;
/** <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 int fontProviderPackage=0x7f010111;
/** <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 int fontProviderQuery=0x7f010112;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>italic</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fontStyle=0x7f010116;
/** <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 int fontWeight=0x7f010118;
/** <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 int foregroundInsidePadding=0x7f01013c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int gapBetweenBars=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 int goIcon=0x7f0100dc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int headerLayout=0x7f010142;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int height=0x7f01016a;
/** <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 int hideOnContentScroll=0x7f010022;
/** <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 int hintAnimationEnabled=0x7f01015e;
/** <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 int hintEnabled=0x7f010157;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int hintTextAppearance=0x7f010156;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int homeAsUpIndicator=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 int homeLayout=0x7f01001d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int icon=0x7f010016;
/** <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 int iconTint=0x7f0100cf;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int iconTintMode=0x7f0100d0;
/** <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 int iconifiedByDefault=0x7f0100d8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int imageButtonStyle=0x7f010081;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int indeterminateProgressStyle=0x7f01001f;
/** <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 int initialActivityCount=0x7f01002c;
/** <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 int insetForeground=0x7f010143;
/** <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 int isLightTheme=0x7f01016b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int itemBackground=0x7f010140;
/** <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 int itemIconTint=0x7f01013e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemPadding=0x7f010021;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int itemTextAppearance=0x7f010141;
/** <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 int itemTextColor=0x7f01013f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int keylines=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 int layout=0x7f0100d7;
/** <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 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 int layout_anchor=0x7f01000c;
/** <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 int layout_anchorGravity=0x7f01000e;
/** <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 int layout_behavior=0x7f01000b;
/** <p>Must be one of the following constant values.</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 int layout_collapseMode=0x7f010130;
/** <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 int layout_collapseParallaxMultiplier=0x7f010131;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
*/
public static int layout_dodgeInsetEdges=0x7f010010;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</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 int layout_insetEdge=0x7f01000f;
/** <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 int layout_keyline=0x7f01000d;
/** <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 int layout_scrollFlags=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 int layout_scrollInterpolator=0x7f01011d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listChoiceBackgroundIndicator=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 int listDividerAlertDialog=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 int listItemLayout=0x7f010032;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listLayout=0x7f01002f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listMenuViewStyle=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 int listPopupWindowStyle=0x7f01008c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeight=0x7f010086;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeightLarge=0x7f010088;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeightSmall=0x7f010087;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemPaddingLeft=0x7f010089;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemPaddingRight=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 int logo=0x7f010017;
/** <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 int logoDescription=0x7f0100fd;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int maxActionInlineWidth=0x7f010145;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int maxButtonHeight=0x7f0100f7;
/** <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 int measureWithLargestChild=0x7f0100c4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int menu=0x7f01013d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int multiChoiceItemLayout=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 int navigationContentDescription=0x7f0100fc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int navigationIcon=0x7f0100fb;
/** <p>Must be one of the following constant values.</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 int navigationMode=0x7f010011;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static int numericModifiers=0x7f0100c8;
/** <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 int overlapAnchor=0x7f0100d3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingBottomNoButtons=0x7f0100d5;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingEnd=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 int paddingStart=0x7f010100;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingTopNoTitle=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 int panelBackground=0x7f010090;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int panelMenuListTheme=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 int panelMenuListWidth=0x7f010091;
/** <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 int passwordToggleContentDescription=0x7f010161;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int passwordToggleDrawable=0x7f010160;
/** <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 int passwordToggleEnabled=0x7f01015f;
/** <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 int passwordToggleTint=0x7f010162;
/** <p>Must be one of the following constant values.</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 int passwordToggleTintMode=0x7f010163;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupMenuStyle=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 int popupTheme=0x7f01002a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupWindowStyle=0x7f01007e;
/** <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 int preserveIconSpacing=0x7f0100d1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int pressedTranslationZ=0x7f010138;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int progressBarPadding=0x7f010020;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int progressBarStyle=0x7f01001e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int queryBackground=0x7f0100e2;
/** <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 int queryHint=0x7f0100d9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int radioButtonStyle=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 int ratingBarStyle=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 int ratingBarStyleIndicator=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 int ratingBarStyleSmall=0x7f0100af;
/** <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 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 int rippleColor=0x7f010135;
/** <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 int sb_handlerColor=0x7f010164;
/** <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 int sb_horizontal=0x7f010167;
/** <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 int sb_indicatorColor=0x7f010165;
/** <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 int sb_indicatorTextColor=0x7f010166;
/** <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 int scrimAnimationDuration=0x7f01012c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int scrimVisibleHeightTrigger=0x7f01012b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchHintIcon=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 int searchIcon=0x7f0100dd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchViewStyle=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 int seekBarStyle=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 int selectableItemBackground=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 int selectableItemBackgroundBorderless=0x7f010076;
/** <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 int showAsAction=0x7f0100c9;
/** <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 int showDividers=0x7f0100c5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int showText=0x7f0100ee;
/** <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 int showTitle=0x7f010033;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int singleChoiceItemLayout=0x7f010031;
/** <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 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 int spinBars=0x7f0100bd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int spinnerDropDownItemStyle=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 int spinnerStyle=0x7f0100b1;
/** <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 int splitTrack=0x7f0100ed;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int srcCompat=0x7f010035;
/** <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 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 int state_above_anchor=0x7f0100d4;
/** <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 int state_collapsed=0x7f01011a;
/** <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 int state_collapsible=0x7f01011b;
/** <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 int statusBarBackground=0x7f01000a;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int statusBarScrim=0x7f010129;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subMenuArrow=0x7f0100d2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int submitBackground=0x7f0100e3;
/** <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 int subtitle=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 int subtitleTextAppearance=0x7f0100f0;
/** <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 int subtitleTextColor=0x7f0100ff;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subtitleTextStyle=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 int suggestionRowLayout=0x7f0100e1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int switchMinWidth=0x7f0100eb;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int switchPadding=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 int switchStyle=0x7f0100b2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int switchTextAppearance=0x7f0100ea;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tabBackground=0x7f010149;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabContentStart=0x7f010148;
/** <p>Must be one of the following constant values.</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 int tabGravity=0x7f01014b;
/** <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 int tabIndicatorColor=0x7f010146;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabIndicatorHeight=0x7f010147;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabMaxWidth=0x7f01014d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabMinWidth=0x7f01014c;
/** <p>Must be one of the following constant values.</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 int tabMode=0x7f01014a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPadding=0x7f010155;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingBottom=0x7f010154;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingEnd=0x7f010153;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingStart=0x7f010151;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingTop=0x7f010152;
/** <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 int tabSelectedTextColor=0x7f010150;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tabTextAppearance=0x7f01014e;
/** <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 int tabTextColor=0x7f01014f;
/** <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 int textAllCaps=0x7f01003b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceLargePopupMenu=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 int textAppearanceListItem=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 int textAppearanceListItemSecondary=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 int textAppearanceListItemSmall=0x7f01008f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearancePopupMenuHeader=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 int textAppearanceSearchResultSubtitle=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 int textAppearanceSearchResultTitle=0x7f010082;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSmallPopupMenu=0x7f010069;
/** <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 int textColorAlertDialogListItem=0x7f0100a2;
/** <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 int textColorError=0x7f010134;
/** <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 int textColorSearchUrl=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 int theme=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 int thickness=0x7f0100c3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int thumbTextPadding=0x7f0100e9;
/** <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 int thumbTint=0x7f0100e4;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int thumbTintMode=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 int tickMark=0x7f010038;
/** <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 int tickMarkTint=0x7f010039;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int tickMarkTintMode=0x7f01003a;
/** <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 int tint=0x7f010036;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int tintMode=0x7f010037;
/** <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 int title=0x7f01016c;
/** <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 int titleEnabled=0x7f01012f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMargin=0x7f0100f1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginBottom=0x7f0100f5;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginEnd=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 int titleMarginStart=0x7f0100f2;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginTop=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 int titleMargins=0x7f0100f6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int titleTextAppearance=0x7f0100ef;
/** <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 int titleTextColor=0x7f0100fe;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int titleTextStyle=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 int toolbarId=0x7f01012a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarNavigationButtonStyle=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 int toolbarStyle=0x7f01007b;
/** <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 int tooltipForegroundColor=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 int tooltipFrameBackground=0x7f0100b4;
/** <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 int tooltipText=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 int track=0x7f0100e6;
/** <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 int trackTint=0x7f0100e7;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int trackTintMode=0x7f0100e8;
/** <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 int useCompatPadding=0x7f01013a;
/** <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 int viewInflaterClass=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 int voiceIcon=0x7f0100df;
/** <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 int windowActionBar=0x7f010042;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionBarOverlay=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 int windowActionModeOverlay=0x7f010045;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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 int windowFixedHeightMajor=0x7f010049;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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 int windowFixedHeightMinor=0x7f010047;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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 int windowFixedWidthMajor=0x7f010046;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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 int windowFixedWidthMinor=0x7f010048;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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 int windowMinWidthMajor=0x7f01004a;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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 int windowMinWidthMinor=0x7f01004b;
/** <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 int windowNoTitle=0x7f010043;
}
public static final class bool {
public static int abc_action_bar_embed_tabs=0x7f090000;
public static int abc_allow_stacked_button_bar=0x7f090001;
public static int abc_config_actionMenuItemAllCaps=0x7f090002;
public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f090003;
}
public static final class color {
public static int abc_background_cache_hint_selector_material_dark=0x7f0b004b;
public static int abc_background_cache_hint_selector_material_light=0x7f0b004c;
public static int abc_btn_colored_borderless_text_material=0x7f0b004d;
public static int abc_btn_colored_text_material=0x7f0b004e;
public static int abc_color_highlight_material=0x7f0b004f;
public static int abc_hint_foreground_material_dark=0x7f0b0050;
public static int abc_hint_foreground_material_light=0x7f0b0051;
public static int abc_input_method_navigation_guard=0x7f0b0004;
public static int abc_primary_text_disable_only_material_dark=0x7f0b0052;
public static int abc_primary_text_disable_only_material_light=0x7f0b0053;
public static int abc_primary_text_material_dark=0x7f0b0054;
public static int abc_primary_text_material_light=0x7f0b0055;
public static int abc_search_url_text=0x7f0b0056;
public static int abc_search_url_text_normal=0x7f0b0005;
public static int abc_search_url_text_pressed=0x7f0b0006;
public static int abc_search_url_text_selected=0x7f0b0007;
public static int abc_secondary_text_material_dark=0x7f0b0057;
public static int abc_secondary_text_material_light=0x7f0b0058;
public static int abc_tint_btn_checkable=0x7f0b0059;
public static int abc_tint_default=0x7f0b005a;
public static int abc_tint_edittext=0x7f0b005b;
public static int abc_tint_seek_thumb=0x7f0b005c;
public static int abc_tint_spinner=0x7f0b005d;
public static int abc_tint_switch_track=0x7f0b005e;
public static int accent_material_dark=0x7f0b0008;
public static int accent_material_light=0x7f0b0009;
public static int background_floating_material_dark=0x7f0b000a;
public static int background_floating_material_light=0x7f0b000b;
public static int background_material_dark=0x7f0b000c;
public static int background_material_light=0x7f0b000d;
public static int bright_foreground_disabled_material_dark=0x7f0b000e;
public static int bright_foreground_disabled_material_light=0x7f0b000f;
public static int bright_foreground_inverse_material_dark=0x7f0b0010;
public static int bright_foreground_inverse_material_light=0x7f0b0011;
public static int bright_foreground_material_dark=0x7f0b0012;
public static int bright_foreground_material_light=0x7f0b0013;
public static int button_material_dark=0x7f0b0014;
public static int button_material_light=0x7f0b0015;
public static int cardview_dark_background=0x7f0b003d;
public static int cardview_light_background=0x7f0b003e;
public static int cardview_shadow_end_color=0x7f0b003f;
public static int cardview_shadow_start_color=0x7f0b0040;
public static int design_bottom_navigation_shadow_color=0x7f0b0042;
public static int design_error=0x7f0b005f;
public static int design_fab_shadow_end_color=0x7f0b0043;
public static int design_fab_shadow_mid_color=0x7f0b0044;
public static int design_fab_shadow_start_color=0x7f0b0045;
public static int design_fab_stroke_end_inner_color=0x7f0b0046;
public static int design_fab_stroke_end_outer_color=0x7f0b0047;
public static int design_fab_stroke_top_inner_color=0x7f0b0048;
public static int design_fab_stroke_top_outer_color=0x7f0b0049;
public static int design_snackbar_background_color=0x7f0b004a;
public static int design_tint_password_toggle=0x7f0b0060;
public static int dim_foreground_disabled_material_dark=0x7f0b0016;
public static int dim_foreground_disabled_material_light=0x7f0b0017;
public static int dim_foreground_material_dark=0x7f0b0018;
public static int dim_foreground_material_light=0x7f0b0019;
public static int error_color_material=0x7f0b001a;
public static int foreground_material_dark=0x7f0b001b;
public static int foreground_material_light=0x7f0b001c;
public static int highlighted_text_material_dark=0x7f0b001d;
public static int highlighted_text_material_light=0x7f0b001e;
public static int material_blue_grey_800=0x7f0b001f;
public static int material_blue_grey_900=0x7f0b0020;
public static int material_blue_grey_950=0x7f0b0021;
public static int material_deep_teal_200=0x7f0b0022;
public static int material_deep_teal_500=0x7f0b0023;
public static int material_grey_100=0x7f0b0024;
public static int material_grey_300=0x7f0b0025;
public static int material_grey_50=0x7f0b0026;
public static int material_grey_600=0x7f0b0027;
public static int material_grey_800=0x7f0b0028;
public static int material_grey_850=0x7f0b0029;
public static int material_grey_900=0x7f0b002a;
public static int notification_action_color_filter=0x7f0b0000;
public static int notification_icon_bg_color=0x7f0b0041;
public static int notification_material_background_media_default_color=0x7f0b0001;
public static int primary_dark_material_dark=0x7f0b002b;
public static int primary_dark_material_light=0x7f0b002c;
public static int primary_material_dark=0x7f0b002d;
public static int primary_material_light=0x7f0b002e;
public static int primary_text_default_material_dark=0x7f0b0002;
public static int primary_text_default_material_light=0x7f0b002f;
public static int primary_text_disabled_material_dark=0x7f0b0030;
public static int primary_text_disabled_material_light=0x7f0b0031;
public static int ripple_material_dark=0x7f0b0032;
public static int ripple_material_light=0x7f0b0033;
public static int secondary_text_default_material_dark=0x7f0b0003;
public static int secondary_text_default_material_light=0x7f0b0034;
public static int secondary_text_disabled_material_dark=0x7f0b0035;
public static int secondary_text_disabled_material_light=0x7f0b0036;
public static int switch_thumb_disabled_material_dark=0x7f0b0037;
public static int switch_thumb_disabled_material_light=0x7f0b0038;
public static int switch_thumb_material_dark=0x7f0b0061;
public static int switch_thumb_material_light=0x7f0b0062;
public static int switch_thumb_normal_material_dark=0x7f0b0039;
public static int switch_thumb_normal_material_light=0x7f0b003a;
public static int tooltip_background_dark=0x7f0b003b;
public static int tooltip_background_light=0x7f0b003c;
}
public static final class dimen {
public static int abc_action_bar_content_inset_material=0x7f07000c;
public static int abc_action_bar_content_inset_with_nav=0x7f07000d;
public static int abc_action_bar_default_height_material=0x7f070001;
public static int abc_action_bar_default_padding_end_material=0x7f07000e;
public static int abc_action_bar_default_padding_start_material=0x7f07000f;
public static int abc_action_bar_elevation_material=0x7f070023;
public static int abc_action_bar_icon_vertical_padding_material=0x7f070024;
public static int abc_action_bar_overflow_padding_end_material=0x7f070025;
public static int abc_action_bar_overflow_padding_start_material=0x7f070026;
public static int abc_action_bar_progress_bar_size=0x7f070002;
public static int abc_action_bar_stacked_max_height=0x7f070027;
public static int abc_action_bar_stacked_tab_max_width=0x7f070028;
public static int abc_action_bar_subtitle_bottom_margin_material=0x7f070029;
public static int abc_action_bar_subtitle_top_margin_material=0x7f07002a;
public static int abc_action_button_min_height_material=0x7f07002b;
public static int abc_action_button_min_width_material=0x7f07002c;
public static int abc_action_button_min_width_overflow_material=0x7f07002d;
public static int abc_alert_dialog_button_bar_height=0x7f070000;
public static int abc_alert_dialog_button_dimen=0x7f07002e;
public static int abc_button_inset_horizontal_material=0x7f07002f;
public static int abc_button_inset_vertical_material=0x7f070030;
public static int abc_button_padding_horizontal_material=0x7f070031;
public static int abc_button_padding_vertical_material=0x7f070032;
public static int abc_cascading_menus_min_smallest_width=0x7f070033;
public static int abc_config_prefDialogWidth=0x7f070005;
public static int abc_control_corner_material=0x7f070034;
public static int abc_control_inset_material=0x7f070035;
public static int abc_control_padding_material=0x7f070036;
public static int abc_dialog_fixed_height_major=0x7f070006;
public static int abc_dialog_fixed_height_minor=0x7f070007;
public static int abc_dialog_fixed_width_major=0x7f070008;
public static int abc_dialog_fixed_width_minor=0x7f070009;
public static int abc_dialog_list_padding_bottom_no_buttons=0x7f070037;
public static int abc_dialog_list_padding_top_no_title=0x7f070038;
public static int abc_dialog_min_width_major=0x7f07000a;
public static int abc_dialog_min_width_minor=0x7f07000b;
public static int abc_dialog_padding_material=0x7f070039;
public static int abc_dialog_padding_top_material=0x7f07003a;
public static int abc_dialog_title_divider_material=0x7f07003b;
public static int abc_disabled_alpha_material_dark=0x7f070094;
public static int abc_disabled_alpha_material_light=0x7f070095;
public static int abc_dropdownitem_icon_width=0x7f07003c;
public static int abc_dropdownitem_text_padding_left=0x7f07003d;
public static int abc_dropdownitem_text_padding_right=0x7f07003e;
public static int abc_edit_text_inset_bottom_material=0x7f07003f;
public static int abc_edit_text_inset_horizontal_material=0x7f070040;
public static int abc_edit_text_inset_top_material=0x7f070041;
public static int abc_floating_window_z=0x7f070042;
public static int abc_list_item_padding_horizontal_material=0x7f070043;
public static int abc_panel_menu_list_width=0x7f070044;
public static int abc_progress_bar_height_material=0x7f070045;
public static int abc_search_view_preferred_height=0x7f070046;
public static int abc_search_view_preferred_width=0x7f070047;
public static int abc_seekbar_track_background_height_material=0x7f070048;
public static int abc_seekbar_track_progress_height_material=0x7f070049;
public static int abc_select_dialog_padding_start_material=0x7f07004a;
public static int abc_switch_padding=0x7f070019;
public static int abc_text_size_body_1_material=0x7f07004b;
public static int abc_text_size_body_2_material=0x7f07004c;
public static int abc_text_size_button_material=0x7f07004d;
public static int abc_text_size_caption_material=0x7f07004e;
public static int abc_text_size_display_1_material=0x7f07004f;
public static int abc_text_size_display_2_material=0x7f070050;
public static int abc_text_size_display_3_material=0x7f070051;
public static int abc_text_size_display_4_material=0x7f070052;
public static int abc_text_size_headline_material=0x7f070053;
public static int abc_text_size_large_material=0x7f070054;
public static int abc_text_size_medium_material=0x7f070055;
public static int abc_text_size_menu_header_material=0x7f070056;
public static int abc_text_size_menu_material=0x7f070057;
public static int abc_text_size_small_material=0x7f070058;
public static int abc_text_size_subhead_material=0x7f070059;
public static int abc_text_size_subtitle_material_toolbar=0x7f070003;
public static int abc_text_size_title_material=0x7f07005a;
public static int abc_text_size_title_material_toolbar=0x7f070004;
public static int cardview_compat_inset_shadow=0x7f070063;
public static int cardview_default_elevation=0x7f070064;
public static int cardview_default_radius=0x7f070065;
public static int compat_button_inset_horizontal_material=0x7f070066;
public static int compat_button_inset_vertical_material=0x7f070067;
public static int compat_button_padding_horizontal_material=0x7f070068;
public static int compat_button_padding_vertical_material=0x7f070069;
public static int compat_control_corner_material=0x7f07006a;
public static int design_appbar_elevation=0x7f070076;
public static int design_bottom_navigation_active_item_max_width=0x7f070077;
public static int design_bottom_navigation_active_text_size=0x7f070078;
public static int design_bottom_navigation_elevation=0x7f070079;
public static int design_bottom_navigation_height=0x7f07007a;
public static int design_bottom_navigation_item_max_width=0x7f07007b;
public static int design_bottom_navigation_item_min_width=0x7f07007c;
public static int design_bottom_navigation_margin=0x7f07007d;
public static int design_bottom_navigation_shadow_height=0x7f07007e;
public static int design_bottom_navigation_text_size=0x7f07007f;
public static int design_bottom_sheet_modal_elevation=0x7f070080;
public static int design_bottom_sheet_peek_height_min=0x7f070081;
public static int design_fab_border_width=0x7f070082;
public static int design_fab_elevation=0x7f070083;
public static int design_fab_image_size=0x7f070084;
public static int design_fab_size_mini=0x7f070085;
public static int design_fab_size_normal=0x7f070086;
public static int design_fab_translation_z_pressed=0x7f070087;
public static int design_navigation_elevation=0x7f070088;
public static int design_navigation_icon_padding=0x7f070089;
public static int design_navigation_icon_size=0x7f07008a;
public static int design_navigation_max_width=0x7f070010;
public static int design_navigation_padding_bottom=0x7f07008b;
public static int design_navigation_separator_vertical_padding=0x7f07008c;
public static int design_snackbar_action_inline_max_width=0x7f070011;
public static int design_snackbar_background_corner_radius=0x7f070012;
public static int design_snackbar_elevation=0x7f07008d;
public static int design_snackbar_extra_spacing_horizontal=0x7f070013;
public static int design_snackbar_max_width=0x7f070014;
public static int design_snackbar_min_width=0x7f070015;
public static int design_snackbar_padding_horizontal=0x7f07008e;
public static int design_snackbar_padding_vertical=0x7f07008f;
public static int design_snackbar_padding_vertical_2lines=0x7f070016;
public static int design_snackbar_text_size=0x7f070090;
public static int design_tab_max_width=0x7f070091;
public static int design_tab_scrollable_min_width=0x7f070017;
public static int design_tab_text_size=0x7f070092;
public static int design_tab_text_size_2line=0x7f070093;
public static int disabled_alpha_material_dark=0x7f070096;
public static int disabled_alpha_material_light=0x7f070097;
public static int fastscroll_default_thickness=0x7f07001d;
public static int fastscroll_margin=0x7f07001e;
public static int fastscroll_minimum_range=0x7f07001f;
public static int highlight_alpha_material_colored=0x7f070098;
public static int highlight_alpha_material_dark=0x7f070099;
public static int highlight_alpha_material_light=0x7f07009a;
public static int hint_alpha_material_dark=0x7f07009b;
public static int hint_alpha_material_light=0x7f07009c;
public static int hint_pressed_alpha_material_dark=0x7f07009d;
public static int hint_pressed_alpha_material_light=0x7f07009e;
public static int item_touch_helper_max_drag_scroll_per_frame=0x7f070020;
public static int item_touch_helper_swipe_escape_max_velocity=0x7f070021;
public static int item_touch_helper_swipe_escape_velocity=0x7f070022;
public static int notification_action_icon_size=0x7f07006b;
public static int notification_action_text_size=0x7f07006c;
public static int notification_big_circle_margin=0x7f07006d;
public static int notification_content_margin_start=0x7f07001a;
public static int notification_large_icon_height=0x7f07006e;
public static int notification_large_icon_width=0x7f07006f;
public static int notification_main_column_padding_top=0x7f07001b;
public static int notification_media_narrow_margin=0x7f07001c;
public static int notification_right_icon_size=0x7f070070;
public static int notification_right_side_padding_top=0x7f070018;
public static int notification_small_icon_background_padding=0x7f070071;
public static int notification_small_icon_size_as_large=0x7f070072;
public static int notification_subtext_size=0x7f070073;
public static int notification_top_pad=0x7f070074;
public static int notification_top_pad_large_text=0x7f070075;
public static int tooltip_corner_radius=0x7f07005b;
public static int tooltip_horizontal_padding=0x7f07005c;
public static int tooltip_margin=0x7f07005d;
public static int tooltip_precise_anchor_extra_offset=0x7f07005e;
public static int tooltip_precise_anchor_threshold=0x7f07005f;
public static int tooltip_vertical_padding=0x7f070060;
public static int tooltip_y_offset_non_touch=0x7f070061;
public static int tooltip_y_offset_touch=0x7f070062;
}
public static final class drawable {
public static int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static int abc_action_bar_item_background_material=0x7f020001;
public static int abc_btn_borderless_material=0x7f020002;
public static int abc_btn_check_material=0x7f020003;
public static int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static int abc_btn_colored_material=0x7f020006;
public static int abc_btn_default_mtrl_shape=0x7f020007;
public static int abc_btn_radio_material=0x7f020008;
public static int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
public static int abc_cab_background_internal_bg=0x7f02000d;
public static int abc_cab_background_top_material=0x7f02000e;
public static int abc_cab_background_top_mtrl_alpha=0x7f02000f;
public static int abc_control_background_material=0x7f020010;
public static int abc_dialog_material_background=0x7f020011;
public static int abc_edit_text_material=0x7f020012;
public static int abc_ic_ab_back_material=0x7f020013;
public static int abc_ic_arrow_drop_right_black_24dp=0x7f020014;
public static int abc_ic_clear_material=0x7f020015;
public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020016;
public static int abc_ic_go_search_api_material=0x7f020017;
public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018;
public static int abc_ic_menu_cut_mtrl_alpha=0x7f020019;
public static int abc_ic_menu_overflow_material=0x7f02001a;
public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b;
public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c;
public static int abc_ic_menu_share_mtrl_alpha=0x7f02001d;
public static int abc_ic_search_api_material=0x7f02001e;
public static int abc_ic_star_black_16dp=0x7f02001f;
public static int abc_ic_star_black_36dp=0x7f020020;
public static int abc_ic_star_black_48dp=0x7f020021;
public static int abc_ic_star_half_black_16dp=0x7f020022;
public static int abc_ic_star_half_black_36dp=0x7f020023;
public static int abc_ic_star_half_black_48dp=0x7f020024;
public static int abc_ic_voice_search_api_material=0x7f020025;
public static int abc_item_background_holo_dark=0x7f020026;
public static int abc_item_background_holo_light=0x7f020027;
public static int abc_list_divider_mtrl_alpha=0x7f020028;
public static int abc_list_focused_holo=0x7f020029;
public static int abc_list_longpressed_holo=0x7f02002a;
public static int abc_list_pressed_holo_dark=0x7f02002b;
public static int abc_list_pressed_holo_light=0x7f02002c;
public static int abc_list_selector_background_transition_holo_dark=0x7f02002d;
public static int abc_list_selector_background_transition_holo_light=0x7f02002e;
public static int abc_list_selector_disabled_holo_dark=0x7f02002f;
public static int abc_list_selector_disabled_holo_light=0x7f020030;
public static int abc_list_selector_holo_dark=0x7f020031;
public static int abc_list_selector_holo_light=0x7f020032;
public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
public static int abc_popup_background_mtrl_mult=0x7f020034;
public static int abc_ratingbar_indicator_material=0x7f020035;
public static int abc_ratingbar_material=0x7f020036;
public static int abc_ratingbar_small_material=0x7f020037;
public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
public static int abc_scrubber_track_mtrl_alpha=0x7f02003c;
public static int abc_seekbar_thumb_material=0x7f02003d;
public static int abc_seekbar_tick_mark_material=0x7f02003e;
public static int abc_seekbar_track_material=0x7f02003f;
public static int abc_spinner_mtrl_am_alpha=0x7f020040;
public static int abc_spinner_textfield_background_material=0x7f020041;
public static int abc_switch_thumb_material=0x7f020042;
public static int abc_switch_track_mtrl_alpha=0x7f020043;
public static int abc_tab_indicator_material=0x7f020044;
public static int abc_tab_indicator_mtrl_alpha=0x7f020045;
public static int abc_text_cursor_material=0x7f020046;
public static int abc_text_select_handle_left_mtrl_dark=0x7f020047;
public static int abc_text_select_handle_left_mtrl_light=0x7f020048;
public static int abc_text_select_handle_middle_mtrl_dark=0x7f020049;
public static int abc_text_select_handle_middle_mtrl_light=0x7f02004a;
public static int abc_text_select_handle_right_mtrl_dark=0x7f02004b;
public static int abc_text_select_handle_right_mtrl_light=0x7f02004c;
public static int abc_textfield_activated_mtrl_alpha=0x7f02004d;
public static int abc_textfield_default_mtrl_alpha=0x7f02004e;
public static int abc_textfield_search_activated_mtrl_alpha=0x7f02004f;
public static int abc_textfield_search_default_mtrl_alpha=0x7f020050;
public static int abc_textfield_search_material=0x7f020051;
public static int abc_vector_test=0x7f020052;
public static int avd_hide_password=0x7f020053;
public static int avd_hide_password_1=0x7f020080;
public static int avd_hide_password_2=0x7f020081;
public static int avd_hide_password_3=0x7f020082;
public static int avd_show_password=0x7f020054;
public static int avd_show_password_1=0x7f020083;
public static int avd_show_password_2=0x7f020084;
public static int avd_show_password_3=0x7f020085;
public static int btn_check_buttonless_on_144=0x7f020055;
public static int btn_check_buttonless_on_192=0x7f020056;
public static int btn_check_buttonless_on_36=0x7f020057;
public static int btn_check_buttonless_on_48=0x7f020058;
public static int btn_check_buttonless_on_72=0x7f020059;
public static int btn_check_buttonless_on_96=0x7f02005a;
public static int btn_more_144=0x7f02005b;
public static int btn_more_192=0x7f02005c;
public static int btn_more_36=0x7f02005d;
public static int btn_more_48=0x7f02005e;
public static int btn_more_72=0x7f02005f;
public static int btn_more_96=0x7f020060;
public static int default_scroll_handle_bottom=0x7f020061;
public static int default_scroll_handle_left=0x7f020062;
public static int default_scroll_handle_right=0x7f020063;
public static int default_scroll_handle_top=0x7f020064;
public static int design_bottom_navigation_item_background=0x7f020065;
public static int design_fab_background=0x7f020066;
public static int design_ic_visibility=0x7f020067;
public static int design_ic_visibility_off=0x7f020068;
public static int design_password_eye=0x7f020069;
public static int design_snackbar_background=0x7f02006a;
public static int disclosure_144=0x7f02006b;
public static int disclosure_192=0x7f02006c;
public static int disclosure_36=0x7f02006d;
public static int disclosure_48=0x7f02006e;
public static int disclosure_72=0x7f02006f;
public static int disclosure_96=0x7f020070;
public static int navigation_empty_icon=0x7f020071;
public static int notification_action_background=0x7f020072;
public static int notification_bg=0x7f020073;
public static int notification_bg_low=0x7f020074;
public static int notification_bg_low_normal=0x7f020075;
public static int notification_bg_low_pressed=0x7f020076;
public static int notification_bg_normal=0x7f020077;
public static int notification_bg_normal_pressed=0x7f020078;
public static int notification_icon_background=0x7f020079;
public static int notification_template_icon_bg=0x7f02007e;
public static int notification_template_icon_low_bg=0x7f02007f;
public static int notification_tile_bg=0x7f02007a;
public static int notify_panel_notification_icon_bg=0x7f02007b;
public static int tooltip_frame_dark=0x7f02007c;
public static int tooltip_frame_light=0x7f02007d;
}
public static final class id {
public static int ALT=0x7f0c0040;
public static int CTRL=0x7f0c0041;
public static int FUNCTION=0x7f0c0042;
public static int META=0x7f0c0043;
public static int SHIFT=0x7f0c0044;
public static int SYM=0x7f0c0045;
public static int action0=0x7f0c009d;
public static int action_bar=0x7f0c007c;
public static int action_bar_activity_content=0x7f0c000b;
public static int action_bar_container=0x7f0c007b;
public static int action_bar_root=0x7f0c0077;
public static int action_bar_spinner=0x7f0c000c;
public static int action_bar_subtitle=0x7f0c005b;
public static int action_bar_title=0x7f0c005a;
public static int action_container=0x7f0c009a;
public static int action_context_bar=0x7f0c007d;
public static int action_divider=0x7f0c00a1;
public static int action_image=0x7f0c009b;
public static int action_menu_divider=0x7f0c000d;
public static int action_menu_presenter=0x7f0c000e;
public static int action_mode_bar=0x7f0c0079;
public static int action_mode_bar_stub=0x7f0c0078;
public static int action_mode_close_button=0x7f0c005c;
public static int action_text=0x7f0c009c;
public static int actions=0x7f0c00aa;
public static int activity_chooser_view_content=0x7f0c005d;
public static int add=0x7f0c0036;
public static int alertTitle=0x7f0c0070;
public static int all=0x7f0c002c;
public static int always=0x7f0c0046;
public static int async=0x7f0c004b;
public static int auto=0x7f0c0054;
public static int beginning=0x7f0c003e;
public static int blocking=0x7f0c004c;
public static int bottom=0x7f0c001d;
public static int buttonPanel=0x7f0c0063;
public static int cancel_action=0x7f0c009e;
public static int center=0x7f0c001e;
public static int center_horizontal=0x7f0c001f;
public static int center_vertical=0x7f0c0020;
public static int checkbox=0x7f0c0073;
public static int chronometer=0x7f0c00a6;
public static int clip_horizontal=0x7f0c0021;
public static int clip_vertical=0x7f0c0022;
public static int collapseActionView=0x7f0c0047;
public static int container=0x7f0c008e;
public static int contentPanel=0x7f0c0066;
public static int coordinator=0x7f0c008f;
public static int custom=0x7f0c006d;
public static int customPanel=0x7f0c006c;
public static int decor_content_parent=0x7f0c007a;
public static int default_activity_button=0x7f0c0060;
public static int design_bottom_sheet=0x7f0c0091;
public static int design_menu_item_action_area=0x7f0c0098;
public static int design_menu_item_action_area_stub=0x7f0c0097;
public static int design_menu_item_text=0x7f0c0096;
public static int design_navigation_view=0x7f0c0095;
public static int disableHome=0x7f0c0030;
public static int drawer_layout_container=0x7f0c00b0;
public static int drawer_layout_toolbar=0x7f0c00b1;
public static int edit_query=0x7f0c007e;
public static int end=0x7f0c0023;
public static int end_padder=0x7f0c00ac;
public static int enterAlways=0x7f0c004f;
public static int enterAlwaysCollapsed=0x7f0c0050;
public static int exitUntilCollapsed=0x7f0c0051;
public static int expand_activities_button=0x7f0c005e;
public static int expanded_menu=0x7f0c0072;
public static int fill=0x7f0c0024;
public static int fill_horizontal=0x7f0c0025;
public static int fill_vertical=0x7f0c0026;
public static int fixed=0x7f0c0058;
public static int forever=0x7f0c004d;
public static int ghost_view=0x7f0c0001;
public static int home=0x7f0c000f;
public static int homeAsUp=0x7f0c0031;
public static int icon=0x7f0c0062;
public static int icon_group=0x7f0c00ab;
public static int ifRoom=0x7f0c0048;
public static int image=0x7f0c005f;
public static int info=0x7f0c00a7;
public static int italic=0x7f0c004e;
public static int item_touch_helper_previous_elevation=0x7f0c0000;
public static int largeLabel=0x7f0c008d;
public static int left=0x7f0c0027;
public static int line1=0x7f0c0014;
public static int line3=0x7f0c0015;
public static int listMode=0x7f0c002d;
public static int list_item=0x7f0c0061;
public static int masked=0x7f0c00ba;
public static int media_actions=0x7f0c00a0;
public static int message=0x7f0c008b;
public static int middle=0x7f0c003f;
public static int mini=0x7f0c0057;
public static int multiply=0x7f0c0037;
public static int navigation_header_container=0x7f0c0094;
public static int never=0x7f0c0049;
public static int none=0x7f0c002b;
public static int normal=0x7f0c002e;
public static int notification_background=0x7f0c00a9;
public static int notification_main_column=0x7f0c00a3;
public static int notification_main_column_container=0x7f0c00a2;
public static int parallax=0x7f0c0055;
public static int parentPanel=0x7f0c0065;
public static int parent_matrix=0x7f0c0002;
public static int pdfView=0x7f0c00ad;
public static int pin=0x7f0c0056;
public static int progress_circular=0x7f0c0010;
public static int progress_horizontal=0x7f0c0011;
public static int radio=0x7f0c0075;
public static int right=0x7f0c0028;
public static int right_icon=0x7f0c00a8;
public static int right_side=0x7f0c00a4;
public static int save_image_matrix=0x7f0c0003;
public static int save_non_transition_alpha=0x7f0c0004;
public static int save_scale_type=0x7f0c0005;
public static int screen=0x7f0c0038;
public static int scroll=0x7f0c0052;
public static int scrollIndicatorDown=0x7f0c006b;
public static int scrollIndicatorUp=0x7f0c0067;
public static int scrollView=0x7f0c0068;
public static int scrollable=0x7f0c0059;
public static int search_badge=0x7f0c0080;
public static int search_bar=0x7f0c007f;
public static int search_button=0x7f0c0081;
public static int search_close_btn=0x7f0c0086;
public static int search_edit_frame=0x7f0c0082;
public static int search_go_btn=0x7f0c0088;
public static int search_mag_icon=0x7f0c0083;
public static int search_plate=0x7f0c0084;
public static int search_src_text=0x7f0c0085;
public static int search_voice_btn=0x7f0c0089;
public static int select_dialog_listview=0x7f0c008a;
public static int shortcut=0x7f0c0074;
public static int showCustom=0x7f0c0032;
public static int showHome=0x7f0c0033;
public static int showTitle=0x7f0c0034;
public static int smallLabel=0x7f0c008c;
public static int snackbar_action=0x7f0c0093;
public static int snackbar_text=0x7f0c0092;
public static int snap=0x7f0c0053;
public static int spacer=0x7f0c0064;
public static int split_action_bar=0x7f0c0012;
public static int src_atop=0x7f0c0039;
public static int src_in=0x7f0c003a;
public static int src_over=0x7f0c003b;
public static int start=0x7f0c0029;
public static int status_bar_latest_event_content=0x7f0c009f;
public static int submenuarrow=0x7f0c0076;
public static int submit_area=0x7f0c0087;
public static int tabMode=0x7f0c002f;
public static int tag_transition_group=0x7f0c0016;
public static int text=0x7f0c0017;
public static int text2=0x7f0c0018;
public static int textSpacerNoButtons=0x7f0c006a;
public static int textSpacerNoTitle=0x7f0c0069;
public static int text_input_password_toggle=0x7f0c0099;
public static int textinput_counter=0x7f0c001a;
public static int textinput_error=0x7f0c001b;
public static int time=0x7f0c00a5;
public static int titanium_ui_checkbox=0x7f0c00ae;
public static int titanium_ui_date_picker_spinner=0x7f0c00af;
public static int titanium_ui_edittext=0x7f0c00b2;
public static int titanium_ui_list_header_or_footer_title=0x7f0c00b3;
public static int titanium_ui_list_item_accessoryType=0x7f0c00b5;
public static int titanium_ui_list_item_content=0x7f0c00b4;
public static int titanium_ui_spinner=0x7f0c00b6;
public static int titanium_ui_switchcompat=0x7f0c00b7;
public static int titanium_ui_time_picker_spinner=0x7f0c00b8;
public static int title=0x7f0c0019;
public static int titleDividerNoCustom=0x7f0c0071;
public static int title_template=0x7f0c006f;
public static int top=0x7f0c002a;
public static int topPanel=0x7f0c006e;
public static int touch_outside=0x7f0c0090;
public static int transition_current_scene=0x7f0c0006;
public static int transition_layout_save=0x7f0c0007;
public static int transition_position=0x7f0c0008;
public static int transition_scene_layoutid_cache=0x7f0c0009;
public static int transition_transform=0x7f0c000a;
public static int uniform=0x7f0c003c;
public static int up=0x7f0c0013;
public static int useLogo=0x7f0c0035;
public static int view_offset_helper=0x7f0c001c;
public static int visible=0x7f0c00b9;
public static int withText=0x7f0c004a;
public static int wrap_content=0x7f0c003d;
}
public static final class integer {
public static int abc_config_activityDefaultDur=0x7f0a0002;
public static int abc_config_activityShortDur=0x7f0a0003;
public static int app_bar_elevation_anim_duration=0x7f0a0006;
public static int bottom_sheet_slide_duration=0x7f0a0007;
public static int cancel_button_image_alpha=0x7f0a0001;
public static int config_tooltipAnimTime=0x7f0a0004;
public static int design_snackbar_text_max_lines=0x7f0a0000;
public static int hide_password_duration=0x7f0a0008;
public static int show_password_duration=0x7f0a0009;
public static int status_bar_notification_info_maxnum=0x7f0a0005;
}
public static final class layout {
public static int abc_action_bar_title_item=0x7f030000;
public static int abc_action_bar_up_container=0x7f030001;
public static int abc_action_menu_item_layout=0x7f030002;
public static int abc_action_menu_layout=0x7f030003;
public static int abc_action_mode_bar=0x7f030004;
public static int abc_action_mode_close_item_material=0x7f030005;
public static int abc_activity_chooser_view=0x7f030006;
public static int abc_activity_chooser_view_list_item=0x7f030007;
public static int abc_alert_dialog_button_bar_material=0x7f030008;
public static int abc_alert_dialog_material=0x7f030009;
public static int abc_alert_dialog_title_material=0x7f03000a;
public static int abc_dialog_title_material=0x7f03000b;
public static int abc_expanded_menu_layout=0x7f03000c;
public static int abc_list_menu_item_checkbox=0x7f03000d;
public static int abc_list_menu_item_icon=0x7f03000e;
public static int abc_list_menu_item_layout=0x7f03000f;
public static int abc_list_menu_item_radio=0x7f030010;
public static int abc_popup_menu_header_item_layout=0x7f030011;
public static int abc_popup_menu_item_layout=0x7f030012;
public static int abc_screen_content_include=0x7f030013;
public static int abc_screen_simple=0x7f030014;
public static int abc_screen_simple_overlay_action_mode=0x7f030015;
public static int abc_screen_toolbar=0x7f030016;
public static int abc_search_dropdown_item_icons_2line=0x7f030017;
public static int abc_search_view=0x7f030018;
public static int abc_select_dialog_material=0x7f030019;
public static int abc_tooltip=0x7f03001a;
public static int design_bottom_navigation_item=0x7f03001b;
public static int design_bottom_sheet_dialog=0x7f03001c;
public static int design_layout_snackbar=0x7f03001d;
public static int design_layout_snackbar_include=0x7f03001e;
public static int design_layout_tab_icon=0x7f03001f;
public static int design_layout_tab_text=0x7f030020;
public static int design_menu_item_action_area=0x7f030021;
public static int design_navigation_item=0x7f030022;
public static int design_navigation_item_header=0x7f030023;
public static int design_navigation_item_separator=0x7f030024;
public static int design_navigation_item_subheader=0x7f030025;
public static int design_navigation_menu=0x7f030026;
public static int design_navigation_menu_item=0x7f030027;
public static int design_text_input_password_icon=0x7f030028;
public static int notification_action=0x7f030029;
public static int notification_action_tombstone=0x7f03002a;
public static int notification_media_action=0x7f03002b;
public static int notification_media_cancel_action=0x7f03002c;
public static int notification_template_big_media=0x7f03002d;
public static int notification_template_big_media_custom=0x7f03002e;
public static int notification_template_big_media_narrow=0x7f03002f;
public static int notification_template_big_media_narrow_custom=0x7f030030;
public static int notification_template_custom_big=0x7f030031;
public static int notification_template_icon_group=0x7f030032;
public static int notification_template_lines_media=0x7f030033;
public static int notification_template_media=0x7f030034;
public static int notification_template_media_custom=0x7f030035;
public static int notification_template_part_chronometer=0x7f030036;
public static int notification_template_part_time=0x7f030037;
public static int pdfview=0x7f030038;
public static int select_dialog_item_material=0x7f030039;
public static int select_dialog_multichoice_material=0x7f03003a;
public static int select_dialog_singlechoice_material=0x7f03003b;
public static int support_simple_spinner_dropdown_item=0x7f03003c;
public static int titanium_tabgroup=0x7f03003d;
public static int titanium_ui_checkbox=0x7f03003e;
public static int titanium_ui_date_picker_spinner=0x7f03003f;
public static int titanium_ui_drawer_layout=0x7f030040;
public static int titanium_ui_edittext=0x7f030041;
public static int titanium_ui_list_header_or_footer=0x7f030042;
public static int titanium_ui_list_item=0x7f030043;
public static int titanium_ui_spinner=0x7f030044;
public static int titanium_ui_switchcompat=0x7f030045;
public static int titanium_ui_time_picker_spinner=0x7f030046;
}
public static final class string {
public static int abc_action_bar_home_description=0x7f060000;
public static int abc_action_bar_up_description=0x7f060001;
public static int abc_action_menu_overflow_description=0x7f060002;
public static int abc_action_mode_done=0x7f060003;
public static int abc_activity_chooser_view_see_all=0x7f060004;
public static int abc_activitychooserview_choose_application=0x7f060005;
public static int abc_capital_off=0x7f060006;
public static int abc_capital_on=0x7f060007;
public static int abc_font_family_body_1_material=0x7f060013;
public static int abc_font_family_body_2_material=0x7f060014;
public static int abc_font_family_button_material=0x7f060015;
public static int abc_font_family_caption_material=0x7f060016;
public static int abc_font_family_display_1_material=0x7f060017;
public static int abc_font_family_display_2_material=0x7f060018;
public static int abc_font_family_display_3_material=0x7f060019;
public static int abc_font_family_display_4_material=0x7f06001a;
public static int abc_font_family_headline_material=0x7f06001b;
public static int abc_font_family_menu_material=0x7f06001c;
public static int abc_font_family_subhead_material=0x7f06001d;
public static int abc_font_family_title_material=0x7f06001e;
public static int abc_search_hint=0x7f060008;
public static int abc_searchview_description_clear=0x7f060009;
public static int abc_searchview_description_query=0x7f06000a;
public static int abc_searchview_description_search=0x7f06000b;
public static int abc_searchview_description_submit=0x7f06000c;
public static int abc_searchview_description_voice=0x7f06000d;
public static int abc_shareactionprovider_share_with=0x7f06000e;
public static int abc_shareactionprovider_share_with_application=0x7f06000f;
public static int abc_toolbar_collapse_description=0x7f060010;
public static int app_name=0x7f060027;
public static int appbar_scrolling_view_behavior=0x7f06001f;
public static int bottom_sheet_behavior=0x7f060020;
public static int character_counter_pattern=0x7f060021;
public static int drawer_layout_close=0x7f060029;
public static int drawer_layout_open=0x7f060028;
public static int password_toggle_content_description=0x7f060022;
public static int path_password_eye=0x7f060023;
public static int path_password_eye_mask_strike_through=0x7f060024;
public static int path_password_eye_mask_visible=0x7f060025;
public static int path_password_strike_through=0x7f060026;
public static int search_menu_title=0x7f060011;
public static int status_bar_notification_info_overflow=0x7f060012;
}
public static final class style {
public static int AlertDialog_AppCompat=0x7f080095;
public static int AlertDialog_AppCompat_Light=0x7f080096;
public static int Animation_AppCompat_Dialog=0x7f080097;
public static int Animation_AppCompat_DropDownUp=0x7f080098;
public static int Animation_AppCompat_Tooltip=0x7f080099;
public static int Animation_Design_BottomSheetDialog=0x7f080162;
public static int Base_AlertDialog_AppCompat=0x7f08009a;
public static int Base_AlertDialog_AppCompat_Light=0x7f08009b;
public static int Base_Animation_AppCompat_Dialog=0x7f08009c;
public static int Base_Animation_AppCompat_DropDownUp=0x7f08009d;
public static int Base_Animation_AppCompat_Tooltip=0x7f08009e;
public static int Base_CardView=0x7f08015e;
public static int Base_DialogWindowTitle_AppCompat=0x7f08009f;
public static int Base_DialogWindowTitleBackground_AppCompat=0x7f0800a0;
public static int Base_TextAppearance_AppCompat=0x7f08001f;
public static int Base_TextAppearance_AppCompat_Body1=0x7f080020;
public static int Base_TextAppearance_AppCompat_Body2=0x7f080021;
public static int Base_TextAppearance_AppCompat_Button=0x7f080022;
public static int Base_TextAppearance_AppCompat_Caption=0x7f080023;
public static int Base_TextAppearance_AppCompat_Display1=0x7f080024;
public static int Base_TextAppearance_AppCompat_Display2=0x7f080025;
public static int Base_TextAppearance_AppCompat_Display3=0x7f080026;
public static int Base_TextAppearance_AppCompat_Display4=0x7f080027;
public static int Base_TextAppearance_AppCompat_Headline=0x7f080028;
public static int Base_TextAppearance_AppCompat_Inverse=0x7f080029;
public static int Base_TextAppearance_AppCompat_Large=0x7f08002a;
public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08002b;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f08002c;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f08002d;
public static int Base_TextAppearance_AppCompat_Medium=0x7f08002e;
public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08002f;
public static int Base_TextAppearance_AppCompat_Menu=0x7f080030;
public static int Base_TextAppearance_AppCompat_SearchResult=0x7f0800a1;
public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080031;
public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080032;
public static int Base_TextAppearance_AppCompat_Small=0x7f080033;
public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f080034;
public static int Base_TextAppearance_AppCompat_Subhead=0x7f080035;
public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0800a2;
public static int Base_TextAppearance_AppCompat_Title=0x7f080036;
public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0800a3;
public static int Base_TextAppearance_AppCompat_Tooltip=0x7f0800a4;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f080082;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f080037;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f080038;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f080039;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08003a;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08003b;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08003c;
public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f08003d;
public static int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f08008a;
public static int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f08008b;
public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080083;
public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800a5;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f08003e;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08003f;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080040;
public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080041;
public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080042;
public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800a6;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080043;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080044;
public static int Base_Theme_AppCompat=0x7f080045;
public static int Base_Theme_AppCompat_CompactMenu=0x7f0800a7;
public static int Base_Theme_AppCompat_Dialog=0x7f080046;
public static int Base_Theme_AppCompat_Dialog_Alert=0x7f0800a8;
public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800a9;
public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0800aa;
public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f080002;
public static int Base_Theme_AppCompat_Light=0x7f080047;
public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800ab;
public static int Base_Theme_AppCompat_Light_Dialog=0x7f080048;
public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0800ac;
public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800ad;
public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0800ae;
public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080003;
public static int Base_ThemeOverlay_AppCompat=0x7f0800af;
public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800b0;
public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0800b1;
public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800b2;
public static int Base_ThemeOverlay_AppCompat_Dialog=0x7f080049;
public static int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0800b3;
public static int Base_ThemeOverlay_AppCompat_Light=0x7f0800b4;
public static int Base_V14_Widget_Design_AppBarLayout=0x7f080163;
public static int Base_V21_Theme_AppCompat=0x7f08004a;
public static int Base_V21_Theme_AppCompat_Dialog=0x7f08004b;
public static int Base_V21_Theme_AppCompat_Light=0x7f08004c;
public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08004d;
public static int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08004e;
public static int Base_V21_Widget_Design_AppBarLayout=0x7f08007e;
public static int Base_V22_Theme_AppCompat=0x7f080080;
public static int Base_V22_Theme_AppCompat_Light=0x7f080081;
public static int Base_V23_Theme_AppCompat=0x7f080084;
public static int Base_V23_Theme_AppCompat_Light=0x7f080085;
public static int Base_V26_Theme_AppCompat=0x7f08008e;
public static int Base_V26_Theme_AppCompat_Light=0x7f08008f;
public static int Base_V26_Widget_AppCompat_Toolbar=0x7f080090;
public static int Base_V26_Widget_Design_AppBarLayout=0x7f080092;
public static int Base_V7_Theme_AppCompat=0x7f0800b5;
public static int Base_V7_Theme_AppCompat_Dialog=0x7f0800b6;
public static int Base_V7_Theme_AppCompat_Light=0x7f0800b7;
public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800b8;
public static int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800b9;
public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800ba;
public static int Base_V7_Widget_AppCompat_EditText=0x7f0800bb;
public static int Base_V7_Widget_AppCompat_Toolbar=0x7f0800bc;
public static int Base_Widget_AppCompat_ActionBar=0x7f0800bd;
public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800be;
public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800bf;
public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f08004f;
public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f080050;
public static int Base_Widget_AppCompat_ActionButton=0x7f080051;
public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080052;
public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080053;
public static int Base_Widget_AppCompat_ActionMode=0x7f0800c0;
public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0800c1;
public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080054;
public static int Base_Widget_AppCompat_Button=0x7f080055;
public static int Base_Widget_AppCompat_Button_Borderless=0x7f080056;
public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080057;
public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800c2;
public static int Base_Widget_AppCompat_Button_Colored=0x7f080086;
public static int Base_Widget_AppCompat_Button_Small=0x7f080058;
public static int Base_Widget_AppCompat_ButtonBar=0x7f080059;
public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800c3;
public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f08005a;
public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08005b;
public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800c4;
public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080000;
public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800c5;
public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08005c;
public static int Base_Widget_AppCompat_EditText=0x7f08005d;
public static int Base_Widget_AppCompat_ImageButton=0x7f08005e;
public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0800c6;
public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800c7;
public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800c8;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08005f;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080060;
public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f080061;
public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f080062;
public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080063;
public static int Base_Widget_AppCompat_ListMenuView=0x7f0800c9;
public static int Base_Widget_AppCompat_ListPopupWindow=0x7f080064;
public static int Base_Widget_AppCompat_ListView=0x7f080065;
public static int Base_Widget_AppCompat_ListView_DropDown=0x7f080066;
public static int Base_Widget_AppCompat_ListView_Menu=0x7f080067;
public static int Base_Widget_AppCompat_PopupMenu=0x7f080068;
public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080069;
public static int Base_Widget_AppCompat_PopupWindow=0x7f0800ca;
public static int Base_Widget_AppCompat_ProgressBar=0x7f08006a;
public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08006b;
public static int Base_Widget_AppCompat_RatingBar=0x7f08006c;
public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f080087;
public static int Base_Widget_AppCompat_RatingBar_Small=0x7f080088;
public static int Base_Widget_AppCompat_SearchView=0x7f0800cb;
public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800cc;
public static int Base_Widget_AppCompat_SeekBar=0x7f08006d;
public static int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800cd;
public static int Base_Widget_AppCompat_Spinner=0x7f08006e;
public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f080004;
public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08006f;
public static int Base_Widget_AppCompat_Toolbar=0x7f080091;
public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f080070;
public static int Base_Widget_Design_AppBarLayout=0x7f08007f;
public static int Base_Widget_Design_TabLayout=0x7f080164;
public static int CardView=0x7f080089;
public static int CardView_Dark=0x7f08015f;
public static int CardView_Light=0x7f080160;
public static int Platform_AppCompat=0x7f080071;
public static int Platform_AppCompat_Light=0x7f080072;
public static int Platform_ThemeOverlay_AppCompat=0x7f080073;
public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f080074;
public static int Platform_ThemeOverlay_AppCompat_Light=0x7f080075;
public static int Platform_V21_AppCompat=0x7f080076;
public static int Platform_V21_AppCompat_Light=0x7f080077;
public static int Platform_V25_AppCompat=0x7f08008c;
public static int Platform_V25_AppCompat_Light=0x7f08008d;
public static int Platform_Widget_AppCompat_Spinner=0x7f0800ce;
public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f08000d;
public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08000e;
public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08000f;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f080010;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f080011;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f080012;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f080013;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080014;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080015;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080016;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080017;
public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080018;
public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080019;
public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f08001a;
public static int TextAppearance_AppCompat=0x7f0800cf;
public static int TextAppearance_AppCompat_Body1=0x7f0800d0;
public static int TextAppearance_AppCompat_Body2=0x7f0800d1;
public static int TextAppearance_AppCompat_Button=0x7f0800d2;
public static int TextAppearance_AppCompat_Caption=0x7f0800d3;
public static int TextAppearance_AppCompat_Display1=0x7f0800d4;
public static int TextAppearance_AppCompat_Display2=0x7f0800d5;
public static int TextAppearance_AppCompat_Display3=0x7f0800d6;
public static int TextAppearance_AppCompat_Display4=0x7f0800d7;
public static int TextAppearance_AppCompat_Headline=0x7f0800d8;
public static int TextAppearance_AppCompat_Inverse=0x7f0800d9;
public static int TextAppearance_AppCompat_Large=0x7f0800da;
public static int TextAppearance_AppCompat_Large_Inverse=0x7f0800db;
public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800dc;
public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800dd;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800de;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800df;
public static int TextAppearance_AppCompat_Medium=0x7f0800e0;
public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0800e1;
public static int TextAppearance_AppCompat_Menu=0x7f0800e2;
public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0800e3;
public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0800e4;
public static int TextAppearance_AppCompat_Small=0x7f0800e5;
public static int TextAppearance_AppCompat_Small_Inverse=0x7f0800e6;
public static int TextAppearance_AppCompat_Subhead=0x7f0800e7;
public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0800e8;
public static int TextAppearance_AppCompat_Title=0x7f0800e9;
public static int TextAppearance_AppCompat_Title_Inverse=0x7f0800ea;
public static int TextAppearance_AppCompat_Tooltip=0x7f08000c;
public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800eb;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0800ec;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0800ed;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0800ee;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0800ef;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0800f0;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0800f1;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0800f2;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0800f3;
public static int TextAppearance_AppCompat_Widget_Button=0x7f0800f4;
public static int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800f5;
public static int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800f6;
public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800f7;
public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800f8;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0800f9;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0800fa;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0800fb;
public static int TextAppearance_AppCompat_Widget_Switch=0x7f0800fc;
public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0800fd;
public static int TextAppearance_Compat_Notification=0x7f080078;
public static int TextAppearance_Compat_Notification_Info=0x7f080079;
public static int TextAppearance_Compat_Notification_Info_Media=0x7f08001b;
public static int TextAppearance_Compat_Notification_Line2=0x7f080161;
public static int TextAppearance_Compat_Notification_Line2_Media=0x7f080094;
public static int TextAppearance_Compat_Notification_Media=0x7f08001c;
public static int TextAppearance_Compat_Notification_Time=0x7f08007a;
public static int TextAppearance_Compat_Notification_Time_Media=0x7f08001d;
public static int TextAppearance_Compat_Notification_Title=0x7f08007b;
public static int TextAppearance_Compat_Notification_Title_Media=0x7f08001e;
public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080165;
public static int TextAppearance_Design_Counter=0x7f080166;
public static int TextAppearance_Design_Counter_Overflow=0x7f080167;
public static int TextAppearance_Design_Error=0x7f080168;
public static int TextAppearance_Design_Hint=0x7f080169;
public static int TextAppearance_Design_Snackbar_Message=0x7f08016a;
public static int TextAppearance_Design_Tab=0x7f08016b;
public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800fe;
public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0800ff;
public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080100;
public static int Theme_AppCompat=0x7f080101;
public static int Theme_AppCompat_CompactMenu=0x7f080102;
public static int Theme_AppCompat_DayNight=0x7f080005;
public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f080006;
public static int Theme_AppCompat_DayNight_Dialog=0x7f080007;
public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080008;
public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080009;
public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f08000a;
public static int Theme_AppCompat_DayNight_NoActionBar=0x7f08000b;
public static int Theme_AppCompat_Dialog=0x7f080103;
public static int Theme_AppCompat_Dialog_Alert=0x7f080104;
public static int Theme_AppCompat_Dialog_MinWidth=0x7f080105;
public static int Theme_AppCompat_DialogWhenLarge=0x7f080106;
public static int Theme_AppCompat_Light=0x7f080107;
public static int Theme_AppCompat_Light_DarkActionBar=0x7f080108;
public static int Theme_AppCompat_Light_Dialog=0x7f080109;
public static int Theme_AppCompat_Light_Dialog_Alert=0x7f08010a;
public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08010b;
public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f08010c;
public static int Theme_AppCompat_Light_NoActionBar=0x7f08010d;
public static int Theme_AppCompat_NoActionBar=0x7f08010e;
public static int Theme_Design=0x7f08016c;
public static int Theme_Design_BottomSheetDialog=0x7f08016d;
public static int Theme_Design_Light=0x7f08016e;
public static int Theme_Design_Light_BottomSheetDialog=0x7f08016f;
public static int Theme_Design_Light_NoActionBar=0x7f080170;
public static int Theme_Design_NoActionBar=0x7f080171;
public static int ThemeOverlay_AppCompat=0x7f08010f;
public static int ThemeOverlay_AppCompat_ActionBar=0x7f080110;
public static int ThemeOverlay_AppCompat_Dark=0x7f080111;
public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080112;
public static int ThemeOverlay_AppCompat_Dialog=0x7f080113;
public static int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080114;
public static int ThemeOverlay_AppCompat_Light=0x7f080115;
public static int Widget_AppCompat_ActionBar=0x7f080116;
public static int Widget_AppCompat_ActionBar_Solid=0x7f080117;
public static int Widget_AppCompat_ActionBar_TabBar=0x7f080118;
public static int Widget_AppCompat_ActionBar_TabText=0x7f080119;
public static int Widget_AppCompat_ActionBar_TabView=0x7f08011a;
public static int Widget_AppCompat_ActionButton=0x7f08011b;
public static int Widget_AppCompat_ActionButton_CloseMode=0x7f08011c;
public static int Widget_AppCompat_ActionButton_Overflow=0x7f08011d;
public static int Widget_AppCompat_ActionMode=0x7f08011e;
public static int Widget_AppCompat_ActivityChooserView=0x7f08011f;
public static int Widget_AppCompat_AutoCompleteTextView=0x7f080120;
public static int Widget_AppCompat_Button=0x7f080121;
public static int Widget_AppCompat_Button_Borderless=0x7f080122;
public static int Widget_AppCompat_Button_Borderless_Colored=0x7f080123;
public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080124;
public static int Widget_AppCompat_Button_Colored=0x7f080125;
public static int Widget_AppCompat_Button_Small=0x7f080126;
public static int Widget_AppCompat_ButtonBar=0x7f080127;
public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080128;
public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f080129;
public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f08012a;
public static int Widget_AppCompat_CompoundButton_Switch=0x7f08012b;
public static int Widget_AppCompat_DrawerArrowToggle=0x7f08012c;
public static int Widget_AppCompat_DropDownItem_Spinner=0x7f08012d;
public static int Widget_AppCompat_EditText=0x7f08012e;
public static int Widget_AppCompat_ImageButton=0x7f08012f;
public static int Widget_AppCompat_Light_ActionBar=0x7f080130;
public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f080131;
public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080132;
public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080133;
public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080134;
public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f080135;
public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080136;
public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f080137;
public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080138;
public static int Widget_AppCompat_Light_ActionButton=0x7f080139;
public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08013a;
public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08013b;
public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08013c;
public static int Widget_AppCompat_Light_ActivityChooserView=0x7f08013d;
public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08013e;
public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08013f;
public static int Widget_AppCompat_Light_ListPopupWindow=0x7f080140;
public static int Widget_AppCompat_Light_ListView_DropDown=0x7f080141;
public static int Widget_AppCompat_Light_PopupMenu=0x7f080142;
public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080143;
public static int Widget_AppCompat_Light_SearchView=0x7f080144;
public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080145;
public static int Widget_AppCompat_ListMenuView=0x7f080146;
public static int Widget_AppCompat_ListPopupWindow=0x7f080147;
public static int Widget_AppCompat_ListView=0x7f080148;
public static int Widget_AppCompat_ListView_DropDown=0x7f080149;
public static int Widget_AppCompat_ListView_Menu=0x7f08014a;
public static int Widget_AppCompat_PopupMenu=0x7f08014b;
public static int Widget_AppCompat_PopupMenu_Overflow=0x7f08014c;
public static int Widget_AppCompat_PopupWindow=0x7f08014d;
public static int Widget_AppCompat_ProgressBar=0x7f08014e;
public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f08014f;
public static int Widget_AppCompat_RatingBar=0x7f080150;
public static int Widget_AppCompat_RatingBar_Indicator=0x7f080151;
public static int Widget_AppCompat_RatingBar_Small=0x7f080152;
public static int Widget_AppCompat_SearchView=0x7f080153;
public static int Widget_AppCompat_SearchView_ActionBar=0x7f080154;
public static int Widget_AppCompat_SeekBar=0x7f080155;
public static int Widget_AppCompat_SeekBar_Discrete=0x7f080156;
public static int Widget_AppCompat_Spinner=0x7f080157;
public static int Widget_AppCompat_Spinner_DropDown=0x7f080158;
public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080159;
public static int Widget_AppCompat_Spinner_Underlined=0x7f08015a;
public static int Widget_AppCompat_TextView_SpinnerItem=0x7f08015b;
public static int Widget_AppCompat_Toolbar=0x7f08015c;
public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08015d;
public static int Widget_Compat_NotificationActionContainer=0x7f08007c;
public static int Widget_Compat_NotificationActionText=0x7f08007d;
public static int Widget_Design_AppBarLayout=0x7f080172;
public static int Widget_Design_BottomNavigationView=0x7f080173;
public static int Widget_Design_BottomSheet_Modal=0x7f080174;
public static int Widget_Design_CollapsingToolbar=0x7f080175;
public static int Widget_Design_CoordinatorLayout=0x7f080176;
public static int Widget_Design_FloatingActionButton=0x7f080177;
public static int Widget_Design_NavigationView=0x7f080178;
public static int Widget_Design_ScrimInsetsFrameLayout=0x7f080179;
public static int Widget_Design_Snackbar=0x7f08017a;
public static int Widget_Design_TabLayout=0x7f080001;
public static int Widget_Design_TextInputLayout=0x7f08017b;
public static int Widget_Support_CoordinatorLayout=0x7f080093;
}
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 fr.squirrel.pdfview:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit fr.squirrel.pdfview:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked fr.squirrel.pdfview:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd fr.squirrel.pdfview:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions fr.squirrel.pdfview:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft fr.squirrel.pdfview:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight fr.squirrel.pdfview:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart fr.squirrel.pdfview:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation fr.squirrel.pdfview:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout fr.squirrel.pdfview:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions fr.squirrel.pdfview:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider fr.squirrel.pdfview:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation fr.squirrel.pdfview:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height fr.squirrel.pdfview:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll fr.squirrel.pdfview:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator fr.squirrel.pdfview:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout fr.squirrel.pdfview:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon fr.squirrel.pdfview:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle fr.squirrel.pdfview:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding fr.squirrel.pdfview:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo fr.squirrel.pdfview:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode fr.squirrel.pdfview:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme fr.squirrel.pdfview:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding fr.squirrel.pdfview:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle fr.squirrel.pdfview:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle fr.squirrel.pdfview:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle fr.squirrel.pdfview:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title fr.squirrel.pdfview:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle fr.squirrel.pdfview:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionBar_background
@see #ActionBar_backgroundSplit
@see #ActionBar_backgroundStacked
@see #ActionBar_contentInsetEnd
@see #ActionBar_contentInsetEndWithActions
@see #ActionBar_contentInsetLeft
@see #ActionBar_contentInsetRight
@see #ActionBar_contentInsetStart
@see #ActionBar_contentInsetStartWithNavigation
@see #ActionBar_customNavigationLayout
@see #ActionBar_displayOptions
@see #ActionBar_divider
@see #ActionBar_elevation
@see #ActionBar_height
@see #ActionBar_hideOnContentScroll
@see #ActionBar_homeAsUpIndicator
@see #ActionBar_homeLayout
@see #ActionBar_icon
@see #ActionBar_indeterminateProgressStyle
@see #ActionBar_itemPadding
@see #ActionBar_logo
@see #ActionBar_navigationMode
@see #ActionBar_popupTheme
@see #ActionBar_progressBarPadding
@see #ActionBar_progressBarStyle
@see #ActionBar_subtitle
@see #ActionBar_subtitleTextStyle
@see #ActionBar_title
@see #ActionBar_titleTextStyle
*/
public static final int[] ActionBar = {
0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014,
0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018,
0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c,
0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020,
0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024,
0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028,
0x7f010029, 0x7f01002a, 0x7f010071, 0x7f01016a,
0x7f01016c
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:background
*/
public static int ActionBar_background = 8;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:backgroundSplit
*/
public static int ActionBar_backgroundSplit = 10;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:backgroundStacked
*/
public static int ActionBar_backgroundStacked = 9;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:contentInsetEnd
*/
public static int ActionBar_contentInsetEnd = 19;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:contentInsetEndWithActions
*/
public static int ActionBar_contentInsetEndWithActions = 23;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:contentInsetLeft
*/
public static int ActionBar_contentInsetLeft = 20;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:contentInsetRight
*/
public static int ActionBar_contentInsetRight = 21;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:contentInsetStart
*/
public static int ActionBar_contentInsetStart = 18;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:contentInsetStartWithNavigation
*/
public static int ActionBar_contentInsetStartWithNavigation = 22;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:customNavigationLayout
*/
public static int ActionBar_customNavigationLayout = 11;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:displayOptions
*/
public static int ActionBar_displayOptions = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:divider
*/
public static int ActionBar_divider = 7;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:elevation
*/
public static int ActionBar_elevation = 24;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:height
*/
public static int ActionBar_height = 27;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:hideOnContentScroll
*/
public static int ActionBar_hideOnContentScroll = 17;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:homeAsUpIndicator
*/
public static int ActionBar_homeAsUpIndicator = 26;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:homeLayout
*/
public static int ActionBar_homeLayout = 12;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:icon
*/
public static int ActionBar_icon = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:indeterminateProgressStyle
*/
public static int ActionBar_indeterminateProgressStyle = 14;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:itemPadding
*/
public static int ActionBar_itemPadding = 16;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:logo
*/
public static int ActionBar_logo = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:navigationMode
*/
public static int ActionBar_navigationMode = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:popupTheme
*/
public static int ActionBar_popupTheme = 25;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:progressBarPadding
*/
public static int ActionBar_progressBarPadding = 15;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:progressBarStyle
*/
public static int ActionBar_progressBarStyle = 13;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:subtitle
*/
public static int ActionBar_subtitle = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:subtitleTextStyle
*/
public static int ActionBar_subtitleTextStyle = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:title
*/
public static int ActionBar_title = 28;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:titleTextStyle
*/
public static int ActionBar_titleTextStyle = 3;
/** 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 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 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 fr.squirrel.pdfview:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit fr.squirrel.pdfview:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout fr.squirrel.pdfview:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height fr.squirrel.pdfview:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle fr.squirrel.pdfview:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle fr.squirrel.pdfview: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 = {
0x7f010014, 0x7f010015, 0x7f010019, 0x7f01001b,
0x7f01002b, 0x7f01016a
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:background
*/
public static int ActionMode_background = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:backgroundSplit
*/
public static int ActionMode_backgroundSplit = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:closeItemLayout
*/
public static int ActionMode_closeItemLayout = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:height
*/
public static int ActionMode_height = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:subtitleTextStyle
*/
public static int ActionMode_subtitleTextStyle = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:titleTextStyle
*/
public static int ActionMode_titleTextStyle = 0;
/** 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 fr.squirrel.pdfview:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount fr.squirrel.pdfview:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f01002c, 0x7f01002d
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:expandActivityOverflowButtonDrawable
*/
public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:initialActivityCount
*/
public static 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_buttonIconDimen fr.squirrel.pdfview:buttonIconDimen}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_buttonPanelSideLayout fr.squirrel.pdfview:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout fr.squirrel.pdfview:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout fr.squirrel.pdfview:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout fr.squirrel.pdfview:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle fr.squirrel.pdfview:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout fr.squirrel.pdfview:singleChoiceItemLayout}</code></td><td></td></tr>
</table>
@see #AlertDialog_android_layout
@see #AlertDialog_buttonIconDimen
@see #AlertDialog_buttonPanelSideLayout
@see #AlertDialog_listItemLayout
@see #AlertDialog_listLayout
@see #AlertDialog_multiChoiceItemLayout
@see #AlertDialog_showTitle
@see #AlertDialog_singleChoiceItemLayout
*/
public static final int[] AlertDialog = {
0x010100f2, 0x7f01002e, 0x7f01002f, 0x7f010030,
0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034
};
/**
<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 int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#buttonIconDimen}
attribute's value can be found in the {@link #AlertDialog} 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 fr.squirrel.pdfview:buttonIconDimen
*/
public static int AlertDialog_buttonIconDimen = 7;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:buttonPanelSideLayout
*/
public static int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:listItemLayout
*/
public static int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:listLayout
*/
public static int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:multiChoiceItemLayout
*/
public static int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#showTitle}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:showTitle
*/
public static int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:singleChoiceItemLayout
*/
public static int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_elevation fr.squirrel.pdfview:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded fr.squirrel.pdfview:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_android_keyboardNavigationCluster
@see #AppBarLayout_android_touchscreenBlocksFocus
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x0101048f, 0x01010540, 0x7f010029,
0x7f010119
};
/**
<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 int AppBarLayout_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:keyboardNavigationCluster
*/
public static int AppBarLayout_android_keyboardNavigationCluster = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:touchscreenBlocksFocus
*/
public static int AppBarLayout_android_touchscreenBlocksFocus = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:elevation
*/
public static int AppBarLayout_elevation = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:expanded
*/
public static int AppBarLayout_expanded = 4;
/** Attributes that can be used with a AppBarLayoutStates.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsed fr.squirrel.pdfview:state_collapsed}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsible fr.squirrel.pdfview:state_collapsible}</code></td><td></td></tr>
</table>
@see #AppBarLayoutStates_state_collapsed
@see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates = {
0x7f01011a, 0x7f01011b
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#state_collapsed}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:state_collapsed
*/
public static int AppBarLayoutStates_state_collapsed = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#state_collapsible}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:state_collapsible
*/
public static int AppBarLayoutStates_state_collapsible = 1;
/** Attributes that can be used with a AppBarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags fr.squirrel.pdfview:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator fr.squirrel.pdfview:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_Layout_layout_scrollFlags
@see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout = {
0x7f01011c, 0x7f01011d
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#layout_scrollFlags}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:layout_scrollFlags
*/
public static int AppBarLayout_Layout_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#layout_scrollInterpolator}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:layout_scrollInterpolator
*/
public static int AppBarLayout_Layout_layout_scrollInterpolator = 1;
/** Attributes that can be used with a AppCompatImageView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_srcCompat fr.squirrel.pdfview:srcCompat}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tint fr.squirrel.pdfview:tint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tintMode fr.squirrel.pdfview:tintMode}</code></td><td></td></tr>
</table>
@see #AppCompatImageView_android_src
@see #AppCompatImageView_srcCompat
@see #AppCompatImageView_tint
@see #AppCompatImageView_tintMode
*/
public static final int[] AppCompatImageView = {
0x01010119, 0x7f010035, 0x7f010036, 0x7f010037
};
/**
<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 int AppCompatImageView_android_src = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:srcCompat
*/
public static int AppCompatImageView_srcCompat = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#tint}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:tint
*/
public static int AppCompatImageView_tint = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#tintMode}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:tintMode
*/
public static int AppCompatImageView_tintMode = 3;
/** Attributes that can be used with a AppCompatSeekBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMark fr.squirrel.pdfview:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint fr.squirrel.pdfview:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode fr.squirrel.pdfview:tickMarkTintMode}</code></td><td></td></tr>
</table>
@see #AppCompatSeekBar_android_thumb
@see #AppCompatSeekBar_tickMark
@see #AppCompatSeekBar_tickMarkTint
@see #AppCompatSeekBar_tickMarkTintMode
*/
public static final int[] AppCompatSeekBar = {
0x01010142, 0x7f010038, 0x7f010039, 0x7f01003a
};
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
@attr name android:thumb
*/
public static int AppCompatSeekBar_android_thumb = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#tickMark}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:tickMark
*/
public static int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#tickMarkTint}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:tickMarkTint
*/
public static int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#tickMarkTintMode}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:tickMarkTintMode
*/
public static int AppCompatSeekBar_tickMarkTintMode = 3;
/** Attributes that can be used with a AppCompatTextHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
</table>
@see #AppCompatTextHelper_android_drawableBottom
@see #AppCompatTextHelper_android_drawableEnd
@see #AppCompatTextHelper_android_drawableLeft
@see #AppCompatTextHelper_android_drawableRight
@see #AppCompatTextHelper_android_drawableStart
@see #AppCompatTextHelper_android_drawableTop
@see #AppCompatTextHelper_android_textAppearance
*/
public static final int[] AppCompatTextHelper = {
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableBottom
*/
public static int AppCompatTextHelper_android_drawableBottom = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableEnd
*/
public static int AppCompatTextHelper_android_drawableEnd = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableLeft
*/
public static int AppCompatTextHelper_android_drawableLeft = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableRight}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableRight
*/
public static int AppCompatTextHelper_android_drawableRight = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableStart}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableStart
*/
public static int AppCompatTextHelper_android_drawableStart = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableTop}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableTop
*/
public static int AppCompatTextHelper_android_drawableTop = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:textAppearance
*/
public static int AppCompatTextHelper_android_textAppearance = 0;
/** Attributes that can be used with a AppCompatTextView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize fr.squirrel.pdfview:autoSizeMaxTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize fr.squirrel.pdfview:autoSizeMinTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes fr.squirrel.pdfview:autoSizePresetSizes}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity fr.squirrel.pdfview:autoSizeStepGranularity}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeTextType fr.squirrel.pdfview:autoSizeTextType}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_fontFamily fr.squirrel.pdfview:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps fr.squirrel.pdfview:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_autoSizeMaxTextSize
@see #AppCompatTextView_autoSizeMinTextSize
@see #AppCompatTextView_autoSizePresetSizes
@see #AppCompatTextView_autoSizeStepGranularity
@see #AppCompatTextView_autoSizeTextType
@see #AppCompatTextView_fontFamily
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f01003b, 0x7f01003c, 0x7f01003d,
0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041
};
/**
<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 int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#autoSizeMaxTextSize}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:autoSizeMaxTextSize
*/
public static int AppCompatTextView_autoSizeMaxTextSize = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#autoSizeMinTextSize}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:autoSizeMinTextSize
*/
public static int AppCompatTextView_autoSizeMinTextSize = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#autoSizePresetSizes}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:autoSizePresetSizes
*/
public static int AppCompatTextView_autoSizePresetSizes = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#autoSizeStepGranularity}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:autoSizeStepGranularity
*/
public static int AppCompatTextView_autoSizeStepGranularity = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#autoSizeTextType}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>uniform</code></td><td>1</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:autoSizeTextType
*/
public static int AppCompatTextView_autoSizeTextType = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fontFamily}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:fontFamily
*/
public static int AppCompatTextView_fontFamily = 7;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:textAllCaps
*/
public static 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 fr.squirrel.pdfview:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground fr.squirrel.pdfview:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme fr.squirrel.pdfview:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize fr.squirrel.pdfview:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle fr.squirrel.pdfview:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle fr.squirrel.pdfview:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle fr.squirrel.pdfview:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle fr.squirrel.pdfview:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle fr.squirrel.pdfview:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme fr.squirrel.pdfview:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme fr.squirrel.pdfview:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle fr.squirrel.pdfview:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle fr.squirrel.pdfview:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance fr.squirrel.pdfview:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor fr.squirrel.pdfview:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground fr.squirrel.pdfview:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle fr.squirrel.pdfview:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable fr.squirrel.pdfview:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable fr.squirrel.pdfview:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable fr.squirrel.pdfview:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable fr.squirrel.pdfview:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable fr.squirrel.pdfview:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle fr.squirrel.pdfview:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable fr.squirrel.pdfview:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable fr.squirrel.pdfview:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground fr.squirrel.pdfview:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle fr.squirrel.pdfview:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable fr.squirrel.pdfview:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle fr.squirrel.pdfview:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle fr.squirrel.pdfview:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle fr.squirrel.pdfview:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle fr.squirrel.pdfview:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons fr.squirrel.pdfview:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle fr.squirrel.pdfview:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme fr.squirrel.pdfview: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 fr.squirrel.pdfview:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle fr.squirrel.pdfview:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle fr.squirrel.pdfview:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle fr.squirrel.pdfview:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle fr.squirrel.pdfview:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle fr.squirrel.pdfview:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle fr.squirrel.pdfview:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle fr.squirrel.pdfview:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall fr.squirrel.pdfview:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle fr.squirrel.pdfview:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle fr.squirrel.pdfview:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent fr.squirrel.pdfview:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating fr.squirrel.pdfview:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal fr.squirrel.pdfview:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated fr.squirrel.pdfview:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight fr.squirrel.pdfview:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal fr.squirrel.pdfview:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorError fr.squirrel.pdfview:colorError}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary fr.squirrel.pdfview:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark fr.squirrel.pdfview:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal fr.squirrel.pdfview:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground fr.squirrel.pdfview:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding fr.squirrel.pdfview:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme fr.squirrel.pdfview:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal fr.squirrel.pdfview:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical fr.squirrel.pdfview:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle fr.squirrel.pdfview:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight fr.squirrel.pdfview:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground fr.squirrel.pdfview:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor fr.squirrel.pdfview:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle fr.squirrel.pdfview:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator fr.squirrel.pdfview:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle fr.squirrel.pdfview:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator fr.squirrel.pdfview:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog fr.squirrel.pdfview:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle fr.squirrel.pdfview:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle fr.squirrel.pdfview:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight fr.squirrel.pdfview:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge fr.squirrel.pdfview:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall fr.squirrel.pdfview:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft fr.squirrel.pdfview:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight fr.squirrel.pdfview:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground fr.squirrel.pdfview:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme fr.squirrel.pdfview:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth fr.squirrel.pdfview:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle fr.squirrel.pdfview:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle fr.squirrel.pdfview:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle fr.squirrel.pdfview:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle fr.squirrel.pdfview:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator fr.squirrel.pdfview:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall fr.squirrel.pdfview:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle fr.squirrel.pdfview:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle fr.squirrel.pdfview:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground fr.squirrel.pdfview:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless fr.squirrel.pdfview:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle fr.squirrel.pdfview:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle fr.squirrel.pdfview:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle fr.squirrel.pdfview:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu fr.squirrel.pdfview:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem fr.squirrel.pdfview:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary fr.squirrel.pdfview:textAppearanceListItemSecondary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall fr.squirrel.pdfview:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader fr.squirrel.pdfview:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle fr.squirrel.pdfview:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle fr.squirrel.pdfview:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu fr.squirrel.pdfview:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem fr.squirrel.pdfview:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl fr.squirrel.pdfview:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle fr.squirrel.pdfview:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle fr.squirrel.pdfview:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor fr.squirrel.pdfview:tooltipForegroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground fr.squirrel.pdfview:tooltipFrameBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_viewInflaterClass fr.squirrel.pdfview:viewInflaterClass}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar fr.squirrel.pdfview:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay fr.squirrel.pdfview:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay fr.squirrel.pdfview:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor fr.squirrel.pdfview:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor fr.squirrel.pdfview:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor fr.squirrel.pdfview:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor fr.squirrel.pdfview:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor fr.squirrel.pdfview:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor fr.squirrel.pdfview:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle fr.squirrel.pdfview:windowNoTitle}</code></td><td></td></tr>
</table>
@see #AppCompatTheme_actionBarDivider
@see #AppCompatTheme_actionBarItemBackground
@see #AppCompatTheme_actionBarPopupTheme
@see #AppCompatTheme_actionBarSize
@see #AppCompatTheme_actionBarSplitStyle
@see #AppCompatTheme_actionBarStyle
@see #AppCompatTheme_actionBarTabBarStyle
@see #AppCompatTheme_actionBarTabStyle
@see #AppCompatTheme_actionBarTabTextStyle
@see #AppCompatTheme_actionBarTheme
@see #AppCompatTheme_actionBarWidgetTheme
@see #AppCompatTheme_actionButtonStyle
@see #AppCompatTheme_actionDropDownStyle
@see #AppCompatTheme_actionMenuTextAppearance
@see #AppCompatTheme_actionMenuTextColor
@see #AppCompatTheme_actionModeBackground
@see #AppCompatTheme_actionModeCloseButtonStyle
@see #AppCompatTheme_actionModeCloseDrawable
@see #AppCompatTheme_actionModeCopyDrawable
@see #AppCompatTheme_actionModeCutDrawable
@see #AppCompatTheme_actionModeFindDrawable
@see #AppCompatTheme_actionModePasteDrawable
@see #AppCompatTheme_actionModePopupWindowStyle
@see #AppCompatTheme_actionModeSelectAllDrawable
@see #AppCompatTheme_actionModeShareDrawable
@see #AppCompatTheme_actionModeSplitBackground
@see #AppCompatTheme_actionModeStyle
@see #AppCompatTheme_actionModeWebSearchDrawable
@see #AppCompatTheme_actionOverflowButtonStyle
@see #AppCompatTheme_actionOverflowMenuStyle
@see #AppCompatTheme_activityChooserViewStyle
@see #AppCompatTheme_alertDialogButtonGroupStyle
@see #AppCompatTheme_alertDialogCenterButtons
@see #AppCompatTheme_alertDialogStyle
@see #AppCompatTheme_alertDialogTheme
@see #AppCompatTheme_android_windowAnimationStyle
@see #AppCompatTheme_android_windowIsFloating
@see #AppCompatTheme_autoCompleteTextViewStyle
@see #AppCompatTheme_borderlessButtonStyle
@see #AppCompatTheme_buttonBarButtonStyle
@see #AppCompatTheme_buttonBarNegativeButtonStyle
@see #AppCompatTheme_buttonBarNeutralButtonStyle
@see #AppCompatTheme_buttonBarPositiveButtonStyle
@see #AppCompatTheme_buttonBarStyle
@see #AppCompatTheme_buttonStyle
@see #AppCompatTheme_buttonStyleSmall
@see #AppCompatTheme_checkboxStyle
@see #AppCompatTheme_checkedTextViewStyle
@see #AppCompatTheme_colorAccent
@see #AppCompatTheme_colorBackgroundFloating
@see #AppCompatTheme_colorButtonNormal
@see #AppCompatTheme_colorControlActivated
@see #AppCompatTheme_colorControlHighlight
@see #AppCompatTheme_colorControlNormal
@see #AppCompatTheme_colorError
@see #AppCompatTheme_colorPrimary
@see #AppCompatTheme_colorPrimaryDark
@see #AppCompatTheme_colorSwitchThumbNormal
@see #AppCompatTheme_controlBackground
@see #AppCompatTheme_dialogPreferredPadding
@see #AppCompatTheme_dialogTheme
@see #AppCompatTheme_dividerHorizontal
@see #AppCompatTheme_dividerVertical
@see #AppCompatTheme_dropDownListViewStyle
@see #AppCompatTheme_dropdownListPreferredItemHeight
@see #AppCompatTheme_editTextBackground
@see #AppCompatTheme_editTextColor
@see #AppCompatTheme_editTextStyle
@see #AppCompatTheme_homeAsUpIndicator
@see #AppCompatTheme_imageButtonStyle
@see #AppCompatTheme_listChoiceBackgroundIndicator
@see #AppCompatTheme_listDividerAlertDialog
@see #AppCompatTheme_listMenuViewStyle
@see #AppCompatTheme_listPopupWindowStyle
@see #AppCompatTheme_listPreferredItemHeight
@see #AppCompatTheme_listPreferredItemHeightLarge
@see #AppCompatTheme_listPreferredItemHeightSmall
@see #AppCompatTheme_listPreferredItemPaddingLeft
@see #AppCompatTheme_listPreferredItemPaddingRight
@see #AppCompatTheme_panelBackground
@see #AppCompatTheme_panelMenuListTheme
@see #AppCompatTheme_panelMenuListWidth
@see #AppCompatTheme_popupMenuStyle
@see #AppCompatTheme_popupWindowStyle
@see #AppCompatTheme_radioButtonStyle
@see #AppCompatTheme_ratingBarStyle
@see #AppCompatTheme_ratingBarStyleIndicator
@see #AppCompatTheme_ratingBarStyleSmall
@see #AppCompatTheme_searchViewStyle
@see #AppCompatTheme_seekBarStyle
@see #AppCompatTheme_selectableItemBackground
@see #AppCompatTheme_selectableItemBackgroundBorderless
@see #AppCompatTheme_spinnerDropDownItemStyle
@see #AppCompatTheme_spinnerStyle
@see #AppCompatTheme_switchStyle
@see #AppCompatTheme_textAppearanceLargePopupMenu
@see #AppCompatTheme_textAppearanceListItem
@see #AppCompatTheme_textAppearanceListItemSecondary
@see #AppCompatTheme_textAppearanceListItemSmall
@see #AppCompatTheme_textAppearancePopupMenuHeader
@see #AppCompatTheme_textAppearanceSearchResultSubtitle
@see #AppCompatTheme_textAppearanceSearchResultTitle
@see #AppCompatTheme_textAppearanceSmallPopupMenu
@see #AppCompatTheme_textColorAlertDialogListItem
@see #AppCompatTheme_textColorSearchUrl
@see #AppCompatTheme_toolbarNavigationButtonStyle
@see #AppCompatTheme_toolbarStyle
@see #AppCompatTheme_tooltipForegroundColor
@see #AppCompatTheme_tooltipFrameBackground
@see #AppCompatTheme_viewInflaterClass
@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, 0x7f010042, 0x7f010043,
0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047,
0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b,
0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f,
0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053,
0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057,
0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b,
0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f,
0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063,
0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067,
0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b,
0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f,
0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073,
0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077,
0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b,
0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f,
0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083,
0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087,
0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b,
0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f,
0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093,
0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097,
0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b,
0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f,
0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3,
0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7,
0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab,
0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af,
0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3,
0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionBarDivider
*/
public static int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionBarItemBackground
*/
public static int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionBarPopupTheme
*/
public static int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionBarSize
*/
public static int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionBarSplitStyle
*/
public static int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionBarStyle
*/
public static int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionBarTabBarStyle
*/
public static int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionBarTabStyle
*/
public static int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionBarTabTextStyle
*/
public static int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionBarTheme
*/
public static int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionBarWidgetTheme
*/
public static int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionButtonStyle
*/
public static int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionDropDownStyle
*/
public static int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionMenuTextAppearance
*/
public static int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionMenuTextColor
*/
public static int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionModeBackground
*/
public static int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionModeCloseButtonStyle
*/
public static int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionModeCloseDrawable
*/
public static int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionModeCopyDrawable
*/
public static int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionModeCutDrawable
*/
public static int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionModeFindDrawable
*/
public static int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionModePasteDrawable
*/
public static int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionModePopupWindowStyle
*/
public static int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionModeSelectAllDrawable
*/
public static int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionModeShareDrawable
*/
public static int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionModeSplitBackground
*/
public static int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionModeStyle
*/
public static int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionModeWebSearchDrawable
*/
public static int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionOverflowButtonStyle
*/
public static int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionOverflowMenuStyle
*/
public static int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:activityChooserViewStyle
*/
public static int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:alertDialogButtonGroupStyle
*/
public static int AppCompatTheme_alertDialogButtonGroupStyle = 95;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:alertDialogCenterButtons
*/
public static int AppCompatTheme_alertDialogCenterButtons = 96;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:alertDialogStyle
*/
public static int AppCompatTheme_alertDialogStyle = 94;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:alertDialogTheme
*/
public static int AppCompatTheme_alertDialogTheme = 97;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowAnimationStyle
*/
public static 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 int AppCompatTheme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:autoCompleteTextViewStyle
*/
public static int AppCompatTheme_autoCompleteTextViewStyle = 102;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:borderlessButtonStyle
*/
public static int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:buttonBarButtonStyle
*/
public static int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:buttonBarNegativeButtonStyle
*/
public static int AppCompatTheme_buttonBarNegativeButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:buttonBarNeutralButtonStyle
*/
public static int AppCompatTheme_buttonBarNeutralButtonStyle = 101;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:buttonBarPositiveButtonStyle
*/
public static int AppCompatTheme_buttonBarPositiveButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:buttonBarStyle
*/
public static int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:buttonStyle
*/
public static int AppCompatTheme_buttonStyle = 103;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:buttonStyleSmall
*/
public static int AppCompatTheme_buttonStyleSmall = 104;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:checkboxStyle
*/
public static int AppCompatTheme_checkboxStyle = 105;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:checkedTextViewStyle
*/
public static int AppCompatTheme_checkedTextViewStyle = 106;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:colorAccent
*/
public static int AppCompatTheme_colorAccent = 86;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#colorBackgroundFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:colorBackgroundFloating
*/
public static int AppCompatTheme_colorBackgroundFloating = 93;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:colorButtonNormal
*/
public static int AppCompatTheme_colorButtonNormal = 90;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:colorControlActivated
*/
public static int AppCompatTheme_colorControlActivated = 88;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:colorControlHighlight
*/
public static int AppCompatTheme_colorControlHighlight = 89;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:colorControlNormal
*/
public static int AppCompatTheme_colorControlNormal = 87;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#colorError}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name fr.squirrel.pdfview:colorError
*/
public static int AppCompatTheme_colorError = 118;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:colorPrimary
*/
public static int AppCompatTheme_colorPrimary = 84;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:colorPrimaryDark
*/
public static int AppCompatTheme_colorPrimaryDark = 85;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:colorSwitchThumbNormal
*/
public static int AppCompatTheme_colorSwitchThumbNormal = 91;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:controlBackground
*/
public static int AppCompatTheme_controlBackground = 92;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:dialogPreferredPadding
*/
public static int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:dialogTheme
*/
public static int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:dividerHorizontal
*/
public static int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:dividerVertical
*/
public static int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:dropDownListViewStyle
*/
public static int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:dropdownListPreferredItemHeight
*/
public static int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:editTextBackground
*/
public static int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:editTextColor
*/
public static int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:editTextStyle
*/
public static int AppCompatTheme_editTextStyle = 107;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:homeAsUpIndicator
*/
public static int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:imageButtonStyle
*/
public static int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:listChoiceBackgroundIndicator
*/
public static int AppCompatTheme_listChoiceBackgroundIndicator = 83;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:listDividerAlertDialog
*/
public static int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#listMenuViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:listMenuViewStyle
*/
public static int AppCompatTheme_listMenuViewStyle = 115;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:listPopupWindowStyle
*/
public static int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:listPreferredItemHeight
*/
public static int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:listPreferredItemHeightLarge
*/
public static int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:listPreferredItemHeightSmall
*/
public static int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:listPreferredItemPaddingLeft
*/
public static int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:listPreferredItemPaddingRight
*/
public static int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:panelBackground
*/
public static int AppCompatTheme_panelBackground = 80;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:panelMenuListTheme
*/
public static int AppCompatTheme_panelMenuListTheme = 82;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:panelMenuListWidth
*/
public static int AppCompatTheme_panelMenuListWidth = 81;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:popupMenuStyle
*/
public static int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:popupWindowStyle
*/
public static int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:radioButtonStyle
*/
public static int AppCompatTheme_radioButtonStyle = 108;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:ratingBarStyle
*/
public static int AppCompatTheme_ratingBarStyle = 109;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:ratingBarStyleIndicator
*/
public static int AppCompatTheme_ratingBarStyleIndicator = 110;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:ratingBarStyleSmall
*/
public static int AppCompatTheme_ratingBarStyleSmall = 111;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:searchViewStyle
*/
public static int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:seekBarStyle
*/
public static int AppCompatTheme_seekBarStyle = 112;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:selectableItemBackground
*/
public static int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:selectableItemBackgroundBorderless
*/
public static int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:spinnerDropDownItemStyle
*/
public static int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:spinnerStyle
*/
public static int AppCompatTheme_spinnerStyle = 113;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:switchStyle
*/
public static int AppCompatTheme_switchStyle = 114;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:textAppearanceLargePopupMenu
*/
public static int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:textAppearanceListItem
*/
public static int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#textAppearanceListItemSecondary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:textAppearanceListItemSecondary
*/
public static int AppCompatTheme_textAppearanceListItemSecondary = 78;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:textAppearanceListItemSmall
*/
public static int AppCompatTheme_textAppearanceListItemSmall = 79;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#textAppearancePopupMenuHeader}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:textAppearancePopupMenuHeader
*/
public static int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:textAppearanceSearchResultSubtitle
*/
public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:textAppearanceSearchResultTitle
*/
public static int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:textAppearanceSmallPopupMenu
*/
public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:textColorAlertDialogListItem
*/
public static int AppCompatTheme_textColorAlertDialogListItem = 98;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:textColorSearchUrl
*/
public static int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:toolbarNavigationButtonStyle
*/
public static int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:toolbarStyle
*/
public static int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#tooltipForegroundColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name fr.squirrel.pdfview:tooltipForegroundColor
*/
public static int AppCompatTheme_tooltipForegroundColor = 117;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#tooltipFrameBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:tooltipFrameBackground
*/
public static int AppCompatTheme_tooltipFrameBackground = 116;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#viewInflaterClass}
attribute's value can be found in the {@link #AppCompatTheme} 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 fr.squirrel.pdfview:viewInflaterClass
*/
public static int AppCompatTheme_viewInflaterClass = 119;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:windowActionBar
*/
public static int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:windowActionBarOverlay
*/
public static int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:windowActionModeOverlay
*/
public static int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:windowFixedHeightMajor
*/
public static int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:windowFixedHeightMinor
*/
public static int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:windowFixedWidthMajor
*/
public static int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:windowFixedWidthMinor
*/
public static int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:windowMinWidthMajor
*/
public static int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:windowMinWidthMinor
*/
public static int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:windowNoTitle
*/
public static int AppCompatTheme_windowNoTitle = 3;
/** Attributes that can be used with a BottomNavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomNavigationView_elevation fr.squirrel.pdfview:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemBackground fr.squirrel.pdfview:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemIconTint fr.squirrel.pdfview:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemTextColor fr.squirrel.pdfview:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_menu fr.squirrel.pdfview:menu}</code></td><td></td></tr>
</table>
@see #BottomNavigationView_elevation
@see #BottomNavigationView_itemBackground
@see #BottomNavigationView_itemIconTint
@see #BottomNavigationView_itemTextColor
@see #BottomNavigationView_menu
*/
public static final int[] BottomNavigationView = {
0x7f010029, 0x7f01013d, 0x7f01013e, 0x7f01013f,
0x7f010140
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#elevation}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:elevation
*/
public static int BottomNavigationView_elevation = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#itemBackground}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:itemBackground
*/
public static int BottomNavigationView_itemBackground = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#itemIconTint}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:itemIconTint
*/
public static int BottomNavigationView_itemIconTint = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#itemTextColor}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:itemTextColor
*/
public static int BottomNavigationView_itemTextColor = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#menu}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:menu
*/
public static int BottomNavigationView_menu = 1;
/** Attributes that can be used with a BottomSheetBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable fr.squirrel.pdfview:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight fr.squirrel.pdfview:behavior_peekHeight}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed fr.squirrel.pdfview:behavior_skipCollapsed}</code></td><td></td></tr>
</table>
@see #BottomSheetBehavior_Layout_behavior_hideable
@see #BottomSheetBehavior_Layout_behavior_peekHeight
@see #BottomSheetBehavior_Layout_behavior_skipCollapsed
*/
public static final int[] BottomSheetBehavior_Layout = {
0x7f01011e, 0x7f01011f, 0x7f010120
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#behavior_hideable}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:behavior_hideable
*/
public static int BottomSheetBehavior_Layout_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#behavior_peekHeight}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:behavior_peekHeight
*/
public static int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#behavior_skipCollapsed}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:behavior_skipCollapsed
*/
public static int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2;
/** Attributes that can be used with a ButtonBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ButtonBarLayout_allowStacking fr.squirrel.pdfview:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100b8
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:allowStacking
*/
public static 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 fr.squirrel.pdfview:cardBackgroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardCornerRadius fr.squirrel.pdfview:cardCornerRadius}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardElevation fr.squirrel.pdfview:cardElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardMaxElevation fr.squirrel.pdfview:cardMaxElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardPreventCornerOverlap fr.squirrel.pdfview:cardPreventCornerOverlap}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardUseCompatPadding fr.squirrel.pdfview:cardUseCompatPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPadding fr.squirrel.pdfview:contentPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingBottom fr.squirrel.pdfview:contentPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingLeft fr.squirrel.pdfview:contentPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingRight fr.squirrel.pdfview:contentPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingTop fr.squirrel.pdfview: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, 0x7f010105, 0x7f010106,
0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a,
0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e,
0x7f01010f
};
/**
<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 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 int CardView_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:cardBackgroundColor
*/
public static int CardView_cardBackgroundColor = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:cardCornerRadius
*/
public static int CardView_cardCornerRadius = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:cardElevation
*/
public static int CardView_cardElevation = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:cardMaxElevation
*/
public static int CardView_cardMaxElevation = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:cardPreventCornerOverlap
*/
public static int CardView_cardPreventCornerOverlap = 7;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:cardUseCompatPadding
*/
public static int CardView_cardUseCompatPadding = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:contentPadding
*/
public static int CardView_contentPadding = 8;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:contentPaddingBottom
*/
public static int CardView_contentPaddingBottom = 12;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:contentPaddingLeft
*/
public static int CardView_contentPaddingLeft = 9;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:contentPaddingRight
*/
public static int CardView_contentPaddingRight = 10;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:contentPaddingTop
*/
public static int CardView_contentPaddingTop = 11;
/** Attributes that can be used with a CollapsingToolbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity fr.squirrel.pdfview:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance fr.squirrel.pdfview:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim fr.squirrel.pdfview:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity fr.squirrel.pdfview:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin fr.squirrel.pdfview:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom fr.squirrel.pdfview:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd fr.squirrel.pdfview:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart fr.squirrel.pdfview:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop fr.squirrel.pdfview:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance fr.squirrel.pdfview:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration fr.squirrel.pdfview:scrimAnimationDuration}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger fr.squirrel.pdfview:scrimVisibleHeightTrigger}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim fr.squirrel.pdfview:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title fr.squirrel.pdfview:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled fr.squirrel.pdfview:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId fr.squirrel.pdfview:toolbarId}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_collapsedTitleGravity
@see #CollapsingToolbarLayout_collapsedTitleTextAppearance
@see #CollapsingToolbarLayout_contentScrim
@see #CollapsingToolbarLayout_expandedTitleGravity
@see #CollapsingToolbarLayout_expandedTitleMargin
@see #CollapsingToolbarLayout_expandedTitleMarginBottom
@see #CollapsingToolbarLayout_expandedTitleMarginEnd
@see #CollapsingToolbarLayout_expandedTitleMarginStart
@see #CollapsingToolbarLayout_expandedTitleMarginTop
@see #CollapsingToolbarLayout_expandedTitleTextAppearance
@see #CollapsingToolbarLayout_scrimAnimationDuration
@see #CollapsingToolbarLayout_scrimVisibleHeightTrigger
@see #CollapsingToolbarLayout_statusBarScrim
@see #CollapsingToolbarLayout_title
@see #CollapsingToolbarLayout_titleEnabled
@see #CollapsingToolbarLayout_toolbarId
*/
public static final int[] CollapsingToolbarLayout = {
0x7f010121, 0x7f010122, 0x7f010123, 0x7f010124,
0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128,
0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c,
0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f01016c
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:collapsedTitleGravity
*/
public static int CollapsingToolbarLayout_collapsedTitleGravity = 12;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:collapsedTitleTextAppearance
*/
public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:contentScrim
*/
public static int CollapsingToolbarLayout_contentScrim = 7;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:expandedTitleGravity
*/
public static int CollapsingToolbarLayout_expandedTitleGravity = 13;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:expandedTitleMargin
*/
public static int CollapsingToolbarLayout_expandedTitleMargin = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:expandedTitleMarginBottom
*/
public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:expandedTitleMarginEnd
*/
public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:expandedTitleMarginStart
*/
public static int CollapsingToolbarLayout_expandedTitleMarginStart = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:expandedTitleMarginTop
*/
public static int CollapsingToolbarLayout_expandedTitleMarginTop = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:expandedTitleTextAppearance
*/
public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#scrimAnimationDuration}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:scrimAnimationDuration
*/
public static int CollapsingToolbarLayout_scrimAnimationDuration = 11;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#scrimVisibleHeightTrigger}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:scrimVisibleHeightTrigger
*/
public static int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:statusBarScrim
*/
public static int CollapsingToolbarLayout_statusBarScrim = 8;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:title
*/
public static int CollapsingToolbarLayout_title = 15;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:titleEnabled
*/
public static int CollapsingToolbarLayout_titleEnabled = 14;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:toolbarId
*/
public static int CollapsingToolbarLayout_toolbarId = 9;
/** Attributes that can be used with a CollapsingToolbarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode fr.squirrel.pdfview:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier fr.squirrel.pdfview:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_Layout_layout_collapseMode
@see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout = {
0x7f010130, 0x7f010131
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#layout_collapseMode}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:layout_collapseMode
*/
public static int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#layout_collapseParallaxMultiplier}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:layout_collapseParallaxMultiplier
*/
public static int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1;
/** Attributes that can be used with a ColorStateListItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ColorStateListItem_alpha fr.squirrel.pdfview:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
</table>
@see #ColorStateListItem_alpha
@see #ColorStateListItem_android_alpha
@see #ColorStateListItem_android_color
*/
public static final int[] ColorStateListItem = {
0x010101a5, 0x0101031f, 0x7f0100b9
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:alpha
*/
public static int ColorStateListItem_alpha = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:alpha
*/
public static int ColorStateListItem_android_alpha = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#color}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:color
*/
public static int ColorStateListItem_android_color = 0;
/** Attributes that can be used with a CompoundButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTint fr.squirrel.pdfview:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode fr.squirrel.pdfview:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100ba, 0x7f0100bb
};
/**
<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 int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:buttonTint
*/
public static int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:buttonTintMode
*/
public static 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 fr.squirrel.pdfview:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground fr.squirrel.pdfview:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f010009, 0x7f01000a
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:keylines
*/
public static int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#statusBarBackground}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or 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 fr.squirrel.pdfview:statusBarBackground
*/
public static int CoordinatorLayout_statusBarBackground = 1;
/** Attributes that can be used with a CoordinatorLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor fr.squirrel.pdfview:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity fr.squirrel.pdfview:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior fr.squirrel.pdfview:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges fr.squirrel.pdfview:layout_dodgeInsetEdges}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge fr.squirrel.pdfview:layout_insetEdge}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline fr.squirrel.pdfview:layout_keyline}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_Layout_android_layout_gravity
@see #CoordinatorLayout_Layout_layout_anchor
@see #CoordinatorLayout_Layout_layout_anchorGravity
@see #CoordinatorLayout_Layout_layout_behavior
@see #CoordinatorLayout_Layout_layout_dodgeInsetEdges
@see #CoordinatorLayout_Layout_layout_insetEdge
@see #CoordinatorLayout_Layout_layout_keyline
*/
public static final int[] CoordinatorLayout_Layout = {
0x010100b3, 0x7f01000b, 0x7f01000c, 0x7f01000d,
0x7f01000e, 0x7f01000f, 0x7f010010
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
@attr name android:layout_gravity
*/
public static int CoordinatorLayout_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#layout_anchor}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:layout_anchor
*/
public static int CoordinatorLayout_Layout_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#layout_anchorGravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:layout_anchorGravity
*/
public static int CoordinatorLayout_Layout_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#layout_behavior}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:layout_behavior
*/
public static int CoordinatorLayout_Layout_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#layout_dodgeInsetEdges}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:layout_dodgeInsetEdges
*/
public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#layout_insetEdge}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</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 fr.squirrel.pdfview:layout_insetEdge
*/
public static int CoordinatorLayout_Layout_layout_insetEdge = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#layout_keyline}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:layout_keyline
*/
public static int CoordinatorLayout_Layout_layout_keyline = 3;
/** Attributes that can be used with a DesignTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme fr.squirrel.pdfview:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle fr.squirrel.pdfview:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError fr.squirrel.pdfview:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f010132, 0x7f010133, 0x7f010134
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:bottomSheetDialogTheme
*/
public static int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:bottomSheetStyle
*/
public static int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#textColorError}
attribute's value can be found in the {@link #DesignTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name fr.squirrel.pdfview:textColorError
*/
public static 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 fr.squirrel.pdfview:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength fr.squirrel.pdfview:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength fr.squirrel.pdfview:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color fr.squirrel.pdfview:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize fr.squirrel.pdfview:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars fr.squirrel.pdfview:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars fr.squirrel.pdfview:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness fr.squirrel.pdfview: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 = {
0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf,
0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:arrowHeadLength
*/
public static int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:arrowShaftLength
*/
public static int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:barLength
*/
public static int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:color
*/
public static int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:drawableSize
*/
public static int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:gapBetweenBars
*/
public static int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:spinBars
*/
public static int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:thickness
*/
public static 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 fr.squirrel.pdfview:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode fr.squirrel.pdfview:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth fr.squirrel.pdfview:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation fr.squirrel.pdfview:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabCustomSize fr.squirrel.pdfview:fabCustomSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize fr.squirrel.pdfview:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ fr.squirrel.pdfview:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor fr.squirrel.pdfview:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding fr.squirrel.pdfview:useCompatPadding}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_backgroundTint
@see #FloatingActionButton_backgroundTintMode
@see #FloatingActionButton_borderWidth
@see #FloatingActionButton_elevation
@see #FloatingActionButton_fabCustomSize
@see #FloatingActionButton_fabSize
@see #FloatingActionButton_pressedTranslationZ
@see #FloatingActionButton_rippleColor
@see #FloatingActionButton_useCompatPadding
*/
public static final int[] FloatingActionButton = {
0x7f010029, 0x7f010103, 0x7f010104, 0x7f010135,
0x7f010136, 0x7f010137, 0x7f010138, 0x7f010139,
0x7f01013a
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:backgroundTint
*/
public static int FloatingActionButton_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:backgroundTintMode
*/
public static int FloatingActionButton_backgroundTintMode = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:borderWidth
*/
public static int FloatingActionButton_borderWidth = 7;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:elevation
*/
public static int FloatingActionButton_elevation = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fabCustomSize}
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 fr.squirrel.pdfview:fabCustomSize
*/
public static int FloatingActionButton_fabCustomSize = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fabSize}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:fabSize
*/
public static int FloatingActionButton_fabSize = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:pressedTranslationZ
*/
public static int FloatingActionButton_pressedTranslationZ = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:rippleColor
*/
public static int FloatingActionButton_rippleColor = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:useCompatPadding
*/
public static int FloatingActionButton_useCompatPadding = 8;
/** Attributes that can be used with a FloatingActionButton_Behavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide fr.squirrel.pdfview:behavior_autoHide}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout = {
0x7f01013b
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#behavior_autoHide}
attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:behavior_autoHide
*/
public static int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0;
/** Attributes that can be used with a FontFamily.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FontFamily_fontProviderAuthority fr.squirrel.pdfview:fontProviderAuthority}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderCerts fr.squirrel.pdfview:fontProviderCerts}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchStrategy fr.squirrel.pdfview:fontProviderFetchStrategy}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchTimeout fr.squirrel.pdfview:fontProviderFetchTimeout}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderPackage fr.squirrel.pdfview:fontProviderPackage}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderQuery fr.squirrel.pdfview:fontProviderQuery}</code></td><td></td></tr>
</table>
@see #FontFamily_fontProviderAuthority
@see #FontFamily_fontProviderCerts
@see #FontFamily_fontProviderFetchStrategy
@see #FontFamily_fontProviderFetchTimeout
@see #FontFamily_fontProviderPackage
@see #FontFamily_fontProviderQuery
*/
public static final int[] FontFamily = {
0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113,
0x7f010114, 0x7f010115
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fontProviderAuthority}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:fontProviderAuthority
*/
public static int FontFamily_fontProviderAuthority = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fontProviderCerts}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:fontProviderCerts
*/
public static int FontFamily_fontProviderCerts = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fontProviderFetchStrategy}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>blocking</code></td><td>0</td><td></td></tr>
<tr><td><code>async</code></td><td>1</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:fontProviderFetchStrategy
*/
public static int FontFamily_fontProviderFetchStrategy = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fontProviderFetchTimeout}
attribute's value can be found in the {@link #FontFamily} array.
<p>May be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>forever</code></td><td>-1</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:fontProviderFetchTimeout
*/
public static int FontFamily_fontProviderFetchTimeout = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fontProviderPackage}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:fontProviderPackage
*/
public static int FontFamily_fontProviderPackage = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fontProviderQuery}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:fontProviderQuery
*/
public static int FontFamily_fontProviderQuery = 2;
/** Attributes that can be used with a FontFamilyFont.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_font fr.squirrel.pdfview:font}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontStyle fr.squirrel.pdfview:fontStyle}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontWeight fr.squirrel.pdfview:fontWeight}</code></td><td></td></tr>
</table>
@see #FontFamilyFont_android_font
@see #FontFamilyFont_android_fontStyle
@see #FontFamilyFont_android_fontWeight
@see #FontFamilyFont_font
@see #FontFamilyFont_fontStyle
@see #FontFamilyFont_fontWeight
*/
public static final int[] FontFamilyFont = {
0x01010532, 0x01010533, 0x0101053f, 0x7f010116,
0x7f010117, 0x7f010118
};
/**
<p>This symbol is the offset where the {@link android.R.attr#font}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:font
*/
public static int FontFamilyFont_android_font = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fontStyle}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:fontStyle
*/
public static int FontFamilyFont_android_fontStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#fontWeight}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:fontWeight
*/
public static int FontFamilyFont_android_fontWeight = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#font}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:font
*/
public static int FontFamilyFont_font = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fontStyle}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>italic</code></td><td>1</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:fontStyle
*/
public static int FontFamilyFont_fontStyle = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fontWeight}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:fontWeight
*/
public static int FontFamilyFont_fontWeight = 5;
/** Attributes that can be used with a ForegroundLinearLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding fr.squirrel.pdfview: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, 0x7f01013c
};
/**
<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 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 int ForegroundLinearLayout_android_foregroundGravity = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:foregroundInsidePadding
*/
public static 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 fr.squirrel.pdfview:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding fr.squirrel.pdfview:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild fr.squirrel.pdfview:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers fr.squirrel.pdfview: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, 0x7f010018, 0x7f0100c4, 0x7f0100c5,
0x7f0100c6
};
/**
<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 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 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 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 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 int LinearLayoutCompat_android_weightSum = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:divider
*/
public static int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:dividerPadding
*/
public static int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:measureWithLargestChild
*/
public static int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:showDividers
*/
public static 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 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 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 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 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 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 int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** Attributes that can be used with a MenuGroup.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuGroup_android_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 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 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 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 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 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 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 fr.squirrel.pdfview:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass fr.squirrel.pdfview:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass fr.squirrel.pdfview:actionViewClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_alphabeticModifiers fr.squirrel.pdfview:alphabeticModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_contentDescription fr.squirrel.pdfview:contentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTint fr.squirrel.pdfview:iconTint}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTintMode fr.squirrel.pdfview:iconTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_numericModifiers fr.squirrel.pdfview:numericModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction fr.squirrel.pdfview:showAsAction}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_tooltipText fr.squirrel.pdfview:tooltipText}</code></td><td></td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@see #MenuItem_alphabeticModifiers
@see #MenuItem_android_alphabeticShortcut
@see #MenuItem_android_checkable
@see #MenuItem_android_checked
@see #MenuItem_android_enabled
@see #MenuItem_android_icon
@see #MenuItem_android_id
@see #MenuItem_android_menuCategory
@see #MenuItem_android_numericShortcut
@see #MenuItem_android_onClick
@see #MenuItem_android_orderInCategory
@see #MenuItem_android_title
@see #MenuItem_android_titleCondensed
@see #MenuItem_android_visible
@see #MenuItem_contentDescription
@see #MenuItem_iconTint
@see #MenuItem_iconTintMode
@see #MenuItem_numericModifiers
@see #MenuItem_showAsAction
@see #MenuItem_tooltipText
*/
public static final int[] MenuItem = {
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9,
0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd,
0x7f0100ce, 0x7f0100cf, 0x7f0100d0
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionLayout
*/
public static int MenuItem_actionLayout = 16;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionProviderClass
*/
public static int MenuItem_actionProviderClass = 18;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:actionViewClass
*/
public static int MenuItem_actionViewClass = 17;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#alphabeticModifiers}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:alphabeticModifiers
*/
public static int MenuItem_alphabeticModifiers = 13;
/**
<p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:alphabeticShortcut
*/
public static 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 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 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 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 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 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 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 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 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 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 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 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 int MenuItem_android_visible = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#contentDescription}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:contentDescription
*/
public static int MenuItem_contentDescription = 19;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#iconTint}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:iconTint
*/
public static int MenuItem_iconTint = 21;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#iconTintMode}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:iconTintMode
*/
public static int MenuItem_iconTintMode = 22;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#numericModifiers}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:numericModifiers
*/
public static int MenuItem_numericModifiers = 14;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:showAsAction
*/
public static int MenuItem_showAsAction = 15;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#tooltipText}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:tooltipText
*/
public static int MenuItem_tooltipText = 20;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing fr.squirrel.pdfview:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow fr.squirrel.pdfview:subMenuArrow}</code></td><td></td></tr>
</table>
@see #MenuView_android_headerBackground
@see #MenuView_android_horizontalDivider
@see #MenuView_android_itemBackground
@see #MenuView_android_itemIconDisabledAlpha
@see #MenuView_android_itemTextAppearance
@see #MenuView_android_verticalDivider
@see #MenuView_android_windowAnimationStyle
@see #MenuView_preserveIconSpacing
@see #MenuView_subMenuArrow
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f0100d1,
0x7f0100d2
};
/**
<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 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 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 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 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 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 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 int MenuView_android_windowAnimationStyle = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:preserveIconSpacing
*/
public static int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#subMenuArrow}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:subMenuArrow
*/
public static int MenuView_subMenuArrow = 8;
/** Attributes that can be used with a NavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_elevation fr.squirrel.pdfview:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout fr.squirrel.pdfview:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground fr.squirrel.pdfview:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint fr.squirrel.pdfview:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance fr.squirrel.pdfview:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor fr.squirrel.pdfview:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu fr.squirrel.pdfview: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, 0x7f010029,
0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140,
0x7f010141, 0x7f010142
};
/**
<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 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 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 int NavigationView_android_maxWidth = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:elevation
*/
public static int NavigationView_elevation = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:headerLayout
*/
public static int NavigationView_headerLayout = 9;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:itemBackground
*/
public static int NavigationView_itemBackground = 7;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:itemIconTint
*/
public static int NavigationView_itemIconTint = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:itemTextAppearance
*/
public static int NavigationView_itemTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:itemTextColor
*/
public static int NavigationView_itemTextColor = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:menu
*/
public static int NavigationView_menu = 4;
/** Attributes that can be used with a PopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_overlapAnchor fr.squirrel.pdfview:overlapAnchor}</code></td><td></td></tr>
</table>
@see #PopupWindow_android_popupAnimationStyle
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x010102c9, 0x7f0100d3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupAnimationStyle
*/
public static int PopupWindow_android_popupAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupBackground
*/
public static int PopupWindow_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:overlapAnchor
*/
public static int PopupWindow_overlapAnchor = 2;
/** Attributes that can be used with a PopupWindowBackgroundState.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor fr.squirrel.pdfview:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100d4
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:state_above_anchor
*/
public static int PopupWindowBackgroundState_state_above_anchor = 0;
/** Attributes that can be used with a RecycleListView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecycleListView_paddingBottomNoButtons fr.squirrel.pdfview:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle fr.squirrel.pdfview:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f0100d5, 0x7f0100d6
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#paddingBottomNoButtons}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:paddingBottomNoButtons
*/
public static int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#paddingTopNoTitle}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:paddingTopNoTitle
*/
public static int RecycleListView_paddingTopNoTitle = 1;
/** Attributes that can be used with a RecyclerView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollEnabled fr.squirrel.pdfview:fastScrollEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable fr.squirrel.pdfview:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable fr.squirrel.pdfview:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable fr.squirrel.pdfview:fastScrollVerticalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable fr.squirrel.pdfview:fastScrollVerticalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager fr.squirrel.pdfview:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout fr.squirrel.pdfview:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount fr.squirrel.pdfview:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd fr.squirrel.pdfview:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_descendantFocusability
@see #RecyclerView_android_orientation
@see #RecyclerView_fastScrollEnabled
@see #RecyclerView_fastScrollHorizontalThumbDrawable
@see #RecyclerView_fastScrollHorizontalTrackDrawable
@see #RecyclerView_fastScrollVerticalThumbDrawable
@see #RecyclerView_fastScrollVerticalTrackDrawable
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001,
0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005,
0x7f010006, 0x7f010007, 0x7f010008
};
/**
<p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:descendantFocusability
*/
public static int RecyclerView_android_descendantFocusability = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:orientation
*/
public static int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fastScrollEnabled}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:fastScrollEnabled
*/
public static int RecyclerView_fastScrollEnabled = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fastScrollHorizontalThumbDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:fastScrollHorizontalThumbDrawable
*/
public static int RecyclerView_fastScrollHorizontalThumbDrawable = 9;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fastScrollHorizontalTrackDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:fastScrollHorizontalTrackDrawable
*/
public static int RecyclerView_fastScrollHorizontalTrackDrawable = 10;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fastScrollVerticalThumbDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:fastScrollVerticalThumbDrawable
*/
public static int RecyclerView_fastScrollVerticalThumbDrawable = 7;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fastScrollVerticalTrackDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:fastScrollVerticalTrackDrawable
*/
public static int RecyclerView_fastScrollVerticalTrackDrawable = 8;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:layoutManager
*/
public static int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:reverseLayout
*/
public static int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:spanCount
*/
public static int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:stackFromEnd
*/
public static int RecyclerView_stackFromEnd = 5;
/** Attributes that can be used with a ScrimInsetsFrameLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground fr.squirrel.pdfview:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f010143
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:insetForeground
*/
public static int ScrimInsetsFrameLayout_insetForeground = 0;
/** Attributes that can be used with a ScrollBar.
<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 #ScrollBar_sb_handlerColor fr.squirrel.pdfview:sb_handlerColor}</code></td><td></td></tr>
<tr><td><code>{@link #ScrollBar_sb_horizontal fr.squirrel.pdfview:sb_horizontal}</code></td><td></td></tr>
<tr><td><code>{@link #ScrollBar_sb_indicatorColor fr.squirrel.pdfview:sb_indicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #ScrollBar_sb_indicatorTextColor fr.squirrel.pdfview:sb_indicatorTextColor}</code></td><td></td></tr>
</table>
@see #ScrollBar_sb_handlerColor
@see #ScrollBar_sb_horizontal
@see #ScrollBar_sb_indicatorColor
@see #ScrollBar_sb_indicatorTextColor
*/
public static final int[] ScrollBar = {
0x7f010164, 0x7f010165, 0x7f010166, 0x7f010167
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#sb_handlerColor}
attribute's value can be found in the {@link #ScrollBar} 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 fr.squirrel.pdfview:sb_handlerColor
*/
public static int ScrollBar_sb_handlerColor = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#sb_horizontal}
attribute's value can be found in the {@link #ScrollBar} 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 fr.squirrel.pdfview:sb_horizontal
*/
public static int ScrollBar_sb_horizontal = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#sb_indicatorColor}
attribute's value can be found in the {@link #ScrollBar} 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 fr.squirrel.pdfview:sb_indicatorColor
*/
public static int ScrollBar_sb_indicatorColor = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#sb_indicatorTextColor}
attribute's value can be found in the {@link #ScrollBar} 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 fr.squirrel.pdfview:sb_indicatorTextColor
*/
public static int ScrollBar_sb_indicatorTextColor = 2;
/** Attributes that can be used with a ScrollingViewBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop fr.squirrel.pdfview:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout = {
0x7f010144
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#behavior_overlapTop}
attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:behavior_overlapTop
*/
public static int ScrollingViewBehavior_Layout_behavior_overlapTop = 0;
/** Attributes that can be used with a SearchView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_closeIcon fr.squirrel.pdfview:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon fr.squirrel.pdfview:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint fr.squirrel.pdfview:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon fr.squirrel.pdfview:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault fr.squirrel.pdfview:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout fr.squirrel.pdfview:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground fr.squirrel.pdfview:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint fr.squirrel.pdfview:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon fr.squirrel.pdfview:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon fr.squirrel.pdfview:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground fr.squirrel.pdfview:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout fr.squirrel.pdfview:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon fr.squirrel.pdfview: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,
0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da,
0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de,
0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2,
0x7f0100e3
};
/**
<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 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 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 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 int SearchView_android_maxWidth = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:closeIcon
*/
public static int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:commitIcon
*/
public static int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:defaultQueryHint
*/
public static int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:goIcon
*/
public static int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:iconifiedByDefault
*/
public static int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:layout
*/
public static int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:queryBackground
*/
public static int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:queryHint
*/
public static int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:searchHintIcon
*/
public static int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:searchIcon
*/
public static int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:submitBackground
*/
public static int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:suggestionRowLayout
*/
public static int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:voiceIcon
*/
public static 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 fr.squirrel.pdfview:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth fr.squirrel.pdfview:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f010029, 0x7f010145
};
/**
<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 int SnackbarLayout_android_maxWidth = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:elevation
*/
public static int SnackbarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:maxActionInlineWidth
*/
public static 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 fr.squirrel.pdfview: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,
0x7f01002a
};
/**
<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 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 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 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 int Spinner_android_prompt = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:popupTheme
*/
public static 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 fr.squirrel.pdfview:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack fr.squirrel.pdfview:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth fr.squirrel.pdfview:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding fr.squirrel.pdfview:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance fr.squirrel.pdfview:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding fr.squirrel.pdfview:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint fr.squirrel.pdfview:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode fr.squirrel.pdfview:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track fr.squirrel.pdfview:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint fr.squirrel.pdfview:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode fr.squirrel.pdfview:trackTintMode}</code></td><td></td></tr>
</table>
@see #SwitchCompat_android_textOff
@see #SwitchCompat_android_textOn
@see #SwitchCompat_android_thumb
@see #SwitchCompat_showText
@see #SwitchCompat_splitTrack
@see #SwitchCompat_switchMinWidth
@see #SwitchCompat_switchPadding
@see #SwitchCompat_switchTextAppearance
@see #SwitchCompat_thumbTextPadding
@see #SwitchCompat_thumbTint
@see #SwitchCompat_thumbTintMode
@see #SwitchCompat_track
@see #SwitchCompat_trackTint
@see #SwitchCompat_trackTintMode
*/
public static final int[] SwitchCompat = {
0x01010124, 0x01010125, 0x01010142, 0x7f0100e4,
0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8,
0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec,
0x7f0100ed, 0x7f0100ee
};
/**
<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 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 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 int SwitchCompat_android_thumb = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:showText
*/
public static int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:splitTrack
*/
public static int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:switchMinWidth
*/
public static int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:switchPadding
*/
public static int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:switchTextAppearance
*/
public static int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:thumbTextPadding
*/
public static int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#thumbTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:thumbTint
*/
public static int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#thumbTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:thumbTintMode
*/
public static int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:track
*/
public static int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#trackTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:trackTint
*/
public static int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#trackTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:trackTintMode
*/
public static int SwitchCompat_trackTintMode = 7;
/** Attributes that can be used with a TabItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr>
</table>
@see #TabItem_android_icon
@see #TabItem_android_layout
@see #TabItem_android_text
*/
public static final int[] TabItem = {
0x01010002, 0x010100f2, 0x0101014f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:icon
*/
public static 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 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 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 fr.squirrel.pdfview:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart fr.squirrel.pdfview:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity fr.squirrel.pdfview:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor fr.squirrel.pdfview:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight fr.squirrel.pdfview:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth fr.squirrel.pdfview:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth fr.squirrel.pdfview:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode fr.squirrel.pdfview:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding fr.squirrel.pdfview:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom fr.squirrel.pdfview:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd fr.squirrel.pdfview:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart fr.squirrel.pdfview:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop fr.squirrel.pdfview:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor fr.squirrel.pdfview:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance fr.squirrel.pdfview:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor fr.squirrel.pdfview: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 = {
0x7f010146, 0x7f010147, 0x7f010148, 0x7f010149,
0x7f01014a, 0x7f01014b, 0x7f01014c, 0x7f01014d,
0x7f01014e, 0x7f01014f, 0x7f010150, 0x7f010151,
0x7f010152, 0x7f010153, 0x7f010154, 0x7f010155
};
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabBackground
*/
public static int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabContentStart
*/
public static int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabGravity
*/
public static int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabIndicatorColor
*/
public static int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabIndicatorHeight
*/
public static int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabMaxWidth
*/
public static int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabMinWidth
*/
public static int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabMode
*/
public static int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabPadding
*/
public static int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabPaddingBottom
*/
public static int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabPaddingEnd
*/
public static int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabPaddingStart
*/
public static int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabPaddingTop
*/
public static int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabSelectedTextColor
*/
public static int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabTextAppearance
*/
public static int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:tabTextColor
*/
public static int TabLayout_tabTextColor = 9;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_fontFamily fr.squirrel.pdfview:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps fr.squirrel.pdfview:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_fontFamily
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textColorHint
@see #TextAppearance_android_textColorLink
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_fontFamily
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x0101009b, 0x01010161, 0x01010162,
0x01010163, 0x01010164, 0x010103ac, 0x7f01003b,
0x7f010041
};
/**
<p>This symbol is the offset where the {@link android.R.attr#fontFamily}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:fontFamily
*/
public static int TextAppearance_android_fontFamily = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowColor
*/
public static int TextAppearance_android_shadowColor = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDx}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDx
*/
public static int TextAppearance_android_shadowDx = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDy}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDy
*/
public static int TextAppearance_android_shadowDy = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowRadius
*/
public static int TextAppearance_android_shadowRadius = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColor
*/
public static int TextAppearance_android_textColor = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColorHint
*/
public static int TextAppearance_android_textColorHint = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorLink}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColorLink
*/
public static int TextAppearance_android_textColorLink = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#textSize}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textSize
*/
public static 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 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 int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#fontFamily}
attribute's value can be found in the {@link #TextAppearance} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:fontFamily
*/
public static int TextAppearance_fontFamily = 12;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:textAllCaps
*/
public static int TextAppearance_textAllCaps = 11;
/** Attributes that can be used with a TextInputLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterEnabled fr.squirrel.pdfview:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength fr.squirrel.pdfview:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance fr.squirrel.pdfview:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance fr.squirrel.pdfview:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled fr.squirrel.pdfview:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance fr.squirrel.pdfview:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled fr.squirrel.pdfview:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled fr.squirrel.pdfview:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance fr.squirrel.pdfview:hintTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription fr.squirrel.pdfview:passwordToggleContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleDrawable fr.squirrel.pdfview:passwordToggleDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleEnabled fr.squirrel.pdfview:passwordToggleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTint fr.squirrel.pdfview:passwordToggleTint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTintMode fr.squirrel.pdfview:passwordToggleTintMode}</code></td><td></td></tr>
</table>
@see #TextInputLayout_android_hint
@see #TextInputLayout_android_textColorHint
@see #TextInputLayout_counterEnabled
@see #TextInputLayout_counterMaxLength
@see #TextInputLayout_counterOverflowTextAppearance
@see #TextInputLayout_counterTextAppearance
@see #TextInputLayout_errorEnabled
@see #TextInputLayout_errorTextAppearance
@see #TextInputLayout_hintAnimationEnabled
@see #TextInputLayout_hintEnabled
@see #TextInputLayout_hintTextAppearance
@see #TextInputLayout_passwordToggleContentDescription
@see #TextInputLayout_passwordToggleDrawable
@see #TextInputLayout_passwordToggleEnabled
@see #TextInputLayout_passwordToggleTint
@see #TextInputLayout_passwordToggleTintMode
*/
public static final int[] TextInputLayout = {
0x0101009a, 0x01010150, 0x7f010156, 0x7f010157,
0x7f010158, 0x7f010159, 0x7f01015a, 0x7f01015b,
0x7f01015c, 0x7f01015d, 0x7f01015e, 0x7f01015f,
0x7f010160, 0x7f010161, 0x7f010162, 0x7f010163
};
/**
<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 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 int TextInputLayout_android_textColorHint = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:counterEnabled
*/
public static int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:counterMaxLength
*/
public static int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:counterOverflowTextAppearance
*/
public static int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:counterTextAppearance
*/
public static int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:errorEnabled
*/
public static int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:errorTextAppearance
*/
public static int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:hintAnimationEnabled
*/
public static int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:hintEnabled
*/
public static int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:hintTextAppearance
*/
public static int TextInputLayout_hintTextAppearance = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#passwordToggleContentDescription}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:passwordToggleContentDescription
*/
public static int TextInputLayout_passwordToggleContentDescription = 13;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#passwordToggleDrawable}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name fr.squirrel.pdfview:passwordToggleDrawable
*/
public static int TextInputLayout_passwordToggleDrawable = 12;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#passwordToggleEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:passwordToggleEnabled
*/
public static int TextInputLayout_passwordToggleEnabled = 11;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#passwordToggleTint}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:passwordToggleTint
*/
public static int TextInputLayout_passwordToggleTint = 14;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#passwordToggleTintMode}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:passwordToggleTintMode
*/
public static int TextInputLayout_passwordToggleTintMode = 15;
/** Attributes that can be used with a Toolbar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_buttonGravity fr.squirrel.pdfview:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription fr.squirrel.pdfview:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon fr.squirrel.pdfview:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd fr.squirrel.pdfview:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions fr.squirrel.pdfview:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft fr.squirrel.pdfview:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight fr.squirrel.pdfview:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart fr.squirrel.pdfview:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation fr.squirrel.pdfview:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo fr.squirrel.pdfview:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription fr.squirrel.pdfview:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight fr.squirrel.pdfview:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription fr.squirrel.pdfview:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon fr.squirrel.pdfview:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme fr.squirrel.pdfview:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle fr.squirrel.pdfview:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance fr.squirrel.pdfview:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor fr.squirrel.pdfview:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title fr.squirrel.pdfview:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin fr.squirrel.pdfview:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom fr.squirrel.pdfview:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd fr.squirrel.pdfview:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart fr.squirrel.pdfview:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop fr.squirrel.pdfview:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins fr.squirrel.pdfview:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance fr.squirrel.pdfview:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor fr.squirrel.pdfview:titleTextColor}</code></td><td></td></tr>
</table>
@see #Toolbar_android_gravity
@see #Toolbar_android_minHeight
@see #Toolbar_buttonGravity
@see #Toolbar_collapseContentDescription
@see #Toolbar_collapseIcon
@see #Toolbar_contentInsetEnd
@see #Toolbar_contentInsetEndWithActions
@see #Toolbar_contentInsetLeft
@see #Toolbar_contentInsetRight
@see #Toolbar_contentInsetStart
@see #Toolbar_contentInsetStartWithNavigation
@see #Toolbar_logo
@see #Toolbar_logoDescription
@see #Toolbar_maxButtonHeight
@see #Toolbar_navigationContentDescription
@see #Toolbar_navigationIcon
@see #Toolbar_popupTheme
@see #Toolbar_subtitle
@see #Toolbar_subtitleTextAppearance
@see #Toolbar_subtitleTextColor
@see #Toolbar_title
@see #Toolbar_titleMargin
@see #Toolbar_titleMarginBottom
@see #Toolbar_titleMarginEnd
@see #Toolbar_titleMarginStart
@see #Toolbar_titleMarginTop
@see #Toolbar_titleMargins
@see #Toolbar_titleTextAppearance
@see #Toolbar_titleTextColor
*/
public static final int[] Toolbar = {
0x010100af, 0x01010140, 0x7f010013, 0x7f010017,
0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026,
0x7f010027, 0x7f010028, 0x7f01002a, 0x7f0100ef,
0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3,
0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7,
0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb,
0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff,
0x7f01016c
};
/**
<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 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 int Toolbar_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#buttonGravity}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:buttonGravity
*/
public static int Toolbar_buttonGravity = 20;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:collapseContentDescription
*/
public static int Toolbar_collapseContentDescription = 22;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:collapseIcon
*/
public static int Toolbar_collapseIcon = 21;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:contentInsetEnd
*/
public static int Toolbar_contentInsetEnd = 5;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:contentInsetEndWithActions
*/
public static int Toolbar_contentInsetEndWithActions = 9;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:contentInsetLeft
*/
public static int Toolbar_contentInsetLeft = 6;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:contentInsetRight
*/
public static int Toolbar_contentInsetRight = 7;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:contentInsetStart
*/
public static int Toolbar_contentInsetStart = 4;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:contentInsetStartWithNavigation
*/
public static int Toolbar_contentInsetStartWithNavigation = 8;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:logo
*/
public static int Toolbar_logo = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:logoDescription
*/
public static int Toolbar_logoDescription = 25;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:maxButtonHeight
*/
public static int Toolbar_maxButtonHeight = 19;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:navigationContentDescription
*/
public static int Toolbar_navigationContentDescription = 24;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:navigationIcon
*/
public static int Toolbar_navigationIcon = 23;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:popupTheme
*/
public static int Toolbar_popupTheme = 10;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:subtitle
*/
public static int Toolbar_subtitle = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:subtitleTextAppearance
*/
public static int Toolbar_subtitleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:subtitleTextColor
*/
public static int Toolbar_subtitleTextColor = 27;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:title
*/
public static int Toolbar_title = 28;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.R.attr#titleMargin}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name fr.squirrel.pdfview:titleMargin
*/
public static int Toolbar_titleMargin = 13;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:titleMarginBottom
*/
public static int Toolbar_titleMarginBottom = 17;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:titleMarginEnd
*/
public static int Toolbar_titleMarginEnd = 15;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:titleMarginStart
*/
public static int Toolbar_titleMarginStart = 14;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:titleMarginTop
*/
public static int Toolbar_titleMarginTop = 16;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:titleMargins
*/
public static int Toolbar_titleMargins = 18;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:titleTextAppearance
*/
public static int Toolbar_titleTextAppearance = 11;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:titleTextColor
*/
public static int Toolbar_titleTextColor = 26;
/** 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 fr.squirrel.pdfview:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart fr.squirrel.pdfview:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme fr.squirrel.pdfview: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, 0x7f010100, 0x7f010101,
0x7f010102
};
/**
<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 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 int View_android_theme = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:paddingEnd
*/
public static int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:paddingStart
*/
public static int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:theme
*/
public static 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 fr.squirrel.pdfview:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode fr.squirrel.pdfview:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f010103, 0x7f010104
};
/**
<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 int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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 fr.squirrel.pdfview:backgroundTint
*/
public static int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link fr.squirrel.pdfview.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>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name fr.squirrel.pdfview:backgroundTintMode
*/
public static 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 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 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 int ViewStubCompat_android_layout = 1;
};
}
| [
"didier@squirrel.fr"
] | didier@squirrel.fr |
4742cffe5cd64d0d00ee52e48b68a7ad8bcee3b0 | 1dcaaad99ff4edb51b27cf84c043291015c4d0a9 | /gateway-dynamic/src/main/java/com/eyison/GatewayDynamicApplication.java | 5d0be1521c530e6fcf224ae5db14aa9632155bf9 | [] | no_license | eyison/spring_cloud_examples | fec8c89b070d0960f498125e36a967df08810696 | 0d2cdf8749cfc466c0863c1af258463995859202 | refs/heads/master | 2021-06-17T10:34:37.472200 | 2021-03-23T05:44:31 | 2021-03-23T05:44:31 | 177,582,718 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 705 | java | package com.eyison;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
/**
* <p></p>
* <PRE>
* <BR> 修改记录
* <BR>-----------------------------------------------
* <BR> 修改日期 修改人 修改内容
* </PRE>
*
* @author zl
* @version 1.0
* @email 815438426@qq.com
* @copyright: Copyright (c) eyison
*/
@SpringBootApplication
@EnableDiscoveryClient
public class GatewayDynamicApplication {
public static void main(String[] args) {
SpringApplication.run(GatewayDynamicApplication.class, args);
}
}
| [
"815438426@qq.com"
] | 815438426@qq.com |
68ec7d7f65291dcadbd4f144089d828ce4999ded | 47bde3ae8d0bb86a221e2af341537d5183f258ae | /WEB14/src/com/itheima/header/Servlet2.java | 9126b091e82fbfb2dd8677309d576f4420bc67db | [] | no_license | Liu-commits/test | a962d08bf135936215f4da7ba3ee72831a63c165 | 3e1096f3ea35f94ac4885fe9c804d121e3074b7c | refs/heads/t1 | 2022-11-22T09:16:58.587875 | 2020-07-15T15:09:39 | 2020-07-15T15:09:39 | 237,367,454 | 0 | 0 | null | 2020-04-20T01:27:29 | 2020-01-31T05:36:28 | Java | UTF-8 | Java | false | false | 604 | java | package com.itheima.header;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class Servlet2 extends HttpServlet {
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.getWriter().write("hello haohao...");
}
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
} | [
"1656389800@qq.com"
] | 1656389800@qq.com |
d70c1872ffaed26d61db551d548ee31d272ca9e6 | fa069c4936b29b17d513a14db98ceb5d9396ce6e | /ch.jester.common/src/ch/jester/common/importer/VirtualCell.java | d7fbcee9d69dcbce8ba9dc21372b4f11b78633f6 | [] | no_license | nomisp/jester | 886ecb50816eb09caef2c703f94f9f834d3b4134 | 2ef090554cfdf6d1fa24888f34fd7239639e1950 | refs/heads/master | 2021-06-04T19:46:38.761973 | 2012-02-10T11:20:03 | 2012-02-10T11:20:03 | 32,135,036 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,844 | java | package ch.jester.common.importer;
import java.util.List;
import java.util.StringTokenizer;
import ch.jester.commonservices.api.importer.IVirtualTable.IVirtualCell;
/**
* DefaultImplementation von IVirtualCell
*
*/
public class VirtualCell implements IVirtualCell {
String delim;
String mName;
int seq = -1;
int cellStart;
int cellStop;
public VirtualCell(String name, int pCellStart, int pCellStop) {
cellStart = pCellStart;
cellStop = pCellStop;
mName = name;
}
@Override
public void createCellContent(List<String> detailList, String pInput) {
String src = pInput.substring(cellStart, cellStop);
if (delim == null) {
detailList.add(src);
} else {
if (src.startsWith(delim)) {
src = " " + src;
}
StringTokenizer token = new StringTokenizer(src, delim);
for (int i = 0; i < seq; i++) {
if (token.hasMoreTokens()) {
token.nextToken();
}
}
if (token.hasMoreTokens()) {
detailList.add(token.nextToken());
} else {
detailList.add("");
}
}
}
@Override
public String getName() {
return mName;
}
@Override
public void setDelimiter(String pDelim) {
delim = pDelim;
}
@Override
public String getDelimiter() {
return delim;
}
@Override
public int getDelimiterSequence() {
return seq;
}
@Override
public void setDelimiterSequence(int i) {
seq = i;
}
@Override
public void setName(String text) {
mName = text;
}
@Override
public int getStart() {
return cellStart;
}
@Override
public void setStart(int i) {
cellStart = i;
}
@Override
public int getStop() {
return cellStop;
}
@Override
public void setStop(int i) {
cellStop = i;
}
}
| [
"matthias.liechti@87b5f25c-4103-4d20-a5e3-630113a02ee7"
] | matthias.liechti@87b5f25c-4103-4d20-a5e3-630113a02ee7 |
768be61bbcf0800b0ed1730f93bb9dafac4db36e | 1a33fc11cfeccbbebf6e6d9b4308fe075aa22f48 | /src/test/java/org/hibernate/test/resource/common/SynchronizationErrorImpl.java | 5778a85cd310058b093a4b7d56987a8153862dc3 | [] | no_license | dreab8/JdbcSession | dc68880e6c9f4cf0a83902bd3da321acfa84d2a6 | 2e2ef761029662c5d7019dcf9fcb4d4c878e3393 | refs/heads/master | 2021-01-18T12:45:12.315746 | 2014-09-10T10:47:17 | 2014-09-10T10:47:17 | 20,409,759 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,791 | java | /*
* Hibernate, Relational Persistence for Idiomatic Java
*
* Copyright (c) 2013, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
* statements applied by the authors. All third-party contributions are
* distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package org.hibernate.test.resource.common;
import javax.transaction.Synchronization;
/**
* @author Steve Ebersole
*/
public class SynchronizationErrorImpl implements Synchronization {
private final boolean errorOnBefore;
private final boolean errorOnAfter;
public SynchronizationErrorImpl(boolean errorOnBefore, boolean errorOnAfter) {
this.errorOnBefore = errorOnBefore;
this.errorOnAfter = errorOnAfter;
}
@Override
public void beforeCompletion() {
if ( errorOnBefore ) {
throw new RuntimeException( "throwing requested error on beforeCompletion" );
}
}
@Override
public void afterCompletion(int status) {
if ( errorOnAfter ) {
throw new RuntimeException( "throwing requested error on afterCompletion" );
}
}
}
| [
"steve@hibernate.org"
] | steve@hibernate.org |
39710a3c66b7e4134f1e584542c68763beb0889e | 68e7b94ec74e97748b5edcb6a60c730e85bd3a73 | /app/src/main/java/com/marco97pa/trackmania/utils/FLog.java | 02e687e322c6937d164274cb576a490c7830a904 | [] | no_license | marco97pa/Track-Companion | 1451ad1f676019a8aa998539cb759057071b0f5b | 3f02c08ce465413c90ebb65342e0aa80dc8471c7 | refs/heads/master | 2023-01-21T05:50:34.995639 | 2020-12-03T19:20:33 | 2020-12-03T19:20:33 | 279,116,573 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,466 | java | package com.marco97pa.trackmania.utils;
import android.util.Log;
import com.google.firebase.crashlytics.FirebaseCrashlytics;
import androidx.annotation.NonNull;
/*
* FLog: Fantauzzo's Log
* This class makes easier to Log what is happening in the app
* It will write messages on the classic Log and on the FirebaseCrashlytics Log
*
* HOW TO USE:
* Initialization:
* FLog log = new FLog(LOG_TAG);
*
* Log:
* for debug: log.d("message");
* for info: log.i("message");
* for warning: log.w("message");
* for error: log.e("message");
* for verbose: log.v("message");
*/
public class FLog {
private String LOG_TAG;
private FirebaseCrashlytics firebaseCrashlytics;
public FLog(@NonNull String LOG_TAG){
this.LOG_TAG = LOG_TAG;
firebaseCrashlytics = FirebaseCrashlytics.getInstance();
}
public void d(@NonNull String msg){
Log.d(LOG_TAG, msg);
firebaseCrashlytics.log(msg);
}
public void w(@NonNull String msg){
Log.w(LOG_TAG, msg);
firebaseCrashlytics.log(msg);
}
public void i(@NonNull String msg){
Log.i(LOG_TAG, msg);
firebaseCrashlytics.log(msg);
}
public void e(@NonNull String msg){
Log.e(LOG_TAG, msg);
firebaseCrashlytics.log(msg);
}
public void v(@NonNull String msg){
Log.v(LOG_TAG, msg);
firebaseCrashlytics.log(msg);
}
}
| [
"marco97pa@live.it"
] | marco97pa@live.it |
ccb49893835d3ca2c32e230e158c33254e8899af | b36a7c9716eb77b6fc9d75eabb34201c612e63b7 | /io/src/main/java/ProducerConsumerMain.java | bd520aa2f67e81b18a11639fbf3bae26a80fe46c | [] | no_license | krudzka/javandwro2-parent | 89f0e47f5ec786ab0ff8c29900bd642e429e3b33 | 820034c217b8a22dc4341b75bdf2ec94c4a3c091 | refs/heads/master | 2020-05-21T21:25:40.126045 | 2017-03-30T18:33:20 | 2017-03-30T18:33:20 | 84,648,835 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 391 | java | import pl.jwrabel.trainings.javandwro2.MyMessage;
/**
* Created by RENT on 2017-03-18.
*/
public class ProducerConsumerMain {
public static void main (String[] args){
MyMessage message = new MyMessage();
MyConsumer consumer = new MyConsumer(message);
MyProducer producer = new MyProducer(message);
consumer.start();
producer.start();
}
}
| [
"karolina.k.rudzka@gmail.com"
] | karolina.k.rudzka@gmail.com |
6f0384bdef0e0bdcf770a0c79da3284d362c2c5f | d826d4f8775322a94450539eeb600271683f71e9 | /src/main/java/com/solodream/spring/vertx/resp/job/QuestionResponse.java | 4c0541d5df5992cd1796eb6cd6b42cfa3081c120 | [] | no_license | marc45/springvert3x_microServer | f27770bd6dd2e16bc09e6739f44ea3233297b76d | 74fa4ae841f0a57c6dd33cf32cd99e2c8361249c | refs/heads/master | 2021-01-12T19:17:01.915764 | 2016-10-14T12:07:05 | 2016-10-14T12:07:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 753 | java | package com.solodream.spring.vertx.resp.job;
import com.solodream.spring.vertx.jpa.domain.QuestionInfoDto;
import com.solodream.spring.vertx.resp.BaseResp;
import java.util.List;
/**
* Question对象
*
* @author Young
* @since 1.0
*/
public class QuestionResponse extends BaseResp {
/**
* 总数
*/
private Integer total;
/**
* 当页数据
*/
private List<QuestionInfoDto> dataList;
public Integer getTotal() {
return total;
}
public void setTotal(Integer total) {
this.total = total;
}
public List<QuestionInfoDto> getDataList() {
return dataList;
}
public void setDataList(List<QuestionInfoDto> dataList) {
this.dataList = dataList;
}
} | [
"cy@stlc.cn"
] | cy@stlc.cn |
12b0cf81469014fe936810d89fbdb0e40249cf06 | d0f23c3c9c49bd193a75a1eb3a8072071080feb4 | /web/WEB-INF/src/org/pgist/packages/knapsack/SelectedItemHolder.java | 84f1e81ab9467802a2483e4701d7e9f821e307ce | [] | no_license | pgistgrp/cvo | e3dedebf40208239f4be3d4f535ced048f69f2f9 | 5a2dd6526a8eb14164b451bc08d54e953025299d | refs/heads/master | 2021-01-23T12:10:12.857574 | 2008-03-10T06:16:02 | 2008-03-10T06:16:02 | 38,912,047 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,255 | java | package org.pgist.packages.knapsack;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
/**
* Used to hold all the selected items and allow the user to swap it in and out
*
* @author Matt Paulin
*/
public class SelectedItemHolder {
private HashMap<KSChoices, KSItem> selected = new HashMap<KSChoices, KSItem>();
public KSItem getSelected(KSChoices choice) {
return this.selected.get(choice);
}
public void setChoice(KSChoices choices, KSItem item) {
this.selected.put(choices, item);
}
/**
* Calculates the total cost for all the items
*/
public double getTotalCost() {
double total = 0;
Iterator<KSItem> items = this.selected.values().iterator();
while(items.hasNext()) {
total = total + items.next().getCost();
}
return total;
}
/**
* Forms a collection of all the choices made, removing any 0,0 choices
*/
public Collection<KSItem> getResults() {
ArrayList<KSItem> result = new ArrayList<KSItem>();
Iterator<KSItem> items = this.selected.values().iterator();
KSItem tempItem;
while(items.hasNext()) {
tempItem = items.next();
if(!(tempItem instanceof ZeroItem)) {
result.add(tempItem);
}
}
return result;
}
}
| [
""
] | |
c61e869bcc3395be2a0111cff950441c74d7acc2 | 031b7839a9948faa9caa0c334de6a328288c25ad | /src/main/java/org/aalto/anton/odf/countries/Value.java | 75ff05de5c0230c790dbe1bc9ddadbeb74df56fa | [] | no_license | agmer/O-MI_Lufthansa | ff9e5a2a54bba8c793b558151111f4aab389af77 | 91b9e5fd636df90017a66efcf3ab933c4607dd10 | refs/heads/master | 2021-08-20T08:33:37.120967 | 2017-11-28T15:57:36 | 2017-11-28T15:57:36 | 107,786,002 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 478 | java | package org.aalto.anton.odf.countries;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlValue;
//@XmlRootElement(name="value")
public class Value {
// @XmlElement(name="value")
@XmlValue
String value ="xs:string";
@XmlAttribute(name="type")
String type ="xs:string";
public Value(String value)
{
this.value = value;
}
}
| [
"anton.panhelainen@iki.fi"
] | anton.panhelainen@iki.fi |
fe0126919aafbde399066143797808d10fda47be | 0a6c13a40c552b227a4d8742273a26b174734b84 | /src/main/java/net/mcreator/prettierchests/procedures/WoodLogicProcedure.java | c50f90319352d5c71dc45e631d40b503d1a8e802 | [] | no_license | ChrisCraddock/FarmYardDecorations | 7e8f86f7a8ab048e501873492ac2b3738784a11f | 41fe2e92281bc4f2015a678f5b057c62d4f0bdae | refs/heads/master | 2023-09-04T06:24:56.626932 | 2021-11-01T23:48:36 | 2021-11-01T23:48:36 | 422,568,760 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 239,160 | java | package net.mcreator.prettierchests.procedures;
import net.minecraft.item.ItemStack;
import net.minecraft.inventory.container.Slot;
import net.minecraft.inventory.container.Container;
import net.minecraft.entity.player.ServerPlayerEntity;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.entity.Entity;
import net.minecraft.block.Blocks;
import net.mcreator.prettierchests.block.VerticalTanWoodWhiteStripeBlock;
import net.mcreator.prettierchests.block.VerticalTanWoodTanStripeBlock;
import net.mcreator.prettierchests.block.VerticalTanWoodBrownStripeBlock;
import net.mcreator.prettierchests.block.VerticalBrownWoodWhiteStripeBlock;
import net.mcreator.prettierchests.block.VerticalBrownWoodBrownStripeBlock;
import net.mcreator.prettierchests.block.VerticalBlackWoodBlackStripeBlock;
import net.mcreator.prettierchests.block.HorizontalTanWoodTanStripeBlock;
import net.mcreator.prettierchests.block.HorizontalTanWoodBrownStripeBlock;
import net.mcreator.prettierchests.block.HorizontalBrownWoodWhiteStripeBlock;
import net.mcreator.prettierchests.block.HorizontalBrownWoodBrownStripeBlock;
import net.mcreator.prettierchests.PrettierchestsMod;
import java.util.function.Supplier;
import java.util.Map;
public class WoodLogicProcedure {
public static void executeProcedure(Map<String, Object> dependencies) {
if (dependencies.get("entity") == null) {
if (!dependencies.containsKey("entity"))
PrettierchestsMod.LOGGER.warn("Failed to load dependency entity for procedure WoodLogic!");
return;
}
Entity entity = (Entity) dependencies.get("entity");
if (((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0))) != 65)) {
if ((((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (0))).getItem() == Blocks.ACACIA_PLANKS.asItem()) && ((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (1))).getItem() == Blocks.AIR.asItem()))) {
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (2))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (2))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (9))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (9))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (16))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (16))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBlackWoodBlackStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (23))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (23))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (30))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (30))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (37))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (37))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (3))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (3))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (10))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (10))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (17))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (17))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (24))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (24))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (31))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (38))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (4))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (11))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (18))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (25))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (32))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (39))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (5))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (12))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (19))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (26))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (33))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (40))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (6))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (13))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (20))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (27))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (34))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (41))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (7))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (14))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (21))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (28))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (35))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (42))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (8))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (15))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (22))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (29))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (36))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (43))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
}
if ((((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (0))).getItem() == Blocks.OAK_PLANKS.asItem()) && ((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (1))).getItem() == Blocks.AIR.asItem()))) {
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (2))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (2))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (9))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (9))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (16))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (16))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBlackWoodBlackStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (23))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (23))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (30))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (30))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (37))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (37))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (3))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (3))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (10))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (10))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (17))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (17))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (24))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (24))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (31))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (38))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (4))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (11))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (18))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (25))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (32))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (39))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (5))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (12))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (19))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (26))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (33))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (40))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (6))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (13))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (20))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (27))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (34))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (41))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (7))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (14))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (21))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (28))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (35))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (42))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (8))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (15))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (22))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (29))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (36))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (43))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
}
if ((((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (0))).getItem() == Blocks.SPRUCE_PLANKS.asItem()) && ((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (1))).getItem() == Blocks.AIR.asItem()))) {
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (2))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (2))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (9))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (9))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (16))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (16))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBlackWoodBlackStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (23))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (23))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (30))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (30))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (37))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (37))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (3))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (3))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (10))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (10))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (17))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (17))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (24))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (24))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (31))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (38))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (4))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (11))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (18))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (25))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (32))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (39))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (5))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (12))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (19))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (26))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (33))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (40))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (6))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (13))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (20))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (27))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (34))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (41))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (7))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (14))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (21))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (28))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (35))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (42))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (8))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (15))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (22))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (29))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (36))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (43))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
}
if ((((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (0))).getItem() == Blocks.BIRCH_PLANKS.asItem()) && ((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (1))).getItem() == Blocks.AIR.asItem()))) {
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (2))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (2))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (9))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (9))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (16))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (16))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBlackWoodBlackStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (23))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (23))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (30))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (30))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (37))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (37))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (3))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (3))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (10))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (10))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (17))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (17))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (24))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (24))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (31))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (38))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (4))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (11))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (18))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (25))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (32))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (39))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (5))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (12))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (19))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (26))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (33))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (40))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (6))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (13))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (20))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (27))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (34))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (41))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (7))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (14))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (21))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (28))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (35))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (42))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (8))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (15))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (22))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (29))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (36))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (43))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
}
if ((((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (0))).getItem() == Blocks.JUNGLE_PLANKS.asItem()) && ((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (1))).getItem() == Blocks.AIR.asItem()))) {
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (2))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (2))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (9))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (9))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (16))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (16))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBlackWoodBlackStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (23))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (23))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (30))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (30))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (37))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (37))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (3))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (3))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (10))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (10))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (17))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (17))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (24))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (24))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (31))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (38))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (4))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (11))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (18))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (25))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (32))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (39))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (5))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (12))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (19))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (26))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (33))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (40))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (6))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (13))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (20))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (27))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (34))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (41))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (7))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (14))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (21))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (28))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (35))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (42))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (8))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (15))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (22))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (29))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (36))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (43))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
}
if ((((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (0))).getItem() == Blocks.DARK_OAK_PLANKS.asItem()) && ((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (1))).getItem() == Blocks.AIR.asItem()))) {
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (2))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (2))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (9))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (9))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (16))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (16))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBlackWoodBlackStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (23))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (23))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (30))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (30))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (37))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (37))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (3))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (3))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (10))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (10))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (17))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (17))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (24))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (24))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (31))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (38))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (4))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (11))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (18))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (25))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (32))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (39))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (5))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (12))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (19))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (26))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (33))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (40))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (6))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (13))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (20))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (27))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (34))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (41))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (7))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (14))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (21))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (28))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (35))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (42))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (8))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (15))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (22))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (29))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (36))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (43))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
}
if ((((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (0))).getItem() == Blocks.CRIMSON_PLANKS.asItem()) && ((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (1))).getItem() == Blocks.AIR.asItem()))) {
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (2))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (2))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (9))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (9))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (16))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (16))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBlackWoodBlackStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (23))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (23))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (30))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (30))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (37))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (37))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (3))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (3))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (10))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (10))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (17))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (17))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (24))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (24))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (31))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (38))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (4))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (11))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (18))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (25))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (32))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (39))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (5))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (12))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (19))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (26))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (33))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (40))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (6))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (13))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (20))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (27))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (34))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (41))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (7))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (14))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (21))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (28))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (35))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (42))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (8))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (15))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (22))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (29))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (36))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (43))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
}
if ((((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (0))).getItem() == Blocks.WARPED_PLANKS.asItem()) && ((new Object() {
public ItemStack getItemStack(int sltid) {
Entity _ent = entity;
if (_ent instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) _ent).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
return ((Slot) ((Map) invobj).get(sltid)).getStack();
}
}
}
return ItemStack.EMPTY;
}
}.getItemStack((int) (1))).getItem() == Blocks.AIR.asItem()))) {
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (2))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (2))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (9))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (9))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (16))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (16))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBlackWoodBlackStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (23))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (23))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalTanWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (30))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (30))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(VerticalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (37))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (37))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodWhiteStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (3))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (3))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (10))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (10))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalTanWoodTanStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (17))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (17))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof PlayerEntity) {
Container _current = ((PlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack _setstack = new ItemStack(HorizontalBrownWoodBrownStripeBlock.block);
_setstack.setCount((int) Math.max((new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (24))), (new Object() {
public int getAmount(int sltid) {
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
ItemStack stack = ((Slot) ((Map) invobj).get(sltid)).getStack();;
if (stack != null)
return stack.getCount();
}
}
}
return 0;
}
}.getAmount((int) (0)))));
((Slot) ((Map) invobj).get((int) (24))).putStack(_setstack);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (31))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (38))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (4))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (11))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (18))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (25))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (32))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (39))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (5))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (12))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (19))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (26))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (33))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (40))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (6))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (13))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (20))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (27))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (34))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (41))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (7))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (14))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (21))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (28))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (35))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (42))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (8))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (15))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (22))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (29))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (36))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
if (entity instanceof ServerPlayerEntity) {
Container _current = ((ServerPlayerEntity) entity).openContainer;
if (_current instanceof Supplier) {
Object invobj = ((Supplier) _current).get();
if (invobj instanceof Map) {
((Slot) ((Map) invobj).get((int) (43))).putStack(ItemStack.EMPTY);
_current.detectAndSendChanges();
}
}
}
}
}
}
}
| [
"30630937+ChrisCraddock@users.noreply.github.com"
] | 30630937+ChrisCraddock@users.noreply.github.com |
41ba97b7ba1a075cd325644b8c63aa17f598dd45 | b8ab8500b74d3890ca526abc0335b6e548c49f4a | /java-dynamic-class/lib/src/main/java/edu/lee/compiler/GroovyClassCompiler.java | 0c2cde54b2c187d3d427f4215195f0fcafa9359c | [] | no_license | scorpiopapa/java-demo | 9c993b002c0185cc60074ef356b78a01566b88bc | d8fda2303e6ded3ef279a67927448ced700aea69 | refs/heads/master | 2023-05-03T12:15:52.253624 | 2021-06-01T16:09:27 | 2021-06-01T16:09:27 | 372,890,399 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 357 | java | package edu.lee.compiler;
import groovy.lang.GroovyClassLoader;
public class GroovyClassCompiler implements ClassCompiler {
private GroovyClassLoader groovyClassLoader = new GroovyClassLoader();
@Override
public Class<?> compile(String className, String source) throws Exception {
return groovyClassLoader.parseClass(source);
}
}
| [
"13998429427@139.com"
] | 13998429427@139.com |
256dfcd083fb3e79d179841d64c288c833688f33 | e6d03a24ade7d67c2c4937c66ba6108fd371abb8 | /chieh-user/src/main/java/com/chieh/entity/Response.java | 35ca676bcb93a18ab00a8e15fd143be8034ce60c | [] | no_license | dwyane3011/chieh | 480683bcfff1d3ee12fd67255b135cf08b0aa254 | 536a7d8ed7ae25a7c2730f43123185fea8a1d940 | refs/heads/main | 2023-03-21T08:46:33.851893 | 2023-02-10T10:21:39 | 2023-02-10T10:21:39 | 124,819,509 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,209 | java | package com.chieh.entity;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import java.io.Serializable;
@Getter
@Setter
@ToString
@Builder
@JsonInclude(JsonInclude.Include.NON_NULL)
public class Response<T> implements Serializable {
private String requestId;
private String code = "200";
private String msg = "success";
private T data;
private Integer pageIndex;
private Integer pageSize;
private Integer totalCount;
public static Response data(Object data) {
return Response.builder()
.code("200")
.msg("ok")
.data(data)
.build();
}
public static Response failure(String code, String msg) {
return Response.builder()
.code(code)
.msg(msg)
.build();
}
public static Response success() {
return success("200", "操作成功");
}
public static Response success(String code, String msg) {
return Response.builder()
.code(code)
.msg(msg)
.build();
}
}
| [
"dwyane3011@163.com"
] | dwyane3011@163.com |
ddbb369b305699dcecdac8baaf51980811127d43 | 9b75d8540ff2e55f9ff66918cc5676ae19c3bbe3 | /bazaar8.apk-decompiled/sources/c/c/a/n/j/d/p.java | 79d194886ecaa8026d06b5f3e5c63a89fe928bab | [] | no_license | BaseMax/PopularAndroidSource | a395ccac5c0a7334d90c2594db8273aca39550ed | bcae15340907797a91d39f89b9d7266e0292a184 | refs/heads/master | 2020-08-05T08:19:34.146858 | 2019-10-06T20:06:31 | 2019-10-06T20:06:31 | 212,433,298 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,961 | java | package c.c.a.n.j.d;
import android.os.Bundle;
import android.os.Parcelable;
import c.c.a.d;
import com.farsitel.bazaar.R;
import com.farsitel.bazaar.ui.appdetail.ToolbarInfoModel;
import h.f.b.f;
import h.f.b.j;
import java.io.Serializable;
import kotlin.TypeCastException;
/* compiled from: EpisodeDetailFragmentDirections.kt */
public final class p {
/* renamed from: a reason: collision with root package name */
public static final c f6538a = new c(null);
/* compiled from: EpisodeDetailFragmentDirections.kt */
private static final class a implements b.w.p {
/* renamed from: a reason: collision with root package name */
public final String f6539a;
/* renamed from: b reason: collision with root package name */
public final String f6540b;
/* renamed from: c reason: collision with root package name */
public final ToolbarInfoModel f6541c;
public a(String str, String str2, ToolbarInfoModel toolbarInfoModel) {
j.b(str, "referrer");
j.b(str2, "videoId");
j.b(toolbarInfoModel, "toolbarInfo");
this.f6539a = str;
this.f6540b = str2;
this.f6541c = toolbarInfoModel;
}
public Bundle a() {
Bundle bundle = new Bundle();
bundle.putString("referrer", this.f6539a);
bundle.putString("videoId", this.f6540b);
if (Parcelable.class.isAssignableFrom(ToolbarInfoModel.class)) {
ToolbarInfoModel toolbarInfoModel = this.f6541c;
if (toolbarInfoModel != null) {
bundle.putParcelable("toolbarInfo", (Parcelable) toolbarInfoModel);
} else {
throw new TypeCastException("null cannot be cast to non-null type android.os.Parcelable");
}
} else if (Serializable.class.isAssignableFrom(ToolbarInfoModel.class)) {
ToolbarInfoModel toolbarInfoModel2 = this.f6541c;
if (toolbarInfoModel2 != null) {
bundle.putSerializable("toolbarInfo", toolbarInfoModel2);
} else {
throw new TypeCastException("null cannot be cast to non-null type java.io.Serializable");
}
} else {
throw new UnsupportedOperationException(ToolbarInfoModel.class.getName() + " must implement Parcelable or Serializable or must be an Enum.");
}
return bundle;
}
public int b() {
return R.id.actionEpisodeDetailToAllReviews;
}
/* JADX WARNING: Code restructure failed: missing block: B:8:0x0024, code lost:
if (h.f.b.j.a((java.lang.Object) r2.f6541c, (java.lang.Object) r3.f6541c) != false) goto L_0x0029;
*/
/* Code decompiled incorrectly, please refer to instructions dump. */
public boolean equals(java.lang.Object r3) {
/*
r2 = this;
if (r2 == r3) goto L_0x0029
boolean r0 = r3 instanceof c.c.a.n.j.d.p.a
if (r0 == 0) goto L_0x0027
c.c.a.n.j.d.p$a r3 = (c.c.a.n.j.d.p.a) r3
java.lang.String r0 = r2.f6539a
java.lang.String r1 = r3.f6539a
boolean r0 = h.f.b.j.a((java.lang.Object) r0, (java.lang.Object) r1)
if (r0 == 0) goto L_0x0027
java.lang.String r0 = r2.f6540b
java.lang.String r1 = r3.f6540b
boolean r0 = h.f.b.j.a((java.lang.Object) r0, (java.lang.Object) r1)
if (r0 == 0) goto L_0x0027
com.farsitel.bazaar.ui.appdetail.ToolbarInfoModel r0 = r2.f6541c
com.farsitel.bazaar.ui.appdetail.ToolbarInfoModel r3 = r3.f6541c
boolean r3 = h.f.b.j.a((java.lang.Object) r0, (java.lang.Object) r3)
if (r3 == 0) goto L_0x0027
goto L_0x0029
L_0x0027:
r3 = 0
return r3
L_0x0029:
r3 = 1
return r3
*/
throw new UnsupportedOperationException("Method not decompiled: c.c.a.n.j.d.p.a.equals(java.lang.Object):boolean");
}
public int hashCode() {
String str = this.f6539a;
int i2 = 0;
int hashCode = (str != null ? str.hashCode() : 0) * 31;
String str2 = this.f6540b;
int hashCode2 = (hashCode + (str2 != null ? str2.hashCode() : 0)) * 31;
ToolbarInfoModel toolbarInfoModel = this.f6541c;
if (toolbarInfoModel != null) {
i2 = toolbarInfoModel.hashCode();
}
return hashCode2 + i2;
}
public String toString() {
return "ActionEpisodeDetailToAllReviews(referrer=" + this.f6539a + ", videoId=" + this.f6540b + ", toolbarInfo=" + this.f6541c + ")";
}
}
/* compiled from: EpisodeDetailFragmentDirections.kt */
private static final class b implements b.w.p {
/* renamed from: a reason: collision with root package name */
public final String f6542a;
/* renamed from: b reason: collision with root package name */
public final int f6543b;
/* renamed from: c reason: collision with root package name */
public final String f6544c;
public b(String str, int i2, String str2) {
j.b(str, "episodeId");
j.b(str2, "referrer");
this.f6542a = str;
this.f6543b = i2;
this.f6544c = str2;
}
public Bundle a() {
Bundle bundle = new Bundle();
bundle.putString("episodeId", this.f6542a);
bundle.putInt("seasonIndex", this.f6543b);
bundle.putString("referrer", this.f6544c);
return bundle;
}
public int b() {
return R.id.actionEpisodeDetailToEpisodeDetail;
}
public boolean equals(Object obj) {
if (this != obj) {
if (obj instanceof b) {
b bVar = (b) obj;
if (j.a((Object) this.f6542a, (Object) bVar.f6542a)) {
if (!(this.f6543b == bVar.f6543b) || !j.a((Object) this.f6544c, (Object) bVar.f6544c)) {
return false;
}
}
}
return false;
}
return true;
}
public int hashCode() {
String str = this.f6542a;
int i2 = 0;
int hashCode = (((str != null ? str.hashCode() : 0) * 31) + Integer.valueOf(this.f6543b).hashCode()) * 31;
String str2 = this.f6544c;
if (str2 != null) {
i2 = str2.hashCode();
}
return hashCode + i2;
}
public String toString() {
return "ActionEpisodeDetailToEpisodeDetail(episodeId=" + this.f6542a + ", seasonIndex=" + this.f6543b + ", referrer=" + this.f6544c + ")";
}
}
/* compiled from: EpisodeDetailFragmentDirections.kt */
public static final class c {
public c() {
}
public final b.w.p a(String str, int i2, String str2) {
j.b(str, "episodeId");
j.b(str2, "referrer");
return new b(str, i2, str2);
}
public final b.w.p b(String str, int i2, String str2) {
j.b(str, "episodeId");
j.b(str2, "referrer");
return d.f4738a.a(str, i2, str2);
}
public /* synthetic */ c(f fVar) {
this();
}
public final b.w.p a(String str, String str2, ToolbarInfoModel toolbarInfoModel) {
j.b(str, "referrer");
j.b(str2, "videoId");
j.b(toolbarInfoModel, "toolbarInfo");
return new a(str, str2, toolbarInfoModel);
}
}
}
| [
"MaxBaseCode@gmail.com"
] | MaxBaseCode@gmail.com |
6fa875e5d7947b52de50517bf73cbbbe65c620c0 | 70b2554bcc7ef9a5b1873badeecc7fef3ed0fd92 | /dhss-alarm/src/main/java/com/nokia/ices/app/dhss/service/AlarmMonitorService.java | 9f174185a3ac56b51e095126a6a0db9913654b18 | [] | no_license | epicGeek/chaos | b4f83bf77d7e94f072907c1469fa67673eb721e4 | 9bb2bbc6f68831ab8e7147d03f53134f3364610f | refs/heads/master | 2021-05-02T14:00:45.476817 | 2018-02-08T04:51:47 | 2018-02-08T04:51:47 | 120,710,943 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,679 | java | package com.nokia.ices.app.dhss.service;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.domain.Specification;
import org.springframework.web.multipart.MultipartFile;
import com.nokia.ices.app.dhss.domain.alarm.AlarmMonitor;
import com.nokia.ices.app.dhss.domain.alarm.AlarmReceiveHistory;
import com.nokia.ices.app.dhss.domain.alarm.AlarmReceiveRecord;
import com.nokia.ices.app.dhss.domain.alarm.AlarmRule;
import com.nokia.ices.app.dhss.domain.alarm.UserAlarmMonitor;
import com.nokia.ices.app.dhss.domain.equipment.EquipmentUnit;
public interface AlarmMonitorService {
public void returnDhssList(List<Map<String, Object>> root,String token);
public void returnNeList(List<Map<String, Object>> root,String dhssName,String token);
public void returnUnitList(List<Map<String, Object>> root,String neName,String token);
public List<Map<String,String>> findEquipmentNe(String token);
public List<EquipmentUnit> findEquipmentUnit(Map<String,Object> paramMap);
public List<AlarmReceiveRecord> findAlarmReceiveRecord(Map<String,Object> mapParamMap);
public List<UserAlarmMonitor> findUserAlarmMonitor(Map<String,Object> mapParamMap);
public UserAlarmMonitor joinCollection(UserAlarmMonitor userAlarm,String token);
public boolean cancelCollection(UserAlarmMonitor userAlarm,String token);
public Page<AlarmMonitor> findAlarmMonitorCustom(Map<String,Specification<AlarmMonitor>> map , Pageable pageable);
public Page<AlarmReceiveHistory> findAlarmMonitorHistory(Map<String, Object> paramMap, Pageable pageable);
public List<AlarmReceiveHistory> findAlarmMonitorHistory(Map<String, Object> paramMap);
public void exportData(List<AlarmReceiveHistory> data,HttpServletResponse response) throws ClassNotFoundException;
public Page<AlarmRule> findAlarmRule(Map<String, Object> paramMap, Pageable pageable);
public List<AlarmRule> findExportAlarmRule(Map<String, Object> paramMap);
public void exportAlarmRule(List<AlarmRule> exportData, HttpServletRequest request, HttpServletResponse response);
public Map<String, String> handleWithUploadFile(MultipartFile multiQueryTemplate);
public Map<String, String> importHSSFE(MultipartFile multiQueryTemplate);
public Map<String, String> importNTHLR(MultipartFile multiQueryTemplate);
public Map<String, String> importOneNDS(MultipartFile multiQueryTemplate);
public AlarmReceiveHistory cancelAlarm(AlarmReceiveRecord record);
public List<String> getUnitList(String token);
}
| [
"peinan@ihotsoft.com"
] | peinan@ihotsoft.com |
1a45235db1d5369021db14c10044bc746f035abf | 626ae761b0f3114f76ece6bd9977b59418d3d561 | /slidingmenulibrary/build/generated/source/r/androidTest/debug/android/support/v7/appcompat/R.java | 7a2f6eca6dfe4eb8e333fc6f1aadb9d7cca225b7 | [] | no_license | Wangmanman01/TestDemo | 714a137a677ff42e254b5f979fd35f02397b6022 | 0553a18179c4712ce65a0037befa057a9dfed839 | refs/heads/master | 2021-08-19T20:12:06.646950 | 2017-11-27T10:14:47 | 2017-11-27T10:14:47 | 112,160,201 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 109,364 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* gradle plugin from the resource data it found. It
* should not be modified by hand.
*/
package android.support.v7.appcompat;
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 class attr {
public static final int actionBarDivider = 0x7f010041;
public static final int actionBarItemBackground = 0x7f010042;
public static final int actionBarPopupTheme = 0x7f01003b;
public static final int actionBarSize = 0x7f010040;
public static final int actionBarSplitStyle = 0x7f01003d;
public static final int actionBarStyle = 0x7f01003c;
public static final int actionBarTabBarStyle = 0x7f010037;
public static final int actionBarTabStyle = 0x7f010036;
public static final int actionBarTabTextStyle = 0x7f010038;
public static final int actionBarTheme = 0x7f01003e;
public static final int actionBarWidgetTheme = 0x7f01003f;
public static final int actionButtonStyle = 0x7f01005c;
public static final int actionDropDownStyle = 0x7f010058;
public static final int actionLayout = 0x7f0100ad;
public static final int actionMenuTextAppearance = 0x7f010043;
public static final int actionMenuTextColor = 0x7f010044;
public static final int actionModeBackground = 0x7f010047;
public static final int actionModeCloseButtonStyle = 0x7f010046;
public static final int actionModeCloseDrawable = 0x7f010049;
public static final int actionModeCopyDrawable = 0x7f01004b;
public static final int actionModeCutDrawable = 0x7f01004a;
public static final int actionModeFindDrawable = 0x7f01004f;
public static final int actionModePasteDrawable = 0x7f01004c;
public static final int actionModePopupWindowStyle = 0x7f010051;
public static final int actionModeSelectAllDrawable = 0x7f01004d;
public static final int actionModeShareDrawable = 0x7f01004e;
public static final int actionModeSplitBackground = 0x7f010048;
public static final int actionModeStyle = 0x7f010045;
public static final int actionModeWebSearchDrawable = 0x7f010050;
public static final int actionOverflowButtonStyle = 0x7f010039;
public static final int actionOverflowMenuStyle = 0x7f01003a;
public static final int actionProviderClass = 0x7f0100af;
public static final int actionViewClass = 0x7f0100ae;
public static final int activityChooserViewStyle = 0x7f010064;
public static final int alertDialogButtonGroupStyle = 0x7f010088;
public static final int alertDialogCenterButtons = 0x7f010089;
public static final int alertDialogStyle = 0x7f010087;
public static final int alertDialogTheme = 0x7f01008a;
public static final int allowStacking = 0x7f01009d;
public static final int alpha = 0x7f01009e;
public static final int arrowHeadLength = 0x7f0100a5;
public static final int arrowShaftLength = 0x7f0100a6;
public static final int autoCompleteTextViewStyle = 0x7f01008f;
public static final int background = 0x7f01000c;
public static final int backgroundSplit = 0x7f01000e;
public static final int backgroundStacked = 0x7f01000d;
public static final int backgroundTint = 0x7f0100f2;
public static final int backgroundTintMode = 0x7f0100f3;
public static final int barLength = 0x7f0100a7;
public static final int borderlessButtonStyle = 0x7f010061;
public static final int buttonBarButtonStyle = 0x7f01005e;
public static final int buttonBarNegativeButtonStyle = 0x7f01008d;
public static final int buttonBarNeutralButtonStyle = 0x7f01008e;
public static final int buttonBarPositiveButtonStyle = 0x7f01008c;
public static final int buttonBarStyle = 0x7f01005d;
public static final int buttonGravity = 0x7f0100e7;
public static final int buttonPanelSideLayout = 0x7f010021;
public static final int buttonStyle = 0x7f010090;
public static final int buttonStyleSmall = 0x7f010091;
public static final int buttonTint = 0x7f01009f;
public static final int buttonTintMode = 0x7f0100a0;
public static final int checkboxStyle = 0x7f010092;
public static final int checkedTextViewStyle = 0x7f010093;
public static final int closeIcon = 0x7f0100bc;
public static final int closeItemLayout = 0x7f01001e;
public static final int collapseContentDescription = 0x7f0100e9;
public static final int collapseIcon = 0x7f0100e8;
public static final int color = 0x7f0100a1;
public static final int colorAccent = 0x7f01007f;
public static final int colorBackgroundFloating = 0x7f010086;
public static final int colorButtonNormal = 0x7f010083;
public static final int colorControlActivated = 0x7f010081;
public static final int colorControlHighlight = 0x7f010082;
public static final int colorControlNormal = 0x7f010080;
public static final int colorPrimary = 0x7f01007d;
public static final int colorPrimaryDark = 0x7f01007e;
public static final int colorSwitchThumbNormal = 0x7f010084;
public static final int commitIcon = 0x7f0100c1;
public static final int contentDescription = 0x7f0100b0;
public static final int contentInsetEnd = 0x7f010017;
public static final int contentInsetEndWithActions = 0x7f01001b;
public static final int contentInsetLeft = 0x7f010018;
public static final int contentInsetRight = 0x7f010019;
public static final int contentInsetStart = 0x7f010016;
public static final int contentInsetStartWithNavigation = 0x7f01001a;
public static final int controlBackground = 0x7f010085;
public static final int customNavigationLayout = 0x7f01000f;
public static final int defaultQueryHint = 0x7f0100bb;
public static final int dialogPreferredPadding = 0x7f010056;
public static final int dialogTheme = 0x7f010055;
public static final int displayOptions = 0x7f010005;
public static final int divider = 0x7f01000b;
public static final int dividerHorizontal = 0x7f010063;
public static final int dividerPadding = 0x7f0100ab;
public static final int dividerVertical = 0x7f010062;
public static final int drawableSize = 0x7f0100a3;
public static final int drawerArrowStyle = 0x7f010000;
public static final int dropDownListViewStyle = 0x7f010075;
public static final int dropdownListPreferredItemHeight = 0x7f010059;
public static final int editTextBackground = 0x7f01006a;
public static final int editTextColor = 0x7f010069;
public static final int editTextStyle = 0x7f010094;
public static final int elevation = 0x7f01001c;
public static final int expandActivityOverflowButtonDrawable = 0x7f010020;
public static final int gapBetweenBars = 0x7f0100a4;
public static final int goIcon = 0x7f0100bd;
public static final int height = 0x7f010001;
public static final int hideOnContentScroll = 0x7f010015;
public static final int homeAsUpIndicator = 0x7f01005b;
public static final int homeLayout = 0x7f010010;
public static final int icon = 0x7f010009;
public static final int iconifiedByDefault = 0x7f0100b9;
public static final int imageButtonStyle = 0x7f01006b;
public static final int indeterminateProgressStyle = 0x7f010012;
public static final int initialActivityCount = 0x7f01001f;
public static final int isLightTheme = 0x7f010002;
public static final int itemPadding = 0x7f010014;
public static final int layout = 0x7f0100b8;
public static final int listChoiceBackgroundIndicator = 0x7f01007c;
public static final int listDividerAlertDialog = 0x7f010057;
public static final int listItemLayout = 0x7f010025;
public static final int listLayout = 0x7f010022;
public static final int listMenuViewStyle = 0x7f01009c;
public static final int listPopupWindowStyle = 0x7f010076;
public static final int listPreferredItemHeight = 0x7f010070;
public static final int listPreferredItemHeightLarge = 0x7f010072;
public static final int listPreferredItemHeightSmall = 0x7f010071;
public static final int listPreferredItemPaddingLeft = 0x7f010073;
public static final int listPreferredItemPaddingRight = 0x7f010074;
public static final int logo = 0x7f01000a;
public static final int logoDescription = 0x7f0100ec;
public static final int maxButtonHeight = 0x7f0100e6;
public static final int measureWithLargestChild = 0x7f0100a9;
public static final int multiChoiceItemLayout = 0x7f010023;
public static final int navigationContentDescription = 0x7f0100eb;
public static final int navigationIcon = 0x7f0100ea;
public static final int navigationMode = 0x7f010004;
public static final int overlapAnchor = 0x7f0100b4;
public static final int paddingBottomNoButtons = 0x7f0100b6;
public static final int paddingEnd = 0x7f0100f0;
public static final int paddingStart = 0x7f0100ef;
public static final int paddingTopNoTitle = 0x7f0100b7;
public static final int panelBackground = 0x7f010079;
public static final int panelMenuListTheme = 0x7f01007b;
public static final int panelMenuListWidth = 0x7f01007a;
public static final int popupMenuStyle = 0x7f010067;
public static final int popupTheme = 0x7f01001d;
public static final int popupWindowStyle = 0x7f010068;
public static final int preserveIconSpacing = 0x7f0100b2;
public static final int progressBarPadding = 0x7f010013;
public static final int progressBarStyle = 0x7f010011;
public static final int queryBackground = 0x7f0100c3;
public static final int queryHint = 0x7f0100ba;
public static final int radioButtonStyle = 0x7f010095;
public static final int ratingBarStyle = 0x7f010096;
public static final int ratingBarStyleIndicator = 0x7f010097;
public static final int ratingBarStyleSmall = 0x7f010098;
public static final int searchHintIcon = 0x7f0100bf;
public static final int searchIcon = 0x7f0100be;
public static final int searchViewStyle = 0x7f01006f;
public static final int seekBarStyle = 0x7f010099;
public static final int selectableItemBackground = 0x7f01005f;
public static final int selectableItemBackgroundBorderless = 0x7f010060;
public static final int showAsAction = 0x7f0100ac;
public static final int showDividers = 0x7f0100aa;
public static final int showText = 0x7f0100dd;
public static final int showTitle = 0x7f010026;
public static final int singleChoiceItemLayout = 0x7f010024;
public static final int spinBars = 0x7f0100a2;
public static final int spinnerDropDownItemStyle = 0x7f01005a;
public static final int spinnerStyle = 0x7f01009a;
public static final int splitTrack = 0x7f0100dc;
public static final int srcCompat = 0x7f010027;
public static final int state_above_anchor = 0x7f0100b5;
public static final int subMenuArrow = 0x7f0100b3;
public static final int submitBackground = 0x7f0100c4;
public static final int subtitle = 0x7f010006;
public static final int subtitleTextAppearance = 0x7f0100df;
public static final int subtitleTextColor = 0x7f0100ee;
public static final int subtitleTextStyle = 0x7f010008;
public static final int suggestionRowLayout = 0x7f0100c2;
public static final int switchMinWidth = 0x7f0100da;
public static final int switchPadding = 0x7f0100db;
public static final int switchStyle = 0x7f01009b;
public static final int switchTextAppearance = 0x7f0100d9;
public static final int textAllCaps = 0x7f01002b;
public static final int textAppearanceLargePopupMenu = 0x7f010052;
public static final int textAppearanceListItem = 0x7f010077;
public static final int textAppearanceListItemSmall = 0x7f010078;
public static final int textAppearancePopupMenuHeader = 0x7f010054;
public static final int textAppearanceSearchResultSubtitle = 0x7f01006d;
public static final int textAppearanceSearchResultTitle = 0x7f01006c;
public static final int textAppearanceSmallPopupMenu = 0x7f010053;
public static final int textColorAlertDialogListItem = 0x7f01008b;
public static final int textColorSearchUrl = 0x7f01006e;
public static final int theme = 0x7f0100f1;
public static final int thickness = 0x7f0100a8;
public static final int thumbTextPadding = 0x7f0100d8;
public static final int thumbTint = 0x7f0100d3;
public static final int thumbTintMode = 0x7f0100d4;
public static final int tickMark = 0x7f010028;
public static final int tickMarkTint = 0x7f010029;
public static final int tickMarkTintMode = 0x7f01002a;
public static final int title = 0x7f010003;
public static final int titleMargin = 0x7f0100e0;
public static final int titleMarginBottom = 0x7f0100e4;
public static final int titleMarginEnd = 0x7f0100e2;
public static final int titleMarginStart = 0x7f0100e1;
public static final int titleMarginTop = 0x7f0100e3;
public static final int titleMargins = 0x7f0100e5;
public static final int titleTextAppearance = 0x7f0100de;
public static final int titleTextColor = 0x7f0100ed;
public static final int titleTextStyle = 0x7f010007;
public static final int toolbarNavigationButtonStyle = 0x7f010066;
public static final int toolbarStyle = 0x7f010065;
public static final int tooltipText = 0x7f0100b1;
public static final int track = 0x7f0100d5;
public static final int trackTint = 0x7f0100d6;
public static final int trackTintMode = 0x7f0100d7;
public static final int voiceIcon = 0x7f0100c0;
public static final int windowActionBar = 0x7f01002c;
public static final int windowActionBarOverlay = 0x7f01002e;
public static final int windowActionModeOverlay = 0x7f01002f;
public static final int windowFixedHeightMajor = 0x7f010033;
public static final int windowFixedHeightMinor = 0x7f010031;
public static final int windowFixedWidthMajor = 0x7f010030;
public static final int windowFixedWidthMinor = 0x7f010032;
public static final int windowMinWidthMajor = 0x7f010034;
public static final int windowMinWidthMinor = 0x7f010035;
public static final int windowNoTitle = 0x7f01002d;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs = 0x7f080000;
public static final int abc_allow_stacked_button_bar = 0x7f080001;
public static final int abc_config_actionMenuItemAllCaps = 0x7f080002;
public static final int abc_config_closeDialogWhenTouchOutside = 0x7f080003;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080004;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark = 0x7f09003b;
public static final int abc_background_cache_hint_selector_material_light = 0x7f09003c;
public static final int abc_btn_colored_borderless_text_material = 0x7f09003d;
public static final int abc_btn_colored_text_material = 0x7f09003e;
public static final int abc_color_highlight_material = 0x7f09003f;
public static final int abc_hint_foreground_material_dark = 0x7f090040;
public static final int abc_hint_foreground_material_light = 0x7f090041;
public static final int abc_input_method_navigation_guard = 0x7f090001;
public static final int abc_primary_text_disable_only_material_dark = 0x7f090042;
public static final int abc_primary_text_disable_only_material_light = 0x7f090043;
public static final int abc_primary_text_material_dark = 0x7f090044;
public static final int abc_primary_text_material_light = 0x7f090045;
public static final int abc_search_url_text = 0x7f090046;
public static final int abc_search_url_text_normal = 0x7f090002;
public static final int abc_search_url_text_pressed = 0x7f090003;
public static final int abc_search_url_text_selected = 0x7f090004;
public static final int abc_secondary_text_material_dark = 0x7f090047;
public static final int abc_secondary_text_material_light = 0x7f090048;
public static final int abc_tint_btn_checkable = 0x7f090049;
public static final int abc_tint_default = 0x7f09004a;
public static final int abc_tint_edittext = 0x7f09004b;
public static final int abc_tint_seek_thumb = 0x7f09004c;
public static final int abc_tint_spinner = 0x7f09004d;
public static final int abc_tint_switch_thumb = 0x7f09004e;
public static final int abc_tint_switch_track = 0x7f09004f;
public static final int accent_material_dark = 0x7f090005;
public static final int accent_material_light = 0x7f090006;
public static final int background_floating_material_dark = 0x7f090007;
public static final int background_floating_material_light = 0x7f090008;
public static final int background_material_dark = 0x7f090009;
public static final int background_material_light = 0x7f09000a;
public static final int bright_foreground_disabled_material_dark = 0x7f09000b;
public static final int bright_foreground_disabled_material_light = 0x7f09000c;
public static final int bright_foreground_inverse_material_dark = 0x7f09000d;
public static final int bright_foreground_inverse_material_light = 0x7f09000e;
public static final int bright_foreground_material_dark = 0x7f09000f;
public static final int bright_foreground_material_light = 0x7f090010;
public static final int button_material_dark = 0x7f090011;
public static final int button_material_light = 0x7f090012;
public static final int dim_foreground_disabled_material_dark = 0x7f090013;
public static final int dim_foreground_disabled_material_light = 0x7f090014;
public static final int dim_foreground_material_dark = 0x7f090015;
public static final int dim_foreground_material_light = 0x7f090016;
public static final int foreground_material_dark = 0x7f090017;
public static final int foreground_material_light = 0x7f090018;
public static final int highlighted_text_material_dark = 0x7f090019;
public static final int highlighted_text_material_light = 0x7f09001a;
public static final int material_blue_grey_800 = 0x7f09001b;
public static final int material_blue_grey_900 = 0x7f09001c;
public static final int material_blue_grey_950 = 0x7f09001d;
public static final int material_deep_teal_200 = 0x7f09001e;
public static final int material_deep_teal_500 = 0x7f09001f;
public static final int material_grey_100 = 0x7f090020;
public static final int material_grey_300 = 0x7f090021;
public static final int material_grey_50 = 0x7f090022;
public static final int material_grey_600 = 0x7f090023;
public static final int material_grey_800 = 0x7f090024;
public static final int material_grey_850 = 0x7f090025;
public static final int material_grey_900 = 0x7f090026;
public static final int notification_action_color_filter = 0x7f090000;
public static final int notification_icon_bg_color = 0x7f090027;
public static final int notification_material_background_media_default_color = 0x7f090028;
public static final int primary_dark_material_dark = 0x7f090029;
public static final int primary_dark_material_light = 0x7f09002a;
public static final int primary_material_dark = 0x7f09002b;
public static final int primary_material_light = 0x7f09002c;
public static final int primary_text_default_material_dark = 0x7f09002d;
public static final int primary_text_default_material_light = 0x7f09002e;
public static final int primary_text_disabled_material_dark = 0x7f09002f;
public static final int primary_text_disabled_material_light = 0x7f090030;
public static final int ripple_material_dark = 0x7f090031;
public static final int ripple_material_light = 0x7f090032;
public static final int secondary_text_default_material_dark = 0x7f090033;
public static final int secondary_text_default_material_light = 0x7f090034;
public static final int secondary_text_disabled_material_dark = 0x7f090035;
public static final int secondary_text_disabled_material_light = 0x7f090036;
public static final int switch_thumb_disabled_material_dark = 0x7f090037;
public static final int switch_thumb_disabled_material_light = 0x7f090038;
public static final int switch_thumb_material_dark = 0x7f090050;
public static final int switch_thumb_material_light = 0x7f090051;
public static final int switch_thumb_normal_material_dark = 0x7f090039;
public static final int switch_thumb_normal_material_light = 0x7f09003a;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material = 0x7f06000c;
public static final int abc_action_bar_content_inset_with_nav = 0x7f06000d;
public static final int abc_action_bar_default_height_material = 0x7f060001;
public static final int abc_action_bar_default_padding_end_material = 0x7f06000e;
public static final int abc_action_bar_default_padding_start_material = 0x7f06000f;
public static final int abc_action_bar_elevation_material = 0x7f060015;
public static final int abc_action_bar_icon_vertical_padding_material = 0x7f060016;
public static final int abc_action_bar_overflow_padding_end_material = 0x7f060017;
public static final int abc_action_bar_overflow_padding_start_material = 0x7f060018;
public static final int abc_action_bar_progress_bar_size = 0x7f060002;
public static final int abc_action_bar_stacked_max_height = 0x7f060019;
public static final int abc_action_bar_stacked_tab_max_width = 0x7f06001a;
public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f06001b;
public static final int abc_action_bar_subtitle_top_margin_material = 0x7f06001c;
public static final int abc_action_button_min_height_material = 0x7f06001d;
public static final int abc_action_button_min_width_material = 0x7f06001e;
public static final int abc_action_button_min_width_overflow_material = 0x7f06001f;
public static final int abc_alert_dialog_button_bar_height = 0x7f060000;
public static final int abc_button_inset_horizontal_material = 0x7f060020;
public static final int abc_button_inset_vertical_material = 0x7f060021;
public static final int abc_button_padding_horizontal_material = 0x7f060022;
public static final int abc_button_padding_vertical_material = 0x7f060023;
public static final int abc_cascading_menus_min_smallest_width = 0x7f060024;
public static final int abc_config_prefDialogWidth = 0x7f060005;
public static final int abc_control_corner_material = 0x7f060025;
public static final int abc_control_inset_material = 0x7f060026;
public static final int abc_control_padding_material = 0x7f060027;
public static final int abc_dialog_fixed_height_major = 0x7f060006;
public static final int abc_dialog_fixed_height_minor = 0x7f060007;
public static final int abc_dialog_fixed_width_major = 0x7f060008;
public static final int abc_dialog_fixed_width_minor = 0x7f060009;
public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f060028;
public static final int abc_dialog_list_padding_top_no_title = 0x7f060029;
public static final int abc_dialog_min_width_major = 0x7f06000a;
public static final int abc_dialog_min_width_minor = 0x7f06000b;
public static final int abc_dialog_padding_material = 0x7f06002a;
public static final int abc_dialog_padding_top_material = 0x7f06002b;
public static final int abc_dialog_title_divider_material = 0x7f06002c;
public static final int abc_disabled_alpha_material_dark = 0x7f06002d;
public static final int abc_disabled_alpha_material_light = 0x7f06002e;
public static final int abc_dropdownitem_icon_width = 0x7f06002f;
public static final int abc_dropdownitem_text_padding_left = 0x7f060030;
public static final int abc_dropdownitem_text_padding_right = 0x7f060031;
public static final int abc_edit_text_inset_bottom_material = 0x7f060032;
public static final int abc_edit_text_inset_horizontal_material = 0x7f060033;
public static final int abc_edit_text_inset_top_material = 0x7f060034;
public static final int abc_floating_window_z = 0x7f060035;
public static final int abc_list_item_padding_horizontal_material = 0x7f060036;
public static final int abc_panel_menu_list_width = 0x7f060037;
public static final int abc_progress_bar_height_material = 0x7f060038;
public static final int abc_search_view_preferred_height = 0x7f060039;
public static final int abc_search_view_preferred_width = 0x7f06003a;
public static final int abc_seekbar_track_background_height_material = 0x7f06003b;
public static final int abc_seekbar_track_progress_height_material = 0x7f06003c;
public static final int abc_select_dialog_padding_start_material = 0x7f06003d;
public static final int abc_switch_padding = 0x7f060011;
public static final int abc_text_size_body_1_material = 0x7f06003e;
public static final int abc_text_size_body_2_material = 0x7f06003f;
public static final int abc_text_size_button_material = 0x7f060040;
public static final int abc_text_size_caption_material = 0x7f060041;
public static final int abc_text_size_display_1_material = 0x7f060042;
public static final int abc_text_size_display_2_material = 0x7f060043;
public static final int abc_text_size_display_3_material = 0x7f060044;
public static final int abc_text_size_display_4_material = 0x7f060045;
public static final int abc_text_size_headline_material = 0x7f060046;
public static final int abc_text_size_large_material = 0x7f060047;
public static final int abc_text_size_medium_material = 0x7f060048;
public static final int abc_text_size_menu_header_material = 0x7f060049;
public static final int abc_text_size_menu_material = 0x7f06004a;
public static final int abc_text_size_small_material = 0x7f06004b;
public static final int abc_text_size_subhead_material = 0x7f06004c;
public static final int abc_text_size_subtitle_material_toolbar = 0x7f060003;
public static final int abc_text_size_title_material = 0x7f06004d;
public static final int abc_text_size_title_material_toolbar = 0x7f060004;
public static final int disabled_alpha_material_dark = 0x7f06004e;
public static final int disabled_alpha_material_light = 0x7f06004f;
public static final int highlight_alpha_material_colored = 0x7f060050;
public static final int highlight_alpha_material_dark = 0x7f060051;
public static final int highlight_alpha_material_light = 0x7f060052;
public static final int hint_alpha_material_dark = 0x7f060053;
public static final int hint_alpha_material_light = 0x7f060054;
public static final int hint_pressed_alpha_material_dark = 0x7f060055;
public static final int hint_pressed_alpha_material_light = 0x7f060056;
public static final int notification_action_icon_size = 0x7f060057;
public static final int notification_action_text_size = 0x7f060058;
public static final int notification_big_circle_margin = 0x7f060059;
public static final int notification_content_margin_start = 0x7f060012;
public static final int notification_large_icon_height = 0x7f06005a;
public static final int notification_large_icon_width = 0x7f06005b;
public static final int notification_main_column_padding_top = 0x7f060013;
public static final int notification_media_narrow_margin = 0x7f060014;
public static final int notification_right_icon_size = 0x7f06005c;
public static final int notification_right_side_padding_top = 0x7f060010;
public static final int notification_small_icon_background_padding = 0x7f06005d;
public static final int notification_small_icon_size_as_large = 0x7f06005e;
public static final int notification_subtext_size = 0x7f06005f;
public static final int notification_top_pad = 0x7f060060;
public static final int notification_top_pad_large_text = 0x7f060061;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
public static final int abc_action_bar_item_background_material = 0x7f020001;
public static final int abc_btn_borderless_material = 0x7f020002;
public static final int abc_btn_check_material = 0x7f020003;
public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
public static final int abc_btn_colored_material = 0x7f020006;
public static final int abc_btn_default_mtrl_shape = 0x7f020007;
public static final int abc_btn_radio_material = 0x7f020008;
public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000b;
public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000c;
public static final int abc_cab_background_internal_bg = 0x7f02000d;
public static final int abc_cab_background_top_material = 0x7f02000e;
public static final int abc_cab_background_top_mtrl_alpha = 0x7f02000f;
public static final int abc_control_background_material = 0x7f020010;
public static final int abc_dialog_material_background = 0x7f020011;
public static final int abc_edit_text_material = 0x7f020012;
public static final int abc_ic_ab_back_material = 0x7f020013;
public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f020014;
public static final int abc_ic_clear_material = 0x7f020015;
public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020016;
public static final int abc_ic_go_search_api_material = 0x7f020017;
public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f020018;
public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f020019;
public static final int abc_ic_menu_overflow_material = 0x7f02001a;
public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001b;
public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001c;
public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001d;
public static final int abc_ic_search_api_material = 0x7f02001e;
public static final int abc_ic_star_black_16dp = 0x7f02001f;
public static final int abc_ic_star_black_36dp = 0x7f020020;
public static final int abc_ic_star_black_48dp = 0x7f020021;
public static final int abc_ic_star_half_black_16dp = 0x7f020022;
public static final int abc_ic_star_half_black_36dp = 0x7f020023;
public static final int abc_ic_star_half_black_48dp = 0x7f020024;
public static final int abc_ic_voice_search_api_material = 0x7f020025;
public static final int abc_item_background_holo_dark = 0x7f020026;
public static final int abc_item_background_holo_light = 0x7f020027;
public static final int abc_list_divider_mtrl_alpha = 0x7f020028;
public static final int abc_list_focused_holo = 0x7f020029;
public static final int abc_list_longpressed_holo = 0x7f02002a;
public static final int abc_list_pressed_holo_dark = 0x7f02002b;
public static final int abc_list_pressed_holo_light = 0x7f02002c;
public static final int abc_list_selector_background_transition_holo_dark = 0x7f02002d;
public static final int abc_list_selector_background_transition_holo_light = 0x7f02002e;
public static final int abc_list_selector_disabled_holo_dark = 0x7f02002f;
public static final int abc_list_selector_disabled_holo_light = 0x7f020030;
public static final int abc_list_selector_holo_dark = 0x7f020031;
public static final int abc_list_selector_holo_light = 0x7f020032;
public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f020033;
public static final int abc_popup_background_mtrl_mult = 0x7f020034;
public static final int abc_ratingbar_indicator_material = 0x7f020035;
public static final int abc_ratingbar_material = 0x7f020036;
public static final int abc_ratingbar_small_material = 0x7f020037;
public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f020038;
public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f020039;
public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f02003a;
public static final int abc_scrubber_primary_mtrl_alpha = 0x7f02003b;
public static final int abc_scrubber_track_mtrl_alpha = 0x7f02003c;
public static final int abc_seekbar_thumb_material = 0x7f02003d;
public static final int abc_seekbar_tick_mark_material = 0x7f02003e;
public static final int abc_seekbar_track_material = 0x7f02003f;
public static final int abc_spinner_mtrl_am_alpha = 0x7f020040;
public static final int abc_spinner_textfield_background_material = 0x7f020041;
public static final int abc_switch_thumb_material = 0x7f020042;
public static final int abc_switch_track_mtrl_alpha = 0x7f020043;
public static final int abc_tab_indicator_material = 0x7f020044;
public static final int abc_tab_indicator_mtrl_alpha = 0x7f020045;
public static final int abc_text_cursor_material = 0x7f020046;
public static final int abc_text_select_handle_left_mtrl_dark = 0x7f020047;
public static final int abc_text_select_handle_left_mtrl_light = 0x7f020048;
public static final int abc_text_select_handle_middle_mtrl_dark = 0x7f020049;
public static final int abc_text_select_handle_middle_mtrl_light = 0x7f02004a;
public static final int abc_text_select_handle_right_mtrl_dark = 0x7f02004b;
public static final int abc_text_select_handle_right_mtrl_light = 0x7f02004c;
public static final int abc_textfield_activated_mtrl_alpha = 0x7f02004d;
public static final int abc_textfield_default_mtrl_alpha = 0x7f02004e;
public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f02004f;
public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020050;
public static final int abc_textfield_search_material = 0x7f020051;
public static final int abc_vector_test = 0x7f020052;
public static final int notification_action_background = 0x7f020053;
public static final int notification_bg = 0x7f020054;
public static final int notification_bg_low = 0x7f020055;
public static final int notification_bg_low_normal = 0x7f020056;
public static final int notification_bg_low_pressed = 0x7f020057;
public static final int notification_bg_normal = 0x7f020058;
public static final int notification_bg_normal_pressed = 0x7f020059;
public static final int notification_icon_background = 0x7f02005a;
public static final int notification_template_icon_bg = 0x7f02005d;
public static final int notification_template_icon_low_bg = 0x7f02005e;
public static final int notification_tile_bg = 0x7f02005b;
public static final int notify_panel_notification_icon_bg = 0x7f02005c;
}
public static final class id {
public static final int action0 = 0x7f0a005e;
public static final int action_bar = 0x7f0a004c;
public static final int action_bar_activity_content = 0x7f0a0000;
public static final int action_bar_container = 0x7f0a004b;
public static final int action_bar_root = 0x7f0a0047;
public static final int action_bar_spinner = 0x7f0a0001;
public static final int action_bar_subtitle = 0x7f0a002a;
public static final int action_bar_title = 0x7f0a0029;
public static final int action_container = 0x7f0a005b;
public static final int action_context_bar = 0x7f0a004d;
public static final int action_divider = 0x7f0a0062;
public static final int action_image = 0x7f0a005c;
public static final int action_menu_divider = 0x7f0a0002;
public static final int action_menu_presenter = 0x7f0a0003;
public static final int action_mode_bar = 0x7f0a0049;
public static final int action_mode_bar_stub = 0x7f0a0048;
public static final int action_mode_close_button = 0x7f0a002b;
public static final int action_text = 0x7f0a005d;
public static final int actions = 0x7f0a006b;
public static final int activity_chooser_view_content = 0x7f0a002c;
public static final int add = 0x7f0a0014;
public static final int alertTitle = 0x7f0a0040;
public static final int always = 0x7f0a001e;
public static final int beginning = 0x7f0a001b;
public static final int bottom = 0x7f0a0027;
public static final int buttonPanel = 0x7f0a0033;
public static final int cancel_action = 0x7f0a005f;
public static final int checkbox = 0x7f0a0043;
public static final int chronometer = 0x7f0a0067;
public static final int collapseActionView = 0x7f0a001f;
public static final int contentPanel = 0x7f0a0036;
public static final int custom = 0x7f0a003d;
public static final int customPanel = 0x7f0a003c;
public static final int decor_content_parent = 0x7f0a004a;
public static final int default_activity_button = 0x7f0a002f;
public static final int disableHome = 0x7f0a000d;
public static final int edit_query = 0x7f0a004e;
public static final int end = 0x7f0a001c;
public static final int end_padder = 0x7f0a0071;
public static final int expand_activities_button = 0x7f0a002d;
public static final int expanded_menu = 0x7f0a0042;
public static final int home = 0x7f0a0004;
public static final int homeAsUp = 0x7f0a000e;
public static final int icon = 0x7f0a0031;
public static final int icon_group = 0x7f0a006c;
public static final int ifRoom = 0x7f0a0020;
public static final int image = 0x7f0a002e;
public static final int info = 0x7f0a0068;
public static final int line1 = 0x7f0a006d;
public static final int line3 = 0x7f0a006f;
public static final int listMode = 0x7f0a000a;
public static final int list_item = 0x7f0a0030;
public static final int media_actions = 0x7f0a0061;
public static final int middle = 0x7f0a001d;
public static final int multiply = 0x7f0a0015;
public static final int never = 0x7f0a0021;
public static final int none = 0x7f0a000f;
public static final int normal = 0x7f0a000b;
public static final int notification_background = 0x7f0a006a;
public static final int notification_main_column = 0x7f0a0064;
public static final int notification_main_column_container = 0x7f0a0063;
public static final int parentPanel = 0x7f0a0035;
public static final int progress_circular = 0x7f0a0005;
public static final int progress_horizontal = 0x7f0a0006;
public static final int radio = 0x7f0a0045;
public static final int right_icon = 0x7f0a0069;
public static final int right_side = 0x7f0a0065;
public static final int screen = 0x7f0a0016;
public static final int scrollIndicatorDown = 0x7f0a003b;
public static final int scrollIndicatorUp = 0x7f0a0037;
public static final int scrollView = 0x7f0a0038;
public static final int search_badge = 0x7f0a0050;
public static final int search_bar = 0x7f0a004f;
public static final int search_button = 0x7f0a0051;
public static final int search_close_btn = 0x7f0a0056;
public static final int search_edit_frame = 0x7f0a0052;
public static final int search_go_btn = 0x7f0a0058;
public static final int search_mag_icon = 0x7f0a0053;
public static final int search_plate = 0x7f0a0054;
public static final int search_src_text = 0x7f0a0055;
public static final int search_voice_btn = 0x7f0a0059;
public static final int select_dialog_listview = 0x7f0a005a;
public static final int shortcut = 0x7f0a0044;
public static final int showCustom = 0x7f0a0010;
public static final int showHome = 0x7f0a0011;
public static final int showTitle = 0x7f0a0012;
public static final int spacer = 0x7f0a0034;
public static final int split_action_bar = 0x7f0a0008;
public static final int src_atop = 0x7f0a0017;
public static final int src_in = 0x7f0a0018;
public static final int src_over = 0x7f0a0019;
public static final int status_bar_latest_event_content = 0x7f0a0060;
public static final int submenuarrow = 0x7f0a0046;
public static final int submit_area = 0x7f0a0057;
public static final int tabMode = 0x7f0a000c;
public static final int text = 0x7f0a0070;
public static final int text2 = 0x7f0a006e;
public static final int textSpacerNoButtons = 0x7f0a003a;
public static final int textSpacerNoTitle = 0x7f0a0039;
public static final int time = 0x7f0a0066;
public static final int title = 0x7f0a0032;
public static final int titleDividerNoCustom = 0x7f0a0041;
public static final int title_template = 0x7f0a003f;
public static final int top = 0x7f0a0028;
public static final int topPanel = 0x7f0a003e;
public static final int up = 0x7f0a0009;
public static final int useLogo = 0x7f0a0013;
public static final int withText = 0x7f0a0022;
public static final int wrap_content = 0x7f0a001a;
}
public static final class integer {
public static final int abc_config_activityDefaultDur = 0x7f0b0000;
public static final int abc_config_activityShortDur = 0x7f0b0001;
public static final int cancel_button_image_alpha = 0x7f0b0002;
public static final int status_bar_notification_info_maxnum = 0x7f0b0003;
}
public static final class layout {
public static final int abc_action_bar_title_item = 0x7f030000;
public static final int abc_action_bar_up_container = 0x7f030001;
public static final int abc_action_bar_view_list_nav_layout = 0x7f030002;
public static final int abc_action_menu_item_layout = 0x7f030003;
public static final int abc_action_menu_layout = 0x7f030004;
public static final int abc_action_mode_bar = 0x7f030005;
public static final int abc_action_mode_close_item_material = 0x7f030006;
public static final int abc_activity_chooser_view = 0x7f030007;
public static final int abc_activity_chooser_view_list_item = 0x7f030008;
public static final int abc_alert_dialog_button_bar_material = 0x7f030009;
public static final int abc_alert_dialog_material = 0x7f03000a;
public static final int abc_alert_dialog_title_material = 0x7f03000b;
public static final int abc_dialog_title_material = 0x7f03000c;
public static final int abc_expanded_menu_layout = 0x7f03000d;
public static final int abc_list_menu_item_checkbox = 0x7f03000e;
public static final int abc_list_menu_item_icon = 0x7f03000f;
public static final int abc_list_menu_item_layout = 0x7f030010;
public static final int abc_list_menu_item_radio = 0x7f030011;
public static final int abc_popup_menu_header_item_layout = 0x7f030012;
public static final int abc_popup_menu_item_layout = 0x7f030013;
public static final int abc_screen_content_include = 0x7f030014;
public static final int abc_screen_simple = 0x7f030015;
public static final int abc_screen_simple_overlay_action_mode = 0x7f030016;
public static final int abc_screen_toolbar = 0x7f030017;
public static final int abc_search_dropdown_item_icons_2line = 0x7f030018;
public static final int abc_search_view = 0x7f030019;
public static final int abc_select_dialog_material = 0x7f03001a;
public static final int notification_action = 0x7f03001b;
public static final int notification_action_tombstone = 0x7f03001c;
public static final int notification_media_action = 0x7f03001d;
public static final int notification_media_cancel_action = 0x7f03001e;
public static final int notification_template_big_media = 0x7f03001f;
public static final int notification_template_big_media_custom = 0x7f030020;
public static final int notification_template_big_media_narrow = 0x7f030021;
public static final int notification_template_big_media_narrow_custom = 0x7f030022;
public static final int notification_template_custom_big = 0x7f030023;
public static final int notification_template_icon_group = 0x7f030024;
public static final int notification_template_lines_media = 0x7f030025;
public static final int notification_template_media = 0x7f030026;
public static final int notification_template_media_custom = 0x7f030027;
public static final int notification_template_part_chronometer = 0x7f030028;
public static final int notification_template_part_time = 0x7f030029;
public static final int select_dialog_item_material = 0x7f03002a;
public static final int select_dialog_multichoice_material = 0x7f03002b;
public static final int select_dialog_singlechoice_material = 0x7f03002c;
public static final int support_simple_spinner_dropdown_item = 0x7f03002e;
}
public static final class string {
public static final int abc_action_bar_home_description = 0x7f050000;
public static final int abc_action_bar_home_description_format = 0x7f050001;
public static final int abc_action_bar_home_subtitle_description_format = 0x7f050002;
public static final int abc_action_bar_up_description = 0x7f050003;
public static final int abc_action_menu_overflow_description = 0x7f050004;
public static final int abc_action_mode_done = 0x7f050005;
public static final int abc_activity_chooser_view_see_all = 0x7f050006;
public static final int abc_activitychooserview_choose_application = 0x7f050007;
public static final int abc_capital_off = 0x7f050008;
public static final int abc_capital_on = 0x7f050009;
public static final int abc_font_family_body_1_material = 0x7f050015;
public static final int abc_font_family_body_2_material = 0x7f050016;
public static final int abc_font_family_button_material = 0x7f050017;
public static final int abc_font_family_caption_material = 0x7f050018;
public static final int abc_font_family_display_1_material = 0x7f050019;
public static final int abc_font_family_display_2_material = 0x7f05001a;
public static final int abc_font_family_display_3_material = 0x7f05001b;
public static final int abc_font_family_display_4_material = 0x7f05001c;
public static final int abc_font_family_headline_material = 0x7f05001d;
public static final int abc_font_family_menu_material = 0x7f05001e;
public static final int abc_font_family_subhead_material = 0x7f05001f;
public static final int abc_font_family_title_material = 0x7f050020;
public static final int abc_search_hint = 0x7f05000a;
public static final int abc_searchview_description_clear = 0x7f05000b;
public static final int abc_searchview_description_query = 0x7f05000c;
public static final int abc_searchview_description_search = 0x7f05000d;
public static final int abc_searchview_description_submit = 0x7f05000e;
public static final int abc_searchview_description_voice = 0x7f05000f;
public static final int abc_shareactionprovider_share_with = 0x7f050010;
public static final int abc_shareactionprovider_share_with_application = 0x7f050011;
public static final int abc_toolbar_collapse_description = 0x7f050012;
public static final int search_menu_title = 0x7f050013;
public static final int status_bar_notification_info_overflow = 0x7f050014;
}
public static final class style {
public static final int AlertDialog_AppCompat = 0x7f07009f;
public static final int AlertDialog_AppCompat_Light = 0x7f0700a0;
public static final int Animation_AppCompat_Dialog = 0x7f0700a1;
public static final int Animation_AppCompat_DropDownUp = 0x7f0700a2;
public static final int Base_AlertDialog_AppCompat = 0x7f0700a3;
public static final int Base_AlertDialog_AppCompat_Light = 0x7f0700a4;
public static final int Base_Animation_AppCompat_Dialog = 0x7f0700a5;
public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0700a6;
public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0700a8;
public static final int Base_DialogWindowTitle_AppCompat = 0x7f0700a7;
public static final int Base_TextAppearance_AppCompat = 0x7f07003f;
public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f070040;
public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f070041;
public static final int Base_TextAppearance_AppCompat_Button = 0x7f070027;
public static final int Base_TextAppearance_AppCompat_Caption = 0x7f070042;
public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f070043;
public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f070044;
public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f070045;
public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f070046;
public static final int Base_TextAppearance_AppCompat_Headline = 0x7f070047;
public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f07000b;
public static final int Base_TextAppearance_AppCompat_Large = 0x7f070048;
public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f07000c;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f070049;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f07004a;
public static final int Base_TextAppearance_AppCompat_Medium = 0x7f07004b;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f07000d;
public static final int Base_TextAppearance_AppCompat_Menu = 0x7f07004c;
public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0700a9;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f07004d;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f07004e;
public static final int Base_TextAppearance_AppCompat_Small = 0x7f07004f;
public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f07000e;
public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f070050;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f07000f;
public static final int Base_TextAppearance_AppCompat_Title = 0x7f070051;
public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f070010;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f070094;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f070052;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f070053;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f070054;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f070055;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f070056;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f070057;
public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f070058;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f07009b;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f07009c;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f070095;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0700aa;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f070059;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f07005a;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f07005b;
public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f07005c;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f07005d;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0700ab;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f07005e;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f07005f;
public static final int Base_ThemeOverlay_AppCompat = 0x7f0700b0;
public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0700b1;
public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0700b2;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0700b3;
public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f070017;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f070018;
public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0700b4;
public static final int Base_Theme_AppCompat = 0x7f070060;
public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0700ac;
public static final int Base_Theme_AppCompat_Dialog = 0x7f070011;
public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f070001;
public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f070012;
public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0700ad;
public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f070013;
public static final int Base_Theme_AppCompat_Light = 0x7f070061;
public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0700ae;
public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f070014;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f070002;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f070015;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0700af;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f070016;
public static final int Base_V11_ThemeOverlay_AppCompat_Dialog = 0x7f07001b;
public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f070019;
public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f07001a;
public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f070023;
public static final int Base_V12_Widget_AppCompat_EditText = 0x7f070024;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f070066;
public static final int Base_V21_Theme_AppCompat = 0x7f070062;
public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f070063;
public static final int Base_V21_Theme_AppCompat_Light = 0x7f070064;
public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f070065;
public static final int Base_V22_Theme_AppCompat = 0x7f070092;
public static final int Base_V22_Theme_AppCompat_Light = 0x7f070093;
public static final int Base_V23_Theme_AppCompat = 0x7f070096;
public static final int Base_V23_Theme_AppCompat_Light = 0x7f070097;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f0700b9;
public static final int Base_V7_Theme_AppCompat = 0x7f0700b5;
public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0700b6;
public static final int Base_V7_Theme_AppCompat_Light = 0x7f0700b7;
public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0700b8;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0700ba;
public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0700bb;
public static final int Base_Widget_AppCompat_ActionBar = 0x7f0700bc;
public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0700bd;
public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0700be;
public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f070067;
public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f070068;
public static final int Base_Widget_AppCompat_ActionButton = 0x7f070069;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f07006a;
public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f07006b;
public static final int Base_Widget_AppCompat_ActionMode = 0x7f0700bf;
public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0700c0;
public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f070025;
public static final int Base_Widget_AppCompat_Button = 0x7f07006c;
public static final int Base_Widget_AppCompat_ButtonBar = 0x7f070070;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0700c2;
public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f07006d;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f07006e;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0700c1;
public static final int Base_Widget_AppCompat_Button_Colored = 0x7f070098;
public static final int Base_Widget_AppCompat_Button_Small = 0x7f07006f;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f070071;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f070072;
public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0700c3;
public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f070000;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0700c4;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f070073;
public static final int Base_Widget_AppCompat_EditText = 0x7f070026;
public static final int Base_Widget_AppCompat_ImageButton = 0x7f070074;
public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0700c5;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0700c6;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0700c7;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f070075;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f070076;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f070077;
public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f070078;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f070079;
public static final int Base_Widget_AppCompat_ListMenuView = 0x7f0700c8;
public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f07007a;
public static final int Base_Widget_AppCompat_ListView = 0x7f07007b;
public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f07007c;
public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f07007d;
public static final int Base_Widget_AppCompat_PopupMenu = 0x7f07007e;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f07007f;
public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0700c9;
public static final int Base_Widget_AppCompat_ProgressBar = 0x7f07001c;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f07001d;
public static final int Base_Widget_AppCompat_RatingBar = 0x7f070080;
public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f070099;
public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f07009a;
public static final int Base_Widget_AppCompat_SearchView = 0x7f0700ca;
public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0700cb;
public static final int Base_Widget_AppCompat_SeekBar = 0x7f070081;
public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f0700cc;
public static final int Base_Widget_AppCompat_Spinner = 0x7f070082;
public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f070003;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f070083;
public static final int Base_Widget_AppCompat_Toolbar = 0x7f0700cd;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f070084;
public static final int Platform_AppCompat = 0x7f07001e;
public static final int Platform_AppCompat_Light = 0x7f07001f;
public static final int Platform_ThemeOverlay_AppCompat = 0x7f070085;
public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f070086;
public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f070087;
public static final int Platform_V11_AppCompat = 0x7f070020;
public static final int Platform_V11_AppCompat_Light = 0x7f070021;
public static final int Platform_V14_AppCompat = 0x7f070028;
public static final int Platform_V14_AppCompat_Light = 0x7f070029;
public static final int Platform_V21_AppCompat = 0x7f070088;
public static final int Platform_V21_AppCompat_Light = 0x7f070089;
public static final int Platform_V25_AppCompat = 0x7f07009d;
public static final int Platform_V25_AppCompat_Light = 0x7f07009e;
public static final int Platform_Widget_AppCompat_Spinner = 0x7f070022;
public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f070031;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f070032;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f070033;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f070034;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f070035;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f070036;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f07003c;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f070037;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f070038;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f070039;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f07003a;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f07003b;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f07003d;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f07003e;
public static final int TextAppearance_AppCompat = 0x7f0700ce;
public static final int TextAppearance_AppCompat_Body1 = 0x7f0700cf;
public static final int TextAppearance_AppCompat_Body2 = 0x7f0700d0;
public static final int TextAppearance_AppCompat_Button = 0x7f0700d1;
public static final int TextAppearance_AppCompat_Caption = 0x7f0700d2;
public static final int TextAppearance_AppCompat_Display1 = 0x7f0700d3;
public static final int TextAppearance_AppCompat_Display2 = 0x7f0700d4;
public static final int TextAppearance_AppCompat_Display3 = 0x7f0700d5;
public static final int TextAppearance_AppCompat_Display4 = 0x7f0700d6;
public static final int TextAppearance_AppCompat_Headline = 0x7f0700d7;
public static final int TextAppearance_AppCompat_Inverse = 0x7f0700d8;
public static final int TextAppearance_AppCompat_Large = 0x7f0700d9;
public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0700da;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0700db;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0700dc;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0700dd;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0700de;
public static final int TextAppearance_AppCompat_Medium = 0x7f0700df;
public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0700e0;
public static final int TextAppearance_AppCompat_Menu = 0x7f0700e1;
public static final int TextAppearance_AppCompat_Notification = 0x7f07002a;
public static final int TextAppearance_AppCompat_Notification_Info = 0x7f07008a;
public static final int TextAppearance_AppCompat_Notification_Info_Media = 0x7f07008b;
public static final int TextAppearance_AppCompat_Notification_Line2 = 0x7f0700e2;
public static final int TextAppearance_AppCompat_Notification_Line2_Media = 0x7f0700e3;
public static final int TextAppearance_AppCompat_Notification_Media = 0x7f07008c;
public static final int TextAppearance_AppCompat_Notification_Time = 0x7f07008d;
public static final int TextAppearance_AppCompat_Notification_Time_Media = 0x7f07008e;
public static final int TextAppearance_AppCompat_Notification_Title = 0x7f07002b;
public static final int TextAppearance_AppCompat_Notification_Title_Media = 0x7f07008f;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0700e4;
public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0700e5;
public static final int TextAppearance_AppCompat_Small = 0x7f0700e6;
public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0700e7;
public static final int TextAppearance_AppCompat_Subhead = 0x7f0700e8;
public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0700e9;
public static final int TextAppearance_AppCompat_Title = 0x7f0700ea;
public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0700eb;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0700ec;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0700ed;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0700ee;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0700ef;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0700f0;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0700f1;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0700f2;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0700f3;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0700f4;
public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0700f5;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0700f6;
public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0700f7;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0700f8;
public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0700f9;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0700fa;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0700fb;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0700fc;
public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0700fd;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0700fe;
public static final int TextAppearance_StatusBar_EventContent = 0x7f07002c;
public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f07002d;
public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f07002e;
public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f07002f;
public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f070030;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0700ff;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f070100;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f070101;
public static final int ThemeOverlay_AppCompat = 0x7f070110;
public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f070111;
public static final int ThemeOverlay_AppCompat_Dark = 0x7f070112;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f070113;
public static final int ThemeOverlay_AppCompat_Dialog = 0x7f070114;
public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f070115;
public static final int ThemeOverlay_AppCompat_Light = 0x7f070116;
public static final int Theme_AppCompat = 0x7f070102;
public static final int Theme_AppCompat_CompactMenu = 0x7f070103;
public static final int Theme_AppCompat_DayNight = 0x7f070004;
public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f070005;
public static final int Theme_AppCompat_DayNight_Dialog = 0x7f070006;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f070009;
public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f070007;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f070008;
public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f07000a;
public static final int Theme_AppCompat_Dialog = 0x7f070104;
public static final int Theme_AppCompat_DialogWhenLarge = 0x7f070107;
public static final int Theme_AppCompat_Dialog_Alert = 0x7f070105;
public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f070106;
public static final int Theme_AppCompat_Light = 0x7f070108;
public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f070109;
public static final int Theme_AppCompat_Light_Dialog = 0x7f07010a;
public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f07010d;
public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f07010b;
public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f07010c;
public static final int Theme_AppCompat_Light_NoActionBar = 0x7f07010e;
public static final int Theme_AppCompat_NoActionBar = 0x7f07010f;
public static final int Widget_AppCompat_ActionBar = 0x7f070117;
public static final int Widget_AppCompat_ActionBar_Solid = 0x7f070118;
public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f070119;
public static final int Widget_AppCompat_ActionBar_TabText = 0x7f07011a;
public static final int Widget_AppCompat_ActionBar_TabView = 0x7f07011b;
public static final int Widget_AppCompat_ActionButton = 0x7f07011c;
public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f07011d;
public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f07011e;
public static final int Widget_AppCompat_ActionMode = 0x7f07011f;
public static final int Widget_AppCompat_ActivityChooserView = 0x7f070120;
public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f070121;
public static final int Widget_AppCompat_Button = 0x7f070122;
public static final int Widget_AppCompat_ButtonBar = 0x7f070128;
public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f070129;
public static final int Widget_AppCompat_Button_Borderless = 0x7f070123;
public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f070124;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f070125;
public static final int Widget_AppCompat_Button_Colored = 0x7f070126;
public static final int Widget_AppCompat_Button_Small = 0x7f070127;
public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f07012a;
public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f07012b;
public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f07012c;
public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f07012d;
public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f07012e;
public static final int Widget_AppCompat_EditText = 0x7f07012f;
public static final int Widget_AppCompat_ImageButton = 0x7f070130;
public static final int Widget_AppCompat_Light_ActionBar = 0x7f070131;
public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f070132;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f070133;
public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f070134;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f070135;
public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f070136;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f070137;
public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f070138;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f070139;
public static final int Widget_AppCompat_Light_ActionButton = 0x7f07013a;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f07013b;
public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f07013c;
public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f07013d;
public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f07013e;
public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f07013f;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f070140;
public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f070141;
public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f070142;
public static final int Widget_AppCompat_Light_PopupMenu = 0x7f070143;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f070144;
public static final int Widget_AppCompat_Light_SearchView = 0x7f070145;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f070146;
public static final int Widget_AppCompat_ListMenuView = 0x7f070147;
public static final int Widget_AppCompat_ListPopupWindow = 0x7f070148;
public static final int Widget_AppCompat_ListView = 0x7f070149;
public static final int Widget_AppCompat_ListView_DropDown = 0x7f07014a;
public static final int Widget_AppCompat_ListView_Menu = 0x7f07014b;
public static final int Widget_AppCompat_NotificationActionContainer = 0x7f070090;
public static final int Widget_AppCompat_NotificationActionText = 0x7f070091;
public static final int Widget_AppCompat_PopupMenu = 0x7f07014c;
public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f07014d;
public static final int Widget_AppCompat_PopupWindow = 0x7f07014e;
public static final int Widget_AppCompat_ProgressBar = 0x7f07014f;
public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f070150;
public static final int Widget_AppCompat_RatingBar = 0x7f070151;
public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f070152;
public static final int Widget_AppCompat_RatingBar_Small = 0x7f070153;
public static final int Widget_AppCompat_SearchView = 0x7f070154;
public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f070155;
public static final int Widget_AppCompat_SeekBar = 0x7f070156;
public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f070157;
public static final int Widget_AppCompat_Spinner = 0x7f070158;
public static final int Widget_AppCompat_Spinner_DropDown = 0x7f070159;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f07015a;
public static final int Widget_AppCompat_Spinner_Underlined = 0x7f07015b;
public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f07015c;
public static final int Widget_AppCompat_Toolbar = 0x7f07015d;
public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f07015e;
}
public static final class styleable {
public static final int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01005b };
public static final int[] ActionBarLayout = { 0x010100b3 };
public static final int ActionBarLayout_android_layout_gravity = 0;
public static final int ActionBar_background = 10;
public static final int ActionBar_backgroundSplit = 12;
public static final int ActionBar_backgroundStacked = 11;
public static final int ActionBar_contentInsetEnd = 21;
public static final int ActionBar_contentInsetEndWithActions = 25;
public static final int ActionBar_contentInsetLeft = 22;
public static final int ActionBar_contentInsetRight = 23;
public static final int ActionBar_contentInsetStart = 20;
public static final int ActionBar_contentInsetStartWithNavigation = 24;
public static final int ActionBar_customNavigationLayout = 13;
public static final int ActionBar_displayOptions = 3;
public static final int ActionBar_divider = 9;
public static final int ActionBar_elevation = 26;
public static final int ActionBar_height = 0;
public static final int ActionBar_hideOnContentScroll = 19;
public static final int ActionBar_homeAsUpIndicator = 28;
public static final int ActionBar_homeLayout = 14;
public static final int ActionBar_icon = 7;
public static final int ActionBar_indeterminateProgressStyle = 16;
public static final int ActionBar_itemPadding = 18;
public static final int ActionBar_logo = 8;
public static final int ActionBar_navigationMode = 2;
public static final int ActionBar_popupTheme = 27;
public static final int ActionBar_progressBarPadding = 17;
public static final int ActionBar_progressBarStyle = 15;
public static final int ActionBar_subtitle = 4;
public static final int ActionBar_subtitleTextStyle = 6;
public static final int ActionBar_title = 1;
public static final int ActionBar_titleTextStyle = 5;
public static final int[] ActionMenuItemView = { 0x0101013f };
public static final int ActionMenuItemView_android_minWidth = 0;
public static final int[] ActionMenuView = { };
public static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001e };
public static final int ActionMode_background = 3;
public static final int ActionMode_backgroundSplit = 4;
public static final int ActionMode_closeItemLayout = 5;
public static final int ActionMode_height = 0;
public static final int ActionMode_subtitleTextStyle = 2;
public static final int ActionMode_titleTextStyle = 1;
public static final int[] ActivityChooserView = { 0x7f01001f, 0x7f010020 };
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
public static final int ActivityChooserView_initialActivityCount = 0;
public static final int[] AlertDialog = { 0x010100f2, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026 };
public static final int AlertDialog_android_layout = 0;
public static final int AlertDialog_buttonPanelSideLayout = 1;
public static final int AlertDialog_listItemLayout = 5;
public static final int AlertDialog_listLayout = 2;
public static final int AlertDialog_multiChoiceItemLayout = 3;
public static final int AlertDialog_showTitle = 6;
public static final int AlertDialog_singleChoiceItemLayout = 4;
public static final int[] AppCompatImageView = { 0x01010119, 0x7f010027 };
public static final int AppCompatImageView_android_src = 0;
public static final int AppCompatImageView_srcCompat = 1;
public static final int[] AppCompatSeekBar = { 0x01010142, 0x7f010028, 0x7f010029, 0x7f01002a };
public static final int AppCompatSeekBar_android_thumb = 0;
public static final int AppCompatSeekBar_tickMark = 1;
public static final int AppCompatSeekBar_tickMarkTint = 2;
public static final int AppCompatSeekBar_tickMarkTintMode = 3;
public static final int[] AppCompatTextHelper = { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 };
public static final int AppCompatTextHelper_android_drawableBottom = 2;
public static final int AppCompatTextHelper_android_drawableEnd = 6;
public static final int AppCompatTextHelper_android_drawableLeft = 3;
public static final int AppCompatTextHelper_android_drawableRight = 4;
public static final int AppCompatTextHelper_android_drawableStart = 5;
public static final int AppCompatTextHelper_android_drawableTop = 1;
public static final int AppCompatTextHelper_android_textAppearance = 0;
public static final int[] AppCompatTextView = { 0x01010034, 0x7f01002b };
public static final int AppCompatTextView_android_textAppearance = 0;
public static final int AppCompatTextView_textAllCaps = 1;
public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c };
public static final int AppCompatTheme_actionBarDivider = 23;
public static final int AppCompatTheme_actionBarItemBackground = 24;
public static final int AppCompatTheme_actionBarPopupTheme = 17;
public static final int AppCompatTheme_actionBarSize = 22;
public static final int AppCompatTheme_actionBarSplitStyle = 19;
public static final int AppCompatTheme_actionBarStyle = 18;
public static final int AppCompatTheme_actionBarTabBarStyle = 13;
public static final int AppCompatTheme_actionBarTabStyle = 12;
public static final int AppCompatTheme_actionBarTabTextStyle = 14;
public static final int AppCompatTheme_actionBarTheme = 20;
public static final int AppCompatTheme_actionBarWidgetTheme = 21;
public static final int AppCompatTheme_actionButtonStyle = 50;
public static final int AppCompatTheme_actionDropDownStyle = 46;
public static final int AppCompatTheme_actionMenuTextAppearance = 25;
public static final int AppCompatTheme_actionMenuTextColor = 26;
public static final int AppCompatTheme_actionModeBackground = 29;
public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
public static final int AppCompatTheme_actionModeCloseDrawable = 31;
public static final int AppCompatTheme_actionModeCopyDrawable = 33;
public static final int AppCompatTheme_actionModeCutDrawable = 32;
public static final int AppCompatTheme_actionModeFindDrawable = 37;
public static final int AppCompatTheme_actionModePasteDrawable = 34;
public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
public static final int AppCompatTheme_actionModeShareDrawable = 36;
public static final int AppCompatTheme_actionModeSplitBackground = 30;
public static final int AppCompatTheme_actionModeStyle = 27;
public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
public static final int AppCompatTheme_activityChooserViewStyle = 58;
public static final int AppCompatTheme_alertDialogButtonGroupStyle = 94;
public static final int AppCompatTheme_alertDialogCenterButtons = 95;
public static final int AppCompatTheme_alertDialogStyle = 93;
public static final int AppCompatTheme_alertDialogTheme = 96;
public static final int AppCompatTheme_android_windowAnimationStyle = 1;
public static final int AppCompatTheme_android_windowIsFloating = 0;
public static final int AppCompatTheme_autoCompleteTextViewStyle = 101;
public static final int AppCompatTheme_borderlessButtonStyle = 55;
public static final int AppCompatTheme_buttonBarButtonStyle = 52;
public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 99;
public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 100;
public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 98;
public static final int AppCompatTheme_buttonBarStyle = 51;
public static final int AppCompatTheme_buttonStyle = 102;
public static final int AppCompatTheme_buttonStyleSmall = 103;
public static final int AppCompatTheme_checkboxStyle = 104;
public static final int AppCompatTheme_checkedTextViewStyle = 105;
public static final int AppCompatTheme_colorAccent = 85;
public static final int AppCompatTheme_colorBackgroundFloating = 92;
public static final int AppCompatTheme_colorButtonNormal = 89;
public static final int AppCompatTheme_colorControlActivated = 87;
public static final int AppCompatTheme_colorControlHighlight = 88;
public static final int AppCompatTheme_colorControlNormal = 86;
public static final int AppCompatTheme_colorPrimary = 83;
public static final int AppCompatTheme_colorPrimaryDark = 84;
public static final int AppCompatTheme_colorSwitchThumbNormal = 90;
public static final int AppCompatTheme_controlBackground = 91;
public static final int AppCompatTheme_dialogPreferredPadding = 44;
public static final int AppCompatTheme_dialogTheme = 43;
public static final int AppCompatTheme_dividerHorizontal = 57;
public static final int AppCompatTheme_dividerVertical = 56;
public static final int AppCompatTheme_dropDownListViewStyle = 75;
public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47;
public static final int AppCompatTheme_editTextBackground = 64;
public static final int AppCompatTheme_editTextColor = 63;
public static final int AppCompatTheme_editTextStyle = 106;
public static final int AppCompatTheme_homeAsUpIndicator = 49;
public static final int AppCompatTheme_imageButtonStyle = 65;
public static final int AppCompatTheme_listChoiceBackgroundIndicator = 82;
public static final int AppCompatTheme_listDividerAlertDialog = 45;
public static final int AppCompatTheme_listMenuViewStyle = 114;
public static final int AppCompatTheme_listPopupWindowStyle = 76;
public static final int AppCompatTheme_listPreferredItemHeight = 70;
public static final int AppCompatTheme_listPreferredItemHeightLarge = 72;
public static final int AppCompatTheme_listPreferredItemHeightSmall = 71;
public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73;
public static final int AppCompatTheme_listPreferredItemPaddingRight = 74;
public static final int AppCompatTheme_panelBackground = 79;
public static final int AppCompatTheme_panelMenuListTheme = 81;
public static final int AppCompatTheme_panelMenuListWidth = 80;
public static final int AppCompatTheme_popupMenuStyle = 61;
public static final int AppCompatTheme_popupWindowStyle = 62;
public static final int AppCompatTheme_radioButtonStyle = 107;
public static final int AppCompatTheme_ratingBarStyle = 108;
public static final int AppCompatTheme_ratingBarStyleIndicator = 109;
public static final int AppCompatTheme_ratingBarStyleSmall = 110;
public static final int AppCompatTheme_searchViewStyle = 69;
public static final int AppCompatTheme_seekBarStyle = 111;
public static final int AppCompatTheme_selectableItemBackground = 53;
public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54;
public static final int AppCompatTheme_spinnerDropDownItemStyle = 48;
public static final int AppCompatTheme_spinnerStyle = 112;
public static final int AppCompatTheme_switchStyle = 113;
public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
public static final int AppCompatTheme_textAppearanceListItem = 77;
public static final int AppCompatTheme_textAppearanceListItemSmall = 78;
public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42;
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66;
public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
public static final int AppCompatTheme_textColorAlertDialogListItem = 97;
public static final int AppCompatTheme_textColorSearchUrl = 68;
public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60;
public static final int AppCompatTheme_toolbarStyle = 59;
public static final int AppCompatTheme_windowActionBar = 2;
public static final int AppCompatTheme_windowActionBarOverlay = 4;
public static final int AppCompatTheme_windowActionModeOverlay = 5;
public static final int AppCompatTheme_windowFixedHeightMajor = 9;
public static final int AppCompatTheme_windowFixedHeightMinor = 7;
public static final int AppCompatTheme_windowFixedWidthMajor = 6;
public static final int AppCompatTheme_windowFixedWidthMinor = 8;
public static final int AppCompatTheme_windowMinWidthMajor = 10;
public static final int AppCompatTheme_windowMinWidthMinor = 11;
public static final int AppCompatTheme_windowNoTitle = 3;
public static final int[] ButtonBarLayout = { 0x7f01009d };
public static final int ButtonBarLayout_allowStacking = 0;
public static final int[] ColorStateListItem = { 0x010101a5, 0x0101031f, 0x7f01009e };
public static final int ColorStateListItem_alpha = 2;
public static final int ColorStateListItem_android_alpha = 1;
public static final int ColorStateListItem_android_color = 0;
public static final int[] CompoundButton = { 0x01010107, 0x7f01009f, 0x7f0100a0 };
public static final int CompoundButton_android_button = 0;
public static final int CompoundButton_buttonTint = 1;
public static final int CompoundButton_buttonTintMode = 2;
public static final int[] DrawerArrowToggle = { 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8 };
public static final int DrawerArrowToggle_arrowHeadLength = 4;
public static final int DrawerArrowToggle_arrowShaftLength = 5;
public static final int DrawerArrowToggle_barLength = 6;
public static final int DrawerArrowToggle_color = 0;
public static final int DrawerArrowToggle_drawableSize = 2;
public static final int DrawerArrowToggle_gapBetweenBars = 3;
public static final int DrawerArrowToggle_spinBars = 1;
public static final int DrawerArrowToggle_thickness = 7;
public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab };
public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
public static final int LinearLayoutCompat_android_baselineAligned = 2;
public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
public static final int LinearLayoutCompat_android_gravity = 0;
public static final int LinearLayoutCompat_android_orientation = 1;
public static final int LinearLayoutCompat_android_weightSum = 4;
public static final int LinearLayoutCompat_divider = 5;
public static final int LinearLayoutCompat_dividerPadding = 8;
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
public static final int LinearLayoutCompat_showDividers = 7;
public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
public static final int MenuGroup_android_checkableBehavior = 5;
public static final int MenuGroup_android_enabled = 0;
public static final int MenuGroup_android_id = 1;
public static final int MenuGroup_android_menuCategory = 3;
public static final int MenuGroup_android_orderInCategory = 4;
public static final int MenuGroup_android_visible = 2;
public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1 };
public static final int MenuItem_actionLayout = 14;
public static final int MenuItem_actionProviderClass = 16;
public static final int MenuItem_actionViewClass = 15;
public static final int MenuItem_android_alphabeticShortcut = 9;
public static final int MenuItem_android_checkable = 11;
public static final int MenuItem_android_checked = 3;
public static final int MenuItem_android_enabled = 1;
public static final int MenuItem_android_icon = 0;
public static final int MenuItem_android_id = 2;
public static final int MenuItem_android_menuCategory = 5;
public static final int MenuItem_android_numericShortcut = 10;
public static final int MenuItem_android_onClick = 12;
public static final int MenuItem_android_orderInCategory = 6;
public static final int MenuItem_android_title = 7;
public static final int MenuItem_android_titleCondensed = 8;
public static final int MenuItem_android_visible = 4;
public static final int MenuItem_contentDescription = 17;
public static final int MenuItem_showAsAction = 13;
public static final int MenuItem_tooltipText = 18;
public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100b2, 0x7f0100b3 };
public static final int MenuView_android_headerBackground = 4;
public static final int MenuView_android_horizontalDivider = 2;
public static final int MenuView_android_itemBackground = 5;
public static final int MenuView_android_itemIconDisabledAlpha = 6;
public static final int MenuView_android_itemTextAppearance = 1;
public static final int MenuView_android_verticalDivider = 3;
public static final int MenuView_android_windowAnimationStyle = 0;
public static final int MenuView_preserveIconSpacing = 7;
public static final int MenuView_subMenuArrow = 8;
public static final int[] PopupWindow = { 0x01010176, 0x010102c9, 0x7f0100b4 };
public static final int[] PopupWindowBackgroundState = { 0x7f0100b5 };
public static final int PopupWindowBackgroundState_state_above_anchor = 0;
public static final int PopupWindow_android_popupAnimationStyle = 1;
public static final int PopupWindow_android_popupBackground = 0;
public static final int PopupWindow_overlapAnchor = 2;
public static final int[] RecycleListView = { 0x7f0100b6, 0x7f0100b7 };
public static final int RecycleListView_paddingBottomNoButtons = 0;
public static final int RecycleListView_paddingTopNoTitle = 1;
public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4 };
public static final int SearchView_android_focusable = 0;
public static final int SearchView_android_imeOptions = 3;
public static final int SearchView_android_inputType = 2;
public static final int SearchView_android_maxWidth = 1;
public static final int SearchView_closeIcon = 8;
public static final int SearchView_commitIcon = 13;
public static final int SearchView_defaultQueryHint = 7;
public static final int SearchView_goIcon = 9;
public static final int SearchView_iconifiedByDefault = 5;
public static final int SearchView_layout = 4;
public static final int SearchView_queryBackground = 15;
public static final int SearchView_queryHint = 6;
public static final int SearchView_searchHintIcon = 11;
public static final int SearchView_searchIcon = 10;
public static final int SearchView_submitBackground = 16;
public static final int SearchView_suggestionRowLayout = 14;
public static final int SearchView_voiceIcon = 12;
public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001d };
public static final int Spinner_android_dropDownWidth = 3;
public static final int Spinner_android_entries = 0;
public static final int Spinner_android_popupBackground = 1;
public static final int Spinner_android_prompt = 2;
public static final int Spinner_popupTheme = 4;
public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd };
public static final int SwitchCompat_android_textOff = 1;
public static final int SwitchCompat_android_textOn = 0;
public static final int SwitchCompat_android_thumb = 2;
public static final int SwitchCompat_showText = 13;
public static final int SwitchCompat_splitTrack = 12;
public static final int SwitchCompat_switchMinWidth = 10;
public static final int SwitchCompat_switchPadding = 11;
public static final int SwitchCompat_switchTextAppearance = 9;
public static final int SwitchCompat_thumbTextPadding = 8;
public static final int SwitchCompat_thumbTint = 3;
public static final int SwitchCompat_thumbTintMode = 4;
public static final int SwitchCompat_track = 5;
public static final int SwitchCompat_trackTint = 6;
public static final int SwitchCompat_trackTintMode = 7;
public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f01002b };
public static final int TextAppearance_android_shadowColor = 5;
public static final int TextAppearance_android_shadowDx = 6;
public static final int TextAppearance_android_shadowDy = 7;
public static final int TextAppearance_android_shadowRadius = 8;
public static final int TextAppearance_android_textColor = 3;
public static final int TextAppearance_android_textColorHint = 4;
public static final int TextAppearance_android_textSize = 0;
public static final int TextAppearance_android_textStyle = 2;
public static final int TextAppearance_android_typeface = 1;
public static final int TextAppearance_textAllCaps = 9;
public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001d, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, 0x7f0100ee };
public static final int Toolbar_android_gravity = 0;
public static final int Toolbar_android_minHeight = 1;
public static final int Toolbar_buttonGravity = 21;
public static final int Toolbar_collapseContentDescription = 23;
public static final int Toolbar_collapseIcon = 22;
public static final int Toolbar_contentInsetEnd = 6;
public static final int Toolbar_contentInsetEndWithActions = 10;
public static final int Toolbar_contentInsetLeft = 7;
public static final int Toolbar_contentInsetRight = 8;
public static final int Toolbar_contentInsetStart = 5;
public static final int Toolbar_contentInsetStartWithNavigation = 9;
public static final int Toolbar_logo = 4;
public static final int Toolbar_logoDescription = 26;
public static final int Toolbar_maxButtonHeight = 20;
public static final int Toolbar_navigationContentDescription = 25;
public static final int Toolbar_navigationIcon = 24;
public static final int Toolbar_popupTheme = 11;
public static final int Toolbar_subtitle = 3;
public static final int Toolbar_subtitleTextAppearance = 13;
public static final int Toolbar_subtitleTextColor = 28;
public static final int Toolbar_title = 2;
public static final int Toolbar_titleMargin = 14;
public static final int Toolbar_titleMarginBottom = 18;
public static final int Toolbar_titleMarginEnd = 16;
public static final int Toolbar_titleMarginStart = 15;
public static final int Toolbar_titleMarginTop = 17;
public static final int Toolbar_titleMargins = 19;
public static final int Toolbar_titleTextAppearance = 12;
public static final int Toolbar_titleTextColor = 27;
public static final int[] View = { 0x01010000, 0x010100da, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1 };
public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f0100f2, 0x7f0100f3 };
public static final int ViewBackgroundHelper_android_background = 0;
public static final int ViewBackgroundHelper_backgroundTint = 1;
public static final int ViewBackgroundHelper_backgroundTintMode = 2;
public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
public static final int ViewStubCompat_android_id = 0;
public static final int ViewStubCompat_android_inflatedId = 2;
public static final int ViewStubCompat_android_layout = 1;
public static final int View_android_focusable = 1;
public static final int View_android_theme = 0;
public static final int View_paddingEnd = 3;
public static final int View_paddingStart = 2;
public static final int View_theme = 4;
}
}
| [
"2326842133@qq.com"
] | 2326842133@qq.com |
e045d0a24010e1506b75f81824385ae561788ac4 | 3b74fbedd3001512dfe49bc0f5a18090c2e34564 | /hvip-member-service/src/main/java/com/huazhu/hvip/member/service/impl/WebRoleServiceImpl.java | 842f0ea546ec3384fbff05a497cb5592ec3ab3b7 | [] | no_license | xuelu520/cjiaclean-core | b148a78da67b45a0c0e5d5cf07c67b5cfc6d47dc | a96f574a8ec2b4ab7884130461671f095762995a | refs/heads/master | 2020-03-27T10:19:57.138235 | 2017-11-16T01:41:23 | 2017-11-16T01:41:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 715 | java | /*
* Copyright (C),2016-2016. 华住酒店管理有限公司
* FileName: WebRoleServiceImpl.java
* Author: lijing
* Date: 2016-03-21 10:29:34
* Description: //模块目的、功能描述
* History: //修改记录 修改人姓名 修改时间 版本号 描述
* <lijing> <2016-03-21 10:29:34> <version> <desc>
*
*/
package com.huazhu.hvip.member.service.impl;
import com.huazhu.hvip.member.service.WebRoleService;
import org.springframework.stereotype.Service;
/**
* <一句话功能简述>
* <功能详细描述>
*
* @author lijing
* @see [相关类/方法](可选)
* @since [产品/模块版本] (可选)
*/
@Service
public class WebRoleServiceImpl implements WebRoleService{
}
| [
"zxc,./123"
] | zxc,./123 |
39b3e80bc76d88e227271356276a4d2e4db39aaf | 14fec7d48aa2bd28ecbeb87e4e1d8aeb23e20635 | /src/main/java/com/mht/controller/UserSellerController.java | c6c3ae1cdef7be005327e967b30b40c925786efd | [] | no_license | haoqiunie/api1 | 352a2d75ee77b98ff09f7e5a43bfc4f6cab98294 | 37bf9c55edda5e9b7a70a85f0851472dd8306280 | refs/heads/master | 2022-06-27T18:22:03.203863 | 2019-08-12T03:02:11 | 2019-08-12T03:02:11 | 201,601,048 | 0 | 0 | null | 2022-06-17T02:25:39 | 2019-08-10T08:17:18 | Java | UTF-8 | Java | false | false | 329 | java | package com.mht.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 前端控制器
* </p>
*
* @author jobob
* @since 2019-07-29
*/
@RestController
@RequestMapping("/user-seller")
public class UserSellerController {
}
| [
"1778715299@qq.com"
] | 1778715299@qq.com |
1018e81fdd162f003729d1c413bc061c0c0712ca | 43f628c2844efc7df4dee02c8120a48630f11e3e | /src/main/java/uk/gov/digital/ho/pttg/alert/sysdig/Event.java | 132d5e1969a2c14d09291296719f33b88d685cd7 | [
"MIT"
] | permissive | UKHomeOffice/pttg-ip-audit | e5b8dadc307af134a13bfc194ff40a2f581db308 | 813df9a523156f693b11b0859bba095bcc8f3d5d | refs/heads/master | 2021-12-25T09:25:21.142628 | 2021-12-17T12:03:47 | 2021-12-17T12:03:47 | 106,278,898 | 2 | 1 | MIT | 2021-12-17T08:55:42 | 2017-10-09T12:10:33 | Java | UTF-8 | Java | false | false | 358 | java | package uk.gov.digital.ho.pttg.alert.sysdig;
import lombok.AllArgsConstructor;
import lombok.Getter;
import java.util.Map;
@AllArgsConstructor
@Getter
public class Event {
private final String name;
private final String description;
private final String severity;
private final String filter;
private final Map<String, Object> tags;
}
| [
"stuart.whitlam@digital.homeoffice.gov.uk"
] | stuart.whitlam@digital.homeoffice.gov.uk |
d7783ca02ff1be008b612a5bbec5a028e6250e60 | ff53c819f7721881a466da517d771df680a1ee02 | /interactivebrokers/src/main/java/com/ax9k/interactivebrokers/provider/DepthMessageProcessor.java | e756f0905d41f99efcbb55fbe610a4dadf193b98 | [] | no_license | ssh352/ax9000 | 355d0a6eaf8e88447c2b0d9ad55e5de49449c27f | 327f68b178e322f0c90e8243a4dbda40dfce6615 | refs/heads/master | 2022-02-08T13:58:33.625674 | 2019-08-10T09:34:04 | 2019-08-10T09:34:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,323 | java | package com.ax9k.interactivebrokers.provider;
import com.ax9k.core.marketmodel.BidAsk;
import java.time.Instant;
class DepthMessageProcessor {
private static final int UNINITIALISED = -999;
private final LevelUpdateEventConsumer updateCallback;
private final Runnable onUpdateEvent;
private int lastLevel;
private BidAsk lastSide;
private Instant lastTimestamp;
private double lastPrice;
private double lastQuantity;
private int eventCount;
DepthMessageProcessor(LevelUpdateEventConsumer updateCallback, Runnable onUpdateEvent) {
this.updateCallback = updateCallback;
this.onUpdateEvent = onUpdateEvent;
}
void processUpdate(Instant timestamp, int level, BidAsk side, double price, double quantity) {
if (isNewEvent(level, side)) {
sendUpdateEvent(lastTimestamp, lastLevel, lastSide, lastPrice, lastQuantity);
updateValues(timestamp, level, side, price, quantity);
return;
}
price = price > 0 ? price : lastPrice;
quantity = quantity > 0 ? quantity : lastQuantity;
if (isSecondEvent()) {
sendUpdateEvent(timestamp, level, side, price, quantity);
resetValues();
} else {
updateValues(timestamp, level, side, price, quantity);
}
}
private boolean isNewEvent(int level, BidAsk side) {
if (lastLevel == UNINITIALISED || lastSide == null) {
return false;
}
return level != lastLevel || side != lastSide;
}
private void sendUpdateEvent(Instant timeStamp, int level, BidAsk side, double price, double quantity) {
updateCallback.send(timeStamp, level, side, price, (int) quantity);
resetValues();
onUpdateEvent.run();
}
private void resetValues() {
lastSide = null;
lastLevel = UNINITIALISED;
lastPrice = lastQuantity = 0;
eventCount = 0;
}
private void updateValues(Instant timestamp, int level, BidAsk side, double price, double quantity) {
lastSide = side;
lastLevel = level;
lastPrice = price;
lastQuantity = quantity;
lastTimestamp = timestamp;
eventCount = 1;
}
private boolean isSecondEvent() {
return ++eventCount == 2;
}
}
| [
"laurence_hook@hotmail.com"
] | laurence_hook@hotmail.com |
18d7217a1d04695bf15c01a585152a807a3f4e8f | 6ca346ef7eea0c803b6ca615df71b142203020d5 | /server/src/main/java/server/authservice/AuthService.java | c8f501fe7355f88a2f74547a796f92c7a32f91ba | [] | no_license | NabiyevTR/0302 | 8f8999603eb73ae0e0503e1176fa16b301e8637f | b2bcfc62957250c0383e03dcda716dcf3f7edd9e | refs/heads/main | 2023-06-18T07:32:50.990865 | 2021-07-20T20:56:55 | 2021-07-20T20:56:55 | 339,180,519 | 0 | 0 | null | 2021-07-20T20:56:56 | 2021-02-15T19:12:15 | Java | UTF-8 | Java | false | false | 395 | java | package server.authservice;
import java.io.Closeable;
public interface AuthService extends Closeable {
String getNicknameByLoginAndPassword(String login, String password);
boolean registration(String login, String password, String nickname);
boolean changeNickName(String login, String password, String newNickname);
boolean changeNickName(String login, String newNickname);
}
| [
"NabiyeTR@gmail.com"
] | NabiyeTR@gmail.com |
9113ff21a187c8b6f49fd2bfaebcfc83d03045d6 | eb009a2a544536cfb9b5f9dc5cd97c7b8cf2a79b | /src/main/java/com/infosys/FA4group6/Order/OrderApplication.java | 11dc11c813da7acacd6d1e167b9cb348c6ab2317 | [] | no_license | Sumit-Upadhyaya07/OrderMSFinal | 06949b6f2e7e669d850e3776f96395d8d733d0cc | c57b52d3063ee3b1079ade07032a853a1f3c42b0 | refs/heads/master | 2023-03-19T10:14:59.867601 | 2021-03-17T17:42:26 | 2021-03-17T17:42:26 | 348,798,500 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 718 | java | package com.infosys.FA4group6.Order;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.client.RestTemplateBuilder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.web.client.RestTemplate;
@SpringBootApplication
@ComponentScan({"com.infosys.FA4group6.Order"})
public class OrderApplication {
public static void main(String[] args) {
SpringApplication.run(OrderApplication.class, args);
}
@Bean
public RestTemplate restTemplate(RestTemplateBuilder builder) {
return builder.build();
}
}
| [
"Sumit_InfyT-at-668223526214"
] | Sumit_InfyT-at-668223526214 |
4c8b0c49fafe387a270e1cdc7be6c80b0eeb5ffc | 7480717e8866db20d8738742630b1733410d6d2b | /ApacheDatasets/MYFACES-2.0.1/myfaces-2.0.0/src/myfaces-impl-2.0.0-sources/org/apache/myfaces/view/jsp/JspViewDeclarationLanguage.java | 75d1f09fd5620bca3045f03203084bb25cebe0ca | [
"Apache-2.0"
] | permissive | abcdefghiklk/SeekChanges | 600ecffeceedbc2caf1672fc7bb553e37b00131a | 82103108425f22e2b535f43e424c23dbdea3b6f2 | refs/heads/master | 2020-04-06T07:02:43.703757 | 2016-08-17T10:43:59 | 2016-08-17T10:43:59 | 57,231,049 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 8,958 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.myfaces.view.jsp;
import java.io.IOException;
import java.util.Locale;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.faces.FacesException;
import javax.faces.component.UIViewRoot;
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.jsp.jstl.core.Config;
import org.apache.myfaces.application.jsp.ServletViewResponseWrapper;
import org.apache.myfaces.context.servlet.ResponseSwitch;
import org.apache.myfaces.shared_impl.view.JspViewDeclarationLanguageBase;
import org.apache.myfaces.util.ExternalContextUtils;
import org.apache.myfaces.view.facelets.tag.composite.CompositeLibrary;
import org.apache.myfaces.view.facelets.tag.jsf.core.CoreLibrary;
import org.apache.myfaces.view.facelets.tag.jsf.html.HtmlLibrary;
import org.apache.myfaces.view.facelets.tag.ui.UILibrary;
/**
* @author Simon Lessard (latest modification by $Author: lu4242 $)
* @version $Revision: 934133 $ $Date: 2010-04-14 14:17:14 -0500 (Wed, 14 Apr 2010) $
*
* @since 2.0
*/
public class JspViewDeclarationLanguage extends JspViewDeclarationLanguageBase
{
//private static final Log log = LogFactory.getLog(JspViewDeclarationLanguage.class);
public static final Logger log = Logger.getLogger(JspViewDeclarationLanguage.class.getName());
/**
* Tags that are only available on facelets and not on JSP.
* If a user uses one of these tags on a JSP, we will provide
* a more informative error message than the standard one.
*/
public static final String[] FACELETS_ONLY_F_TAGS = {"ajax", "event", "metadata"};
public static final String[] FACELETS_ONLY_H_TAGS = {"outputScript", "outputStylesheet",
"head", "body", "button", "link"};
/**
*
*/
public JspViewDeclarationLanguage()
{
if (log.isLoggable(Level.FINEST))
log.finest("New JspViewDeclarationLanguage instance created");
}
/**
* {@inheritDoc}
*/
@Override
public void buildView(FacesContext context, UIViewRoot view) throws IOException
{
ExternalContext externalContext = context.getExternalContext();
if (context.getPartialViewContext().isPartialRequest())
{
// try to get (or create) a ResponseSwitch and turn off the output
Object origResponse = context.getExternalContext().getResponse();
ResponseSwitch responseSwitch = ExternalContextUtils.getResponseSwitch(origResponse);
if (responseSwitch == null)
{
// no ResponseSwitch installed yet - create one
responseSwitch = ExternalContextUtils.createResponseSwitch(origResponse);
if (responseSwitch != null)
{
// install the ResponseSwitch
context.getExternalContext().setResponse(responseSwitch);
}
}
if (responseSwitch != null)
{
responseSwitch.setEnabled(context, false);
}
}
ServletResponse response = (ServletResponse) externalContext.getResponse();
ServletRequest request = (ServletRequest) externalContext.getRequest();
Locale locale = view.getLocale();
response.setLocale(locale);
Config.set(request, Config.FMT_LOCALE, context.getViewRoot().getLocale());
String viewId = view.getViewId();
ServletViewResponseWrapper wrappedResponse = new ServletViewResponseWrapper((HttpServletResponse) response);
externalContext.setResponse(wrappedResponse);
try
{
externalContext.dispatch(viewId);
}
catch (FacesException e)
{
// try to extract the most likely exceptions here
// and provide a better error message for them
String message = e.getMessage();
// errors related to using facelets-only tags on a JSP page
if (message != null)
{
// does the message contain "f" (prefix f of tags)
// or the related uri http://java.sun.com/jsf/core
if (message.contains("\"f\"")
|| message.contains("\"" + CoreLibrary.Namespace + "\""))
{
// check facelets-only f tags
for (String tag : FACELETS_ONLY_F_TAGS)
{
if (message.contains("\"" + tag + "\""))
{
String exceptionMessage = "The tag f:" + tag +
" is only available on facelets.";
throw new FacesException(exceptionMessage,
new FaceletsOnlyException(exceptionMessage, e.getCause()));
}
}
}
else if (message.contains("\"h\"")
|| message.contains("\"" + HtmlLibrary.Namespace + "\""))
{
// check facelets-only h tags
for (String tag : FACELETS_ONLY_H_TAGS)
{
if (message.contains("\"" + tag + "\""))
{
String exceptionMessage = "The tag h:" + tag +
" is only available on facelets.";
throw new FacesException(exceptionMessage,
new FaceletsOnlyException(exceptionMessage, e.getCause()));
}
}
}
else
{
// check facelets-only namespaces
String namespace = null;
if (message.contains(UILibrary.Namespace))
{
namespace = UILibrary.Namespace;
}
else if (message.contains(CompositeLibrary.NAMESPACE))
{
namespace = CompositeLibrary.NAMESPACE;
}
if (namespace != null)
{
// the message contains a facelets-only namespace
String exceptionMessage = "All tags with namespace " +
namespace + " are only available on facelets.";
throw new FacesException(exceptionMessage,
new FaceletsOnlyException(exceptionMessage, e.getCause()));
}
}
}
// no rule applied to this Exception - rethrow it
throw e;
}
finally
{
externalContext.setResponse(response);
}
boolean errorResponse = wrappedResponse.getStatus() < 200 || wrappedResponse.getStatus() > 299;
if (errorResponse)
{
wrappedResponse.flushToWrappedResponse();
return;
}
//Skip this step if we are rendering an ajax request, because no content outside
//f:view tag should be output.
if (!context.getPartialViewContext().isPartialRequest())
{
// store the wrapped response in the request, so it is thread-safe
setAfterViewTagResponseWrapper(externalContext, wrappedResponse);
}
}
@Override
protected void sendSourceNotFound(FacesContext context, String message)
{
HttpServletResponse response = (HttpServletResponse) context.getExternalContext().getResponse();
try
{
context.responseComplete();
response.sendError(HttpServletResponse.SC_NOT_FOUND, message);
}
catch (IOException ioe)
{
throw new FacesException(ioe);
}
}
} | [
"Qiuchi.Li@open.ac.uk"
] | Qiuchi.Li@open.ac.uk |
c1800b969ee75ac1dc924a6fcf888e14185d5af2 | 180e78725121de49801e34de358c32cf7148b0a2 | /dataset/protocol1/neo4j/learning/2626/KernelRecoveryTest.java | a336232e14eb17629398a161b51b3e24dacf03f4 | [] | no_license | ASSERT-KTH/synthetic-checkstyle-error-dataset | 40e8d1e0a7ebe7f7711def96a390891a6922f7bd | 40c057e1669584bfc6fecf789b5b2854660222f3 | refs/heads/master | 2023-03-18T12:50:55.410343 | 2019-01-25T09:54:39 | 2019-01-25T09:54:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,175 | java | /*
* Copyright (c) 2002-2018 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.neo4j.kernel.impl.recovery;
import org.junit.Rule;
import org.junit.Test;
import java.io.File;
import org.neo4j.graphdb.GraphDatabaseService;
import org.neo4j.graphdb.Transaction;
import org.neo4j.graphdb.mockfs.EphemeralFileSystemAbstraction;
import org.neo4j.graphdb.mockfs.UncloseableDelegatingFileSystemAbstraction;
import org.neo4j.io.fs.FileSystemAbstraction;
import org.neo4j.kernel.api.StatementConstants;
import org.neo4j.kernel.impl.transaction.command.Command.NodeCommand;
import org.neo4j.kernel.impl.transaction.command.Command.NodeCountsCommand;
import org.neo4j.kernel.impl.transaction.log.LogPosition;
import org.neo4j.kernel.impl.transaction.log.files.TransactionLogFiles;
import org.neo4j.test.TestGraphDatabaseFactory;
import org.neo4j.test.rule.TestDirectory;
import org.neo4j.test.rule.fs.EphemeralFileSystemRule;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.neo4j.test.mockito.matcher.LogMatchers.checkPoint;
import static org.neo4j.test.mockito.matcher.LogMatchers.commandEntry;
import static org.neo4j.test.mockito.matcher.LogMatchers.commitEntry;
import static org.neo4j.test.mockito.matcher.LogMatchers.containsExactly;
import static org.neo4j.test.mockito.matcher.LogMatchers.logEntries;
import static org.neo4j.test.mockito.matcher.LogMatchers.startEntry;
public class KernelRecoveryTest
{
@Rule
public final EphemeralFileSystemRule fsRule = new EphemeralFileSystemRule();
@Rule
public final TestDirectory testDirectory = TestDirectory.testDirectory();
@Test
public void shouldHandleWritesProperlyAfterRecovery() throws Exception
{
// Given
EphemeralFileSystemAbstraction fs = fsRule.get();
GraphDatabaseService db = newDB( fs );
long node1 = createNode( db );
// And given the power goes out
try ( EphemeralFileSystemAbstraction crashedFs = fs.snapshot() )
{
db.shutdown();
db = newDB( crashedFs );
long node2 = createNode( db );
db.shutdown();
// Then the logical log should be in sync
File logFile = testDirectory.databaseLayout().file( TransactionLogFiles.DEFAULT_NAME + ".0" );
assertThat
( logEntries( crashedFs, logFile ), containsExactly(
// Tx before recovery
startEntry( -1, -1 ), commandEntry( node1, NodeCommand.class ),
commandEntry( StatementConstants.ANY_LABEL, NodeCountsCommand.class ), commitEntry( 2 ),
// Tx after recovery
startEntry( -1, -1 ), commandEntry( node2, NodeCommand.class ),
commandEntry( StatementConstants.ANY_LABEL, NodeCountsCommand.class ), commitEntry( 3 ),
// checkpoint
checkPoint( new LogPosition( 0, 250 ) ) ) );
}
}
private GraphDatabaseService newDB( FileSystemAbstraction fs )
{
return new TestGraphDatabaseFactory()
.setFileSystem( new UncloseableDelegatingFileSystemAbstraction( fs ) )
.newImpermanentDatabase( testDirectory.databaseDir() );
}
private static long createNode( GraphDatabaseService db )
{
long node1;
try ( Transaction tx = db.beginTx() )
{
node1 = db.createNode().getId();
tx.success();
}
return node1;
}
}
| [
"bloriot97@gmail.com"
] | bloriot97@gmail.com |
7500674f41e6a0a2626977abefd6a514eec8343f | 80da60adc45498ec070d5dc558fa87ab72464d70 | /taopicker/src/main/java/com/rt/taopicker/util/GsonUtil.java | caf9f69c7fbe98726dbd1ec4cb1b53c68e6128c3 | [] | no_license | zhyou110z/TAOPicker2 | 8291710ce8529ae46df857fe72e318fefbdc6fb0 | b6bff572155e9436f8c454eca3bc94af702b5dd1 | refs/heads/master | 2021-04-27T02:45:20.222487 | 2018-02-24T03:41:03 | 2018-02-24T03:41:03 | 122,700,106 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,148 | java | package com.rt.taopicker.util;
import com.google.gson.Gson;
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonParser;
import com.google.gson.reflect.TypeToken;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
/**
* GSON帮助类
* <p>
* Created by yaoguangyao on 2017/1/6.
*/
public class GsonUtil {
private static Gson gson = null;
static {
if (gson == null) {
gson = new Gson();
}
}
private GsonUtil() {
}
/**
* 转成json
*
* @param object
* @return
*/
public static String GsonString(Object object) {
String gsonString = null;
if (gson != null) {
gsonString = gson.toJson(object);
}
return gsonString;
}
/**
* 转成bean
*
* @param gsonString
* @param cls
* @return
*/
public static <T> T jsonToBean(String gsonString, Class<T> cls) {
T t = null;
if (gson != null) {
t = gson.fromJson(gsonString, cls);
}
return t;
}
/**
* 转成bean
* 泛型在编译期类型被擦除导致报错
* @param gsonString
* @return
*/
public static <T> T jsonToBean2(String gsonString, Type type) {
T t = null;
if (gson != null) {
t = gson.fromJson(gsonString, type);
}
return t;
}
/**
* 转成list
* 泛型在编译期类型被擦除导致报错
*
* @param gsonString
* @param cls
* @return
*/
public static <T> ArrayList<T> jsonToList(String gsonString, Class<T> cls) {
ArrayList<T> list = null;
if (gson != null) {
list = gson.fromJson(gsonString, new TypeToken<ArrayList<T>>() {
}.getType());
}
return list;
}
/**
* 转成list
* 解决泛型问题
*
* @param json
* @param cls
* @param <T>
* @return
*/
public <T> ArrayList<T> jsonToList2(String json, Class<T> cls) {
Gson gson = new Gson();
ArrayList<T> list = new ArrayList<>();
JsonArray array = new JsonParser().parse(json).getAsJsonArray();
for (final JsonElement elem : array) {
list.add(gson.fromJson(elem, cls));
}
return list;
}
/**
* 转成list中有map的
*
* @param gsonString
* @return
*/
public static List<Map> jsonToListMaps(String gsonString) {
List<Map> list = null;
if (gson != null) {
list = gson.fromJson(gsonString,
new TypeToken<List<Map>>() {
}.getType());
}
return list;
}
/**
* 转成map的
*
* @param gsonString
* @return
*/
public static <T> Map<String, T> jsonToMaps(String gsonString) {
Map<String, T> map = null;
if (gson != null) {
map = gson.fromJson(gsonString, new TypeToken<Map<String, T>>() {
}.getType());
}
return map;
}
}
| [
"195252944@qq.com"
] | 195252944@qq.com |
baa17b01b7bf07b4b5feea3f591d8d24a147ef96 | 471fb771f6ec0dd0f066dcf6e1110dce6ad81639 | /java-io/src/main/java/yancy/io/echo/EchoClient.java | 073a991e0768325594a5bd482311e79269736580 | [] | no_license | yyancy/learning-network | 10fb24f46c346a8015cf59fabb512942908c3074 | 9936ea0604cda3f2996c3c05d648b5e229587fb7 | refs/heads/master | 2021-07-15T20:49:56.811576 | 2020-11-23T00:35:42 | 2020-11-23T00:35:42 | 226,447,173 | 0 | 0 | null | 2020-10-13T18:08:16 | 2019-12-07T03:01:15 | Java | UTF-8 | Java | false | false | 1,076 | java | package yancy.io.echo;
import java.io.*;
import java.net.Socket;
import java.util.Scanner;
public class EchoClient {
private final int port;
private final String host;
public EchoClient(int port, String host) {
this.port = port;
this.host = host;
}
private void start() {
try (Socket socket = new Socket(host, port)) {
while (true) {
Scanner scanner = new Scanner(System.in);
String message = scanner.next();
System.out.println("your input message is: " + message);
BufferedReader reader = new BufferedReader(new InputStreamReader(socket.getInputStream()));
PrintWriter writer = new PrintWriter(new OutputStreamWriter(socket.getOutputStream()));
writer.println(message);
writer.flush();
String receivedMessage = reader.readLine();
System.out.println("your received message is: " + receivedMessage);
}
} catch (IOException e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
new EchoClient(8888, "127.0.0.1").start();
}
}
| [
"yyancy517@gmail.com"
] | yyancy517@gmail.com |
bc238ba745ab09c65cf52ebe1423eb2d3b0d31a9 | 1bc928c269707865b316446e9ec8120e74cf6020 | /src/test/java/apple/npc/creation/from_scratch/npc/CreateConcluToConvoTest.java | 93dc627c845ffa231883f9035cfa962a00a8d681 | [] | no_license | amp7368/MinecraftNPCDialogue | 8e4ed008aac7d661eef34ece3bddd0da77c924c1 | fbfa661ab0d9bf16c73c60f9e428c070a794ddc7 | refs/heads/master | 2021-05-21T22:20:32.461311 | 2020-04-15T05:14:58 | 2020-04-15T05:14:58 | 252,827,308 | 0 | 0 | null | 2020-04-19T18:31:19 | 2020-04-03T19:54:06 | Java | UTF-8 | Java | false | false | 727 | java | package apple.npc.creation.from_scratch.npc;
import apple.npc.creation.from_scratch.npc.components.CreateConcluToConvo;
import apple.npc.creation.from_scratch.npc.info.ConcluToConvoInfo;
import apple.npc.ymlNavigate.YMLTestNpc;
public class CreateConcluToConvoTest {
public boolean createTest(String folder) {
String globalName = YMLTestNpc.GLOBAL_NAME;
int personalUID = YMLTestNpc.PERSONAL_UID;
ConcluToConvoInfo concluToConvo = new ConcluToConvoInfo(YMLTestNpc.CONCLU_KEY, YMLTestNpc.CONCLU_CONVO_GLOBAL,
YMLTestNpc.CONCLU_CONVO_LOCAL, YMLTestNpc.CONCLU_CONVO_UID);
return CreateConcluToConvo.set(folder, String.valueOf(personalUID), globalName, concluToConvo);
}
}
| [
"41219847+amp7368@users.noreply.github.com"
] | 41219847+amp7368@users.noreply.github.com |
2da59f03e456d550acacc8f84e5e5307becedb26 | d8d10608ec1432581c45cb8aee62ee369b7b8927 | /Medium/src/MW_46_Permutations.java | 94388ecea36e729bc3d58e42eef0d41bbafe8008 | [] | no_license | AceDJH/Leetcode | 1becf533500f9c2048ea1bfbba4f47e2c2282dc8 | 10dd3ea8cc9922b38f241d2e45621bdb891de717 | refs/heads/master | 2021-12-09T17:09:00.906202 | 2021-09-18T06:33:23 | 2021-09-18T06:33:23 | 240,695,555 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,864 | java | import java.util.ArrayList;
import java.util.List;
/**
* @Author AceDJH
* @Date 2020/4/5 17:52
* 46. 全排列
* 给定一个 没有重复 数字的序列,返回其所有可能的全排列。
* <p>
* 示例:
* <p>
* 输入: [1,2,3]
* 输出:
* [
* [1,2,3],
* [1,3,2],
* [2,1,3],
* [2,3,1],
* [3,1,2],
* [3,2,1]
* ]
* <p>
* 来源:力扣(LeetCode)
* 链接:https://leetcode-cn.com/problems/permutations
* 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
*/
public class MW_46_Permutations {
public static void main(String[] args) {
System.out.println(new Solution46().permute(new int[]{1, 2, 3}));
}
}
class Solution46 {
public List<List<Integer>> permute(int[] nums) {
List<List<Integer>> res = new ArrayList<>();
List<Integer> list = new ArrayList<>();
backtrack(res, list, nums);
return res;
}
/*回溯算法的一般公式
backtrack的公式:
result = []
def backtrack(路径, 选择列表):
if 满足结束条件:
result.add(路径)
return
for 选择 in 选择列表:
做选择
backtrack(路径, 选择列表)
撤销选择
* */
// 函数中直接传递res,来代替公式中的result
public void backtrack(List<List<Integer>> res, List<Integer> list, int[] nums) {
if (list.size() == nums.length) {
// 当没有创建新列表的时候res.add(list);运行结果[[], [], [], [], [], []]
res.add(new ArrayList<>(list));
return;
}
for (int num : nums) {
if (!list.contains(num)) {
list.add(num);
backtrack(res, list, nums);
// 将刚加进去的数取消
list.remove(list.size() - 1);
}
}
}
} | [
"460745177@qq.com"
] | 460745177@qq.com |
91194ee1f19e9bac698e90b577cc490f09fc502f | 07faeaab515163f3493f86805e50f0b0d1aa258a | /src_taskmanage/com/seeyon/v3x/taskmanage/utils/GanttItem.java | 50c6cfc289c2c3972b8e855dcca22b87f7762080 | [] | no_license | zhengxyzw/seeyon_v3x | 033563e558794eb3d3c6d14b65fc3bd985f24e03 | f2f91c1db65c93681ef504d410d517e77048deec | refs/heads/master | 2020-06-12T20:33:08.873703 | 2017-07-11T01:21:52 | 2017-07-11T01:21:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,005 | java | package com.seeyon.v3x.taskmanage.utils;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import org.apache.commons.collections.CollectionUtils;
/**
* 甘特图中用于展现的节点,不同模块数据欲以甘特图样式展现时,需将对应数据转换、设置为组件能够解析和辨识的集合<br>
* 通常而言,POJO中需要扩展:parent、children、ganttId、logicalPath等非持久化属性用于转换为甘特图节点集合<br>
* @see com.seeyon.v3x.taskmanage.domain.TaskInfo
* @see com.seeyon.v3x.taskmanage.utils.GanttUtils#parse2GanttItem(com.seeyon.v3x.taskmanage.domain.TaskInfo)
* @see com.seeyon.v3x.taskmanage.utils.GanttUtils#parse2GanttItems(List, Long, com.seeyon.v3x.project.manager.ProjectManager)
* @see com.seeyon.v3x.taskmanage.controller.TaskController#ganttChartTasks(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
* <a href="mailto:yangm@seeyon.com">Rookie Young</a> 2011-3-19
*/
public class GanttItem implements Comparable<GanttItem> {
/**
* 甘特图中节点ID
*/
private int id;
/**
* 节点名称
*/
private String name;
/**
* 开始日期
*/
private Date beginDate;
/**
* 结束日期
*/
private Date endDate;
/**
* 是否为Sprint(特殊节点,显示时作为类似项目阶段或scrum中的sprint)
*/
private boolean sprint;
/**
* 当前节点的上级父节点是否为Sprint(绘制依赖关系时,此种情况下不予绘制关系连接线)
*/
private boolean parentIsSprint;
/**
* 完成率
*/
private float finishRate;
/**
* 填充颜色
*/
private String color;
/**
* 链接地址
*/
private String link;
/**
* 父节点
*/
private GanttItem parent;
/**
* 子节点
*/
private List<GanttItem> children;
/**
* 逻辑层级深度
*/
private int logicalDepth;
/**
* 添加一个子节点,同时将该子节点的父节点设为自己
* @param child 待添加的子节点
*/
public void addChild(GanttItem child) {
if(this.children == null) {
this.setChildren(new ArrayList<GanttItem>());
}
this.getChildren().add(child);
child.setParent(this);
}
/**
* 获取父节点的ID,如果父节点为空,则返回空值0
* @return
*/
public int getParentGanttId() {
return this.parent == null ? 0 : this.parent.getId();
}
/**
* 当前节点是否存在父节点
* @return 是否存在父节点
*/
public boolean hasParent() {
return this.parent != null;
}
/**
* 当前节点是否存在子节点
* @return 是否存在子节点
*/
public boolean hasChildren() {
return CollectionUtils.isNotEmpty(children);
}
/**
* 排序:逻辑层级升序、开始日期倒序
*/
public int compareTo(GanttItem o) {
Integer depth = this.getLogicalDepth();
Integer depth_o = o.getLogicalDepth();
if(depth.compareTo(depth_o) == 0) {
return -this.getBeginDate().compareTo(o.getBeginDate());
}
return depth.compareTo(depth_o);
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((beginDate == null) ? 0 : beginDate.hashCode());
result = prime * result + id;
result = prime * result + logicalDepth;
result = prime * result + ((name == null) ? 0 : name.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof GanttItem)) {
return false;
}
GanttItem other = (GanttItem) obj;
if (beginDate == null) {
if (other.beginDate != null) {
return false;
}
} else if (!beginDate.equals(other.beginDate)) {
return false;
}
if (id != other.id) {
return false;
}
if (logicalDepth != other.logicalDepth) {
return false;
}
if (name == null) {
if (other.name != null) {
return false;
}
} else if (!name.equals(other.name)) {
return false;
}
return true;
}
/*---------------setter/getter--------------*/
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Date getBeginDate() {
return beginDate;
}
public void setBeginDate(Date beginDate) {
this.beginDate = beginDate;
}
public Date getEndDate() {
return endDate;
}
public void setEndDate(Date endDate) {
this.endDate = endDate;
}
/**
* 是否为Sprint(特殊节点,显示时作为类似项目阶段或scrum中的sprint)
* @return 是否为sprint
*/
public boolean isSprint() {
return sprint;
}
public void setSprint(boolean sprint) {
this.sprint = sprint;
}
/**
* 当前节点的上级父节点是否为Sprint(绘制依赖关系时,此种情况下不予绘制关系连接线)
*/
public boolean isParentIsSprint() {
return parentIsSprint;
}
public void setParentIsSprint(boolean parentIsSprint) {
this.parentIsSprint = parentIsSprint;
}
public float getFinishRate() {
return finishRate;
}
public void setFinishRate(float finishRate) {
this.finishRate = finishRate;
}
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
public String getLink() {
return link;
}
public void setLink(String link) {
this.link = link;
}
public GanttItem getParent() {
return parent;
}
public void setParent(GanttItem parent) {
this.parent = parent;
}
public List<GanttItem> getChildren() {
return children;
}
public void setChildren(List<GanttItem> children) {
this.children = children;
}
public int getLogicalDepth() {
return logicalDepth;
}
public void setLogicalDepth(int logicalDepth) {
this.logicalDepth = logicalDepth;
}
}
| [
"839428881@qq.com"
] | 839428881@qq.com |
5e71f414a33b093834109d6dc62341d5efe4ccc1 | 0aee21750285d389a64f06325bf30b78e7597858 | /app/src/main/java/com/projetolivro/junior_carvalho/carros/activity/MainActivity.java | f070b2a6a8cbf82354e6b229eb2c4616094462f6 | [] | no_license | JesuinoCarvalhoJunior/Carros | d7d43663306c4ce56125d09d2d591cab06347869 | c5f55d46090bc483cea599ea937f29a28e9c471e | refs/heads/master | 2021-05-04T10:02:24.404513 | 2016-09-18T04:40:34 | 2016-09-18T04:40:34 | 54,848,478 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,446 | java | package com.projetolivro.junior_carvalho.carros.activity;
import android.app.backup.BackupManager;
import android.graphics.Color;
import android.os.Bundle;
import android.os.Environment;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.TabLayout;
import android.support.v4.content.ContextCompat;
import android.support.v4.view.ViewPager;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import com.projetolivro.junior_carvalho.carros.R;
import com.projetolivro.junior_carvalho.carros.adapter.TabsAdapter;
import com.projetolivro.junior_carvalho.carros.fragments.AboutDialog;
import com.projetolivro.junior_carvalho.carros.utils.GetTypeNetwork;
import com.projetolivro.junior_carvalho.carros.utils.PrefsUtils;
import livroandroid.lib.utils.Prefs;
public class MainActivity extends BaseActivity {
private BackupManager backupManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//ativa toolbar
setUpToolBar();
//configura active para usar nav drawer
setupNavDrawer();
// iniciliza o aplicativo e adicionar lista de carros
// replaceFragment(CarrosFragment.newInstance(R.string.carros));
// exibir as 3 tabs ao inicializar
// naao precisa mais
// replaceFragment(new CarroTabFragment());
//exibir tabs
setupViewPagerTabs();
FloatingActionButton fa = (FloatingActionButton) findViewById(R.id.fab);
fa.setBackgroundColor(Color.BLUE);
// FAB
final boolean chk = PrefsUtils.isCheckPushOn(this);
findViewById(R.id.fab).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (chk) {
snack(v, "As notificações estão habilitadas!");
} else
snack(v, "Nenhum evento implementado!");
}
});
Log.d("tag", "getfiledir > : " + getFilesDir());
Log.d("tag", "getfiledir > : " + getFileStreamPath("arquivo.txt"));
Log.d("tag", "getfiledir > : " + getExternalFilesDir(Environment.DIRECTORY_DCIM));
Log.d("tag", "getfiledir > : " + getCacheDir());
// gerenciador de BACKUP
// faz com que sempre que alguma preferencia for salva, entao faz bkp
backupManager = new BackupManager(getContext());
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == R.id.action_about) {
AboutDialog.showAbout(getSupportFragmentManager());
return true;
}
if (id == R.id.type_network) {
final boolean chkType = PrefsUtils.isCheckTypeNetWork(this);
if (!chkType) {
toast("Serviço não habilitado!");
} else
toast(GetTypeNetwork.getTypeNetwork(this));
return true;
}
return super.onOptionsItemSelected(item);
}
// configura TABs e ViewPager
private void setupViewPagerTabs() {
//ViewPager
final ViewPager viewPager = (ViewPager) findViewById(R.id.viewPager);
// limite indica para viewpager manter 2 tabs a mais alem da qe esta sendo visualizda
viewPager.setOffscreenPageLimit(2);
//
viewPager.setAdapter(new TabsAdapter(getContext(), getSupportFragmentManager()));
//TABs
TabLayout tabLayout = (TabLayout) findViewById(R.id.tablayout);
//cria as tabes com o mesmo adapter utilisado pelo viewpager
tabLayout.setupWithViewPager(viewPager);
int cor = ContextCompat.getColor(getContext(), R.color.white);
// cor do texto = branca,
// cor de fundo azul ou (Laranja) foi definida no layout // "@color/primary"
// ou poderia utiliar para cor do layout
// tabLayout.setBackgroundColor(Color.BLUE);
// primeiro parametro = cor do texto, segundo cor do texto referente aba selecionada
// tabLayout.setTabTextColors(Color.BLACK,Color.YELLOW);
tabLayout.setTabTextColors(cor, cor);
// muda a cor da barra inferior da tab selecionada
// tabLayout.setSelectedTabIndicatorColor(Color.GREEN);
//region Description - Configura a utlima tab selecionada pelo usuario
int tabIdx = Prefs.getInteger(getContext(), "tabIdx");
viewPager.setCurrentItem(tabIdx);
viewPager.addOnPageChangeListener(new ViewPager.OnPageChangeListener() {
@Override
public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
}
@Override
public void onPageSelected(int position) {
//salva o indice da pagina/tab selecionada
Prefs.setInteger(getContext(), "tabIdx", viewPager.getCurrentItem());
// faz o bkp da preferencia
backupManager.dataChanged();
}
@Override
public void onPageScrollStateChanged(int state) {
}
});
//endregion
}
}
| [
"snakee_snakee@hotmail.com"
] | snakee_snakee@hotmail.com |
48722c5aea0443609d76a22c71361399d3c03538 | 09220eed64596c7fa080d56f0999cefa1e1989fc | /app/src/main/java/com/example/youthhub/dashBoard/DashBoardActivity.java | 83267a74c7057890d3bb0413a8c02ba04c1a7970 | [] | no_license | chitti3/check | d51445ae20d3b13ced78925016453ec905cc148a | 3a1cd3435f306b3f27b4f2b22b40396f5817c183 | refs/heads/master | 2023-01-18T20:40:55.828761 | 2020-11-21T09:42:02 | 2020-11-21T09:42:02 | 314,601,056 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 29,915 | java | package com.example.youthhub.dashBoard;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.support.annotation.NonNull;
import android.support.constraint.ConstraintLayout;
import android.support.constraint.Guideline;
import android.support.design.widget.BottomNavigationView;
import android.support.design.widget.CoordinatorLayout;
import android.support.design.widget.NavigationView;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.content.ContextCompat;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.Gravity;
import android.view.MenuItem;
import android.view.View;
import android.widget.EditText;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.TextView;
import com.bumptech.glide.Glide;
import com.bumptech.glide.Priority;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.bumptech.glide.request.RequestOptions;
import com.example.youthhub.R;
import com.example.youthhub.dashBoard.createPost.CreatePostActivity;
import com.example.youthhub.dashBoard.dashboard.DashBoardFragment;
import com.example.youthhub.dashBoard.eventFragment.EventsFragment;
import com.example.youthhub.dashBoard.exploreFragment.ExploreFragment;
import com.example.youthhub.dashBoard.findConnectionFragment.FindConnectionFragment;
import com.example.youthhub.dashBoard.jobsFragment.JobsFragment;
import com.example.youthhub.dashBoard.messagesFragment.MessagesFragment;
import com.example.youthhub.dashBoard.notificationFragment.FragmentNotification;
import com.example.youthhub.loginPage.ActivityLogin;
import com.example.youthhub.myjobs.MyJobsActivity;
import com.example.youthhub.profile.ChangePasswordActivity;
import com.example.youthhub.profile.ProfileActivity;
import com.example.youthhub.resModel.CommonResponse;
import com.example.youthhub.resModel.login.LoginResponse;
import com.example.youthhub.resModel.post.createPost.PostAddMaster;
import com.example.youthhub.resModel.profilepostlist.PostDashboardListResponse;
import com.example.youthhub.retrofit.ApiClient;
import com.example.youthhub.support.SupportListActivity;
import com.example.youthhub.utils.AppUtils;
import com.example.youthhub.utils.Constants;
import com.example.youthhub.utils.FontTypeFace;
import com.example.youthhub.utils.Loader;
import com.example.youthhub.utils.MyToast;
import com.example.youthhub.utils.NetWorkUtil;
import com.example.youthhub.utils.Preference;
import com.example.youthhub.utils.SessionManager;
import com.google.gson.Gson;
import com.ittianyu.bottomnavigationviewex.BottomNavigationViewEx;
import com.rupins.drawercardbehaviour.CardDrawerLayout;
import butterknife.BindView;
import butterknife.ButterKnife;
import butterknife.OnClick;
import de.hdodenhof.circleimageview.CircleImageView;
import retrofit2.Call;
import retrofit2.Callback;
import retrofit2.Response;
//import com.example.youthhub.FirebaseService.FirebaseRequest;
public class DashBoardActivity extends AppCompatActivity implements FragmentTransfer, InterfaceClass.OnCustomStateListener {
private static final String TAG = DashBoardActivity.class.getSimpleName();
boolean enabled = true;
@BindView(R.id.menu)
ImageView menu;
@BindView(R.id.toolbar_search_view)
EditText toolbarSearchView;
@BindView(R.id.points)
TextView points;
@BindView(R.id.points_txt)
TextView pointsTxt;
@BindView(R.id.level_txt)
TextView levelTxt;
@BindView(R.id.user_img)
CircleImageView userImg;
@BindView(R.id.frame_layout)
FrameLayout frameLayout;
@BindView(R.id.bottom_navigation_view)
BottomNavigationViewEx bottomNavigationView;
@BindView(R.id.bottom_navigation)
ConstraintLayout bottomNavigation;
@BindView(R.id.coordinator)
CoordinatorLayout coordinator;
@BindView(R.id.profile_img)
CircleImageView profileImg;
@BindView(R.id.profiler_name)
TextView profilerName;
/* @BindView(R.id.search_view)
EditText searchView;*/
@BindView(R.id.dashboard)
TextView dashboard;
@BindView(R.id.connection)
TextView connection;
@BindView(R.id.events)
TextView events;
@BindView(R.id.explore)
TextView explore;
@BindView(R.id.jobs_main)
TextView jobsMain;
@BindView(R.id.down_arrow)
ImageView downArrow;
@BindView(R.id.jobs_search)
TextView jobsSearch;
@BindView(R.id.my_jobs)
TextView myJobs;
@BindView(R.id.settings)
TextView settings;
@BindView(R.id.support)
TextView support;
@BindView(R.id.logout)
TextView logout;
@BindView(R.id.navigation_view)
NavigationView navigationView;
@BindView(R.id.drawer_layout)
CardDrawerLayout drawerLayout;
@BindView(R.id.myprofile)
TextView myprofile;
LoginResponse loginResponse;
SessionManager sessionManager;
Activity activity;
public static final String mypreference = "youthhub";
RefreshListListener refreshListListener;
@BindView(R.id.connection_user_code)
TextView connectionUserCode;
@BindView(R.id.user_img1)
ConstraintLayout userImg1;
@BindView(R.id.right_bg)
View rightBg;
@BindView(R.id.guideline)
Guideline guideline;
@BindView(R.id.guideline2)
Guideline guideline2;
@BindView(R.id.connection_user_code_profile)
TextView connectionUserCodeProfile;
@BindView(R.id.profile_img11)
ConstraintLayout profileImg11;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_dash_board);
ButterKnife.bind(this);
sessionManager = new SessionManager(this);
InterfaceClass.getInstance().setListener(this);
//sessionManager.checkLogin();
Log.d(TAG, "onCreate: ");
//getWindow().setFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
setTypeFace();
init();
getBundleData();
Fragment fragment = new DashBoardFragment();
coordinator.setBackground(ContextCompat.getDrawable(DashBoardActivity.this, R.drawable.dashboard_bg_gradient));
getSupportFragmentManager()
.beginTransaction()
// .addToBackStack(null)
.replace(R.id.frame_layout, fragment, fragment.getClass().toString()) // add and tag the new fragment
.commit();
//fragmentTransferListener(new DashBoardFragment());
bottomNavigationView.setOnNavigationItemSelectedListener(new BottomNavigationView.OnNavigationItemSelectedListener() {
private boolean firstClick = true;
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem menuItem) {
int id = menuItem.getItemId();
switch (id) {
case R.id.action_home:
coordinator.setBackground(ContextCompat.getDrawable(DashBoardActivity.this, R.drawable.dashboard_bg_gradient));
fragmentTransferListener(new DashBoardFragment());
break;
case R.id.action_cmt:
coordinator.setBackgroundColor(ContextCompat.getColor(DashBoardActivity.this, R.color.white));
fragmentTransferListener(new MessagesFragment());
break;
case R.id.action_camera:
coordinator.setBackgroundColor(ContextCompat.getColor(DashBoardActivity.this, R.color.white));
call_post_add_master_api();
break;
case R.id.action_notification:
coordinator.setBackgroundColor(ContextCompat.getColor(DashBoardActivity.this, R.color.white));
fragmentTransferListener(new FragmentNotification());
break;
case R.id.action_jobs:
coordinator.setBackgroundColor(ContextCompat.getColor(DashBoardActivity.this, R.color.white));
fragmentTransferListener(new JobsFragment());
break;
}
if (firstClick) {
int position = bottomNavigationView.getMenuItemPosition(menuItem);
if (0 == position) {
firstClick = false;
bottomNavigationView.setIconTintList(0, getResources()
.getColorStateList(R.color.selected_item_bottom_nav));
bottomNavigationView.setTextTintList(0, getResources()
.getColorStateList(R.color.selected_item_bottom_nav));
}
}
return true;
}
});
bottomNavigationView.enableShiftingMode(false);
bottomNavigationView.enableItemShiftingMode(false);
bottomNavigationView.setTextVisibility(false);
}
private void call_post_add_master_api() {
if (NetWorkUtil.isNetworkConnected(activity)) {
Loader.showLoad(activity, true);
Call<PostAddMaster> call = ApiClient.getApiInterface().getPostAddMaster(Constants.getApiKey(activity), Constants.getAccessKey(activity), Constants.getToken(activity));
call.enqueue(new Callback<PostAddMaster>() {
@Override
public void onResponse(@NonNull Call<PostAddMaster> call, @NonNull Response<PostAddMaster> response) {
if (response.isSuccessful()) {
if (response.body() != null && response.body().getStatus() == 1) {
bottomNavigationView.getMenu().findItem(R.id.action_camera).setChecked(false);
bottomNavigationView.getMenu().findItem(R.id.action_home).setChecked(true);
Bundle bundle = new Bundle();
bundle.putParcelable(Constants.PostAddMaster, response.body());
Intent postIntent = new Intent(activity, CreatePostActivity.class);
postIntent.putExtras(bundle);
startActivity(postIntent);
activity.overridePendingTransition(R.anim.activity_slide_up, R.anim.stay);
}
} else {
Log.d(Constants.failureResponse + " PostAddMaster", response.toString());
}
Loader.showLoad(activity, false);
}
@Override
public void onFailure(@NonNull Call<PostAddMaster> call, @NonNull Throwable t) {
call_post_add_master_api();
Log.d(Constants.failureResponse + " PostAddMaster", t.toString());
Loader.showLoad(activity, false);
}
});
}
}
private void call_logout_api() {
if (NetWorkUtil.isNetworkConnected(activity)) {
Loader.showLoad(activity, true);
Call<CommonResponse> call = ApiClient.getApiInterface().getlogout(Constants.getApiKey(activity),
Constants.getAccessKey(activity), Constants.getToken(activity));
call.enqueue(new Callback<CommonResponse>() {
@Override
public void onResponse(@NonNull Call<CommonResponse> call, @NonNull Response<CommonResponse> response) {
if (response.isSuccessful()) {
if (response.body() != null && response.body().getStatus() == 1) {
Intent intent = new Intent(getApplicationContext(), ActivityLogin.class);
startActivity(intent);
sessionManager.logoutUser();
activity.overridePendingTransition(R.anim.activity_slide_down, R.anim.stay);
finish();
}
} else {
Log.d(Constants.failureResponse + " PostAddMaster", response.toString());
}
Loader.showLoad(activity, false);
}
@Override
public void onFailure(@NonNull Call<CommonResponse> call, @NonNull Throwable t) {
call_logout_api();
Log.d(Constants.failureResponse + " PostAddMaster", t.toString());
Loader.showLoad(activity, false);
}
});
}
}
private void getBundleData() {
Log.d(TAG, "getBundleData: ");
Bundle bundle = getIntent().getExtras();
if (bundle != null) {
loginResponse = bundle.getParcelable(Constants.LoginData);
Log.d(TAG, "getBundleData: if " + new Gson().toJson(loginResponse));
Log.d(TAG, "getBundleData: if sf " + loginResponse.getLoginData().getUserCoverPic());
Preference.getInstance(this).setStr(Constants.AccessKey, loginResponse.getAccessKey());
Preference.getInstance(this).setStr(Constants.Token, loginResponse.getToken());
Preference.getInstance(this).setStr(Constants.UserID, loginResponse.getLoginData().getUserId());
Preference.getInstance(this).setStr(Constants.UserCode, loginResponse.getLoginData().getUserCode());
Preference.getInstance(this).setStr(Constants.UserNameCode, loginResponse.getLoginData().getUserNameCode());
Preference.getInstance(this).setStr(Constants.UserType, loginResponse.getLoginData().getUserTypeId());
Preference.getInstance(this).setStr(Constants.UserPoints, loginResponse.getLoginData().getUser_points());
Preference.getInstance(this).setStr(Constants.UserLevel, loginResponse.getLoginData().getUser_level());
Preference.getInstance(this).setStr(Constants.UserLevelName, loginResponse.getLoginData().getUser_level_name());
Preference.getInstance(this).setStr(Constants.UserProfileImage, loginResponse.getLoginData().getUserProfilePic());
Preference.getInstance(this).setStr(Constants.UserName, loginResponse.getLoginData().getUserName());
Preference.getInstance(this).setStr(Constants.UserImagePath, loginResponse.getLoginData().getUserMediumPath());
Log.d("YH-ACCESS-KEY", Preference.getInstance(this).getStr("Access_key"));
Log.d("Authorizations", Preference.getInstance(this).getStr("Token"));
} else {
Log.d(TAG, "getBundleData:else ");
}
Log.d(TAG, "getBundleData:else name" + Preference.getInstance(this).getStr(Constants.UserImagePath));
Log.d(TAG, "getBundleData:else UserImagePath" + Preference.getInstance(this).getStr(Constants.UserProfileImage));
Log.d(TAG, "getBundleData:else UserImage" + Preference.getInstance(this).getStr(Constants.UserImagePath) + Preference.getInstance(this).getStr(Constants.UserProfileImage) + "?Yh-Access-Key=" + Preference.getInstance(this).getStr(Constants.AccessKey));
profilerName.setText(Preference.getInstance(this).getStr(Constants.UserName));
points.setText(Preference.getInstance(this).getStr(Constants.UserPoints));
levelTxt.setText(Preference.getInstance(this).getStr(Constants.UserLevelName));
RequestOptions options = new RequestOptions()
.diskCacheStrategy(DiskCacheStrategy.ALL)
.priority(Priority.HIGH);
if (Preference.getInstance(this).getStr(Constants.UserProfileImage).length() != 0) {
Glide.with(this)
.load(Preference.getInstance(this).getStr(Constants.UserImagePath) + Preference.getInstance(this).getStr(Constants.UserProfileImage) + "?Yh-Access-Key=" + Preference.getInstance(this).getStr(Constants.AccessKey))
.apply(AppUtils.getRequestOption())
.listener(AppUtils.requestListener)
.into(profileImg);
userImg.setVisibility(View.VISIBLE);
profileImg.setVisibility(View.VISIBLE);
connectionUserCode.setVisibility(View.GONE);
connectionUserCodeProfile.setVisibility(View.GONE);
Glide.with(this)
.load(Preference.getInstance(this).getStr(Constants.UserImagePath) + Preference.getInstance(this).getStr(Constants.UserProfileImage) + "?Yh-Access-Key=" + Preference.getInstance(this).getStr(Constants.AccessKey))
.apply(AppUtils.getRequestOption())
.listener(AppUtils.requestListener)
.into(userImg);
} else {
userImg.setVisibility(View.GONE);
profileImg.setVisibility(View.GONE);
connectionUserCode.setVisibility(View.VISIBLE);
connectionUserCodeProfile.setVisibility(View.VISIBLE);
connectionUserCode.setText(Preference.getInstance(this).getStr(Constants.UserNameCode));
connectionUserCodeProfile.setText(Preference.getInstance(this).getStr(Constants.UserNameCode));
}
}
private void setTypeFace() {
points.setTypeface(FontTypeFace.fontSemiBold(this));
pointsTxt.setTypeface(FontTypeFace.fontMedium(this));
levelTxt.setTypeface(FontTypeFace.fontSemiBold(this));
profilerName.setTypeface(FontTypeFace.fontBold(this));
dashboard.setTypeface(FontTypeFace.fontMedium(this));
connection.setTypeface(FontTypeFace.fontMedium(this));
events.setTypeface(FontTypeFace.fontMedium(this));
explore.setTypeface(FontTypeFace.fontMedium(this));
jobsMain.setTypeface(FontTypeFace.fontMedium(this));
jobsSearch.setTypeface(FontTypeFace.fontMedium(this));
myJobs.setTypeface(FontTypeFace.fontMedium(this));
myprofile.setTypeface(FontTypeFace.fontLight(this));
settings.setTypeface(FontTypeFace.fontLight(this));
support.setTypeface(FontTypeFace.fontLight(this));
logout.setTypeface(FontTypeFace.fontLight(this));
}
private void init() {
activity = this;
/*DisplayMetrics displayMetrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(displayMetrics);
int height = displayMetrics.heightPixels;
int width = displayMetrics.widthPixels;
width = (width/100)*70;
navigationView.setMinimumWidth(width/2);*/
/*setSupportActionBar(toolbar);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawerLayout, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawerLayout.addDrawerListener(toggle);
toggle.syncState();
navigationView.setNavigationItemSelectedListener(this);*/
drawerLayout.setViewScale(Gravity.START, 0.9f);
drawerLayout.setRadius(Gravity.START, 30);
drawerLayout.setViewElevation(Gravity.START, 20);
enable_dropdown();
}
@OnClick({R.id.menu, R.id.dashboard, R.id.connection, R.id.events, R.id.explore, R.id.jobs_main, R.id.down_arrow, R.id.jobs_search,
R.id.my_jobs, R.id.settings, R.id.support, R.id.logout, R.id.user_img, R.id.connection_user_code, R.id.myprofile, R.id.profile_img11,
R.id.profiler_name})
public void onViewClicked(View view) {
switch (view.getId()) {
case R.id.menu:
drawerLayout.openDrawer(Gravity.START);
break;
case R.id.dashboard:
//FirebaseRequest.callApi(activity , true);
bottomNavigation.setVisibility(View.VISIBLE);
bottomNavigationView.getMenu().findItem(R.id.action_home).setChecked(true);
coordinator.setBackground(ContextCompat.getDrawable(DashBoardActivity.this, R.drawable.dashboard_bg_gradient));
fragmentTransferListener(new DashBoardFragment());
drawerLayout.closeDrawer(Gravity.START);
break;
case R.id.connection:
/*Intent intent = new Intent(this, FindConnectionActivity.class);
startActivity(intent);
overridePendingTransition(R.anim.activity_slide_up, R.anim.stay);*/
bottomNavigation.setVisibility(View.GONE);
bottomNavigationView.getMenu().findItem(R.id.action_home).setChecked(true);
coordinator.setBackgroundColor(ContextCompat.getColor(DashBoardActivity.this, R.color.white));
fragmentTransferListener(new FindConnectionFragment());
drawerLayout.closeDrawer(Gravity.START);
//drawerLayout.openDrawer(Gravity.START);
break;
case R.id.events:
/*Intent event_intent = new Intent(this, EventsActivity.class);
startActivity(event_intent);
overridePendingTransition(R.anim.activity_slide_up, R.anim.stay);*/
bottomNavigation.setVisibility(View.GONE);
bottomNavigationView.getMenu().findItem(R.id.action_home).setChecked(true);
coordinator.setBackgroundColor(ContextCompat.getColor(DashBoardActivity.this, R.color.white));
fragmentTransferListener(new EventsFragment());
drawerLayout.closeDrawer(Gravity.START);
break;
case R.id.explore:
/*Intent explore_intent = new Intent(this, ExploreActivity.class);
startActivity(explore_intent);
overridePendingTransition(R.anim.activity_slide_up, R.anim.stay);*/
bottomNavigation.setVisibility(View.GONE);
bottomNavigationView.getMenu().findItem(R.id.action_home).setChecked(true);
coordinator.setBackgroundColor(ContextCompat.getColor(DashBoardActivity.this, R.color.white));
fragmentTransferListener(new ExploreFragment());
drawerLayout.closeDrawer(Gravity.START);
break;
case R.id.jobs_main:
bottomNavigation.setVisibility(View.GONE);
bottomNavigationView.getMenu().findItem(R.id.action_jobs).setChecked(true);
coordinator.setBackgroundColor(ContextCompat.getColor(DashBoardActivity.this, R.color.white));
fragmentTransferListener(new JobsFragment());
drawerLayout.closeDrawer(Gravity.START);
enable_dropdown();
break;
case R.id.down_arrow:
bottomNavigation.setVisibility(View.GONE);
bottomNavigationView.getMenu().findItem(R.id.action_jobs).setChecked(true);
coordinator.setBackgroundColor(ContextCompat.getColor(DashBoardActivity.this, R.color.white));
fragmentTransferListener(new JobsFragment());
drawerLayout.closeDrawer(Gravity.START);
enable_dropdown();
break;
case R.id.jobs_search:
/*Intent jobIntent = new Intent(this, JobSearchActivity.class);
startActivity(jobIntent);
overridePendingTransition(R.anim.activity_slide_up, R.anim.stay);*/
bottomNavigation.setVisibility(View.GONE);
bottomNavigationView.getMenu().findItem(R.id.action_jobs).setChecked(true);
coordinator.setBackgroundColor(ContextCompat.getColor(DashBoardActivity.this, R.color.white));
fragmentTransferListener(new JobsFragment());
drawerLayout.closeDrawer(Gravity.START);
break;
case R.id.my_jobs:
bottomNavigation.setVisibility(View.GONE);
bottomNavigationView.getMenu().findItem(R.id.action_jobs).setChecked(true);
coordinator.setBackgroundColor(ContextCompat.getColor(DashBoardActivity.this, R.color.white));
fragmentTransferListener(new MyJobsActivity());
overridePendingTransition(R.anim.activity_slide_up, R.anim.stay);
drawerLayout.closeDrawer(Gravity.START);
break;
case R.id.myprofile:
Intent intent = new Intent(this, ProfileActivity.class);
intent.putExtra(Constants.UserCode, Constants.getUserCode(this));
intent.putExtra(Constants.UserType, "1");
startActivity(intent);
overridePendingTransition(R.anim.activity_slide_up, R.anim.stay);
break;
case R.id.settings:
bottomNavigation.setVisibility(View.GONE);
Intent changepasswordintent = new Intent(getApplicationContext(), ChangePasswordActivity.class);
startActivity(changepasswordintent);
overridePendingTransition(R.anim.activity_slide_up, R.anim.stay);
break;
case R.id.support:
bottomNavigation.setVisibility(View.GONE);
coordinator.setBackgroundColor(ContextCompat.getColor(DashBoardActivity.this, R.color.white));
fragmentTransferListener(new SupportListActivity());
overridePendingTransition(R.anim.activity_slide_up, R.anim.stay);
drawerLayout.closeDrawer(Gravity.START);
break;
case R.id.logout:
call_logout_api();
break;
case R.id.user_img:
Intent profileIntent = new Intent(this, ProfileActivity.class);
profileIntent.putExtra(Constants.UserCode, Constants.getUserCode(this));
profileIntent.putExtra(Constants.UserType, "1");
startActivity(profileIntent);
overridePendingTransition(R.anim.activity_slide_up, R.anim.stay);
break;
case R.id.profile_img11:
Intent profileIntent2 = new Intent(this, ProfileActivity.class);
profileIntent2.putExtra(Constants.UserCode, Constants.getUserCode(this));
profileIntent2.putExtra(Constants.UserType, "1");
startActivity(profileIntent2);
overridePendingTransition(R.anim.activity_slide_up, R.anim.stay);
break;
case R.id.connection_user_code:
Intent profileIntent1 = new Intent(this, ProfileActivity.class);
profileIntent1.putExtra(Constants.UserCode, Constants.getUserCode(this));
profileIntent1.putExtra(Constants.UserType, "1");
startActivity(profileIntent1);
overridePendingTransition(R.anim.activity_slide_up, R.anim.stay);
break;
case R.id.profiler_name:
Intent intent1 = new Intent(this, ProfileActivity.class);
intent1.putExtra(Constants.UserCode, Constants.getUserCode(this));
intent1.putExtra(Constants.UserType, "1");
startActivity(intent1);
overridePendingTransition(R.anim.activity_slide_up, R.anim.stay);
break;
}
}
private void enable_dropdown() {
/*if (enabled) {*/
jobsSearch.setVisibility(View.VISIBLE);
myJobs.setVisibility(View.VISIBLE);
enabled = true;
/* } else {
jobsSearch.setVisibility(View.VISIBLE);
myJobs.setVisibility(View.VISIBLE);
enabled = true;
}*/
}
@Override
public void fragmentTransferListener(Fragment fragment) {
/*FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.frame_layout, fragment);
fragmentTransaction.commit();*/
FragmentManager fm = getSupportFragmentManager();
Fragment currentFragment = fm.findFragmentById(R.id.frame_layout);
if (currentFragment != null && !fragment.getClass().toString().equals(currentFragment.getTag())) {
getSupportFragmentManager()
.beginTransaction()
.addToBackStack(null)
.replace(R.id.frame_layout, fragment, fragment.getClass().toString()) // add and tag the new fragment
.commit();
}
}
@Override
public void hideSearchView(boolean hideSearch) {
if (hideSearch) {
toolbarSearchView.setVisibility(View.GONE);
} else {
toolbarSearchView.setVisibility(View.VISIBLE);
}
}
boolean doubleBackToExitPressedOnce = false;
@Override
public void onBackPressed() {
if (bottomNavigationView.getSelectedItemId()!=R.id.action_home || bottomNavigationView.getSelectedItemId()==R.id.action_home)
{
bottomNavigationView.setSelectedItemId(R.id.action_home);
}
else
{
if (doubleBackToExitPressedOnce) {
// super.onBackPressed();
Intent a = new Intent(Intent.ACTION_MAIN);
a.addCategory(Intent.CATEGORY_HOME);
a.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(a);
return;
}
this.doubleBackToExitPressedOnce = true;
MyToast.normalMessage("Press Back again to Exit", activity);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
doubleBackToExitPressedOnce=false;
}
}, 2000);
}
}
@Override
public void stateChanged(PostDashboardListResponse response) {
refreshListListener.refreshList(response);
}
public interface RefreshListListener {
void refreshList(PostDashboardListResponse response);
}
public void setRefreshListListener(RefreshListListener refreshListListener) {
this.refreshListListener = refreshListListener;
}
}
| [
"m.chithirai3597@gmail.com"
] | m.chithirai3597@gmail.com |
bc00a3bc8dc4531daabef46152af1374340c1309 | 9ee9a2909c735cba0311cf80380ac3fbd7a98f59 | /interpreter/bytecode/ReadCode.java | 3b97dacd9d3157530c747ae92c10747c7825f418 | [
"MIT"
] | permissive | Andresquint/TheInterpreter | b55e8c2f2f5cb1c5dbe2fb46428a0f67d8981a59 | 050e3df4c13b4e4fb1e1454b0ebda130bcc508f0 | refs/heads/master | 2021-01-14T15:24:17.224452 | 2019-12-30T02:12:34 | 2019-12-30T02:12:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 548 | java | package interpreter.bytecode;
import interpreter.VirtualMachine;
import java.util.ArrayList;
import java.util.Scanner;
public class ReadCode extends ByteCode {
Scanner in = new Scanner(System.in);
@Override
public void init(ArrayList<String> args){
}
@Override
public void execute(VirtualMachine virtual){
System.out.println("Enter a number: ");
int input = in.nextInt();
System.out.println("READ: " + input);
}
@Override
public String toString(){
return "READ";
}
}
| [
"angeloreyes@angelos-air.attlocal.net"
] | angeloreyes@angelos-air.attlocal.net |
652c090760b5079ba687ead4067c6a9fb19d007c | a2f37622367478b5671d815562727da25874421b | /core-customize/hybris/bin/custom/braintree/braintree61fulfilmentprocess/testsrc/com/braintree/test/actions/consignmentfulfilment/SendConsignmentToWarehouse.java | 7737cc3d1de36bfdab6965ada30ab6351e79cee9 | [] | no_license | abhishek-kumar-singh1896/CommercePortal | 3d3c7906547d8387411e0473362ffc6b90762aa8 | d4f505bf52f99452dc8d28c29532b7a9944c2030 | refs/heads/master | 2023-02-10T12:57:43.077800 | 2020-01-10T14:26:24 | 2020-01-10T14:26:24 | 299,261,066 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 552 | java | /*
* [y] hybris Platform
*
* Copyright (c) 2000-2016 SAP SE or an SAP affiliate company.
* All rights reserved.
*
* This software is the confidential and proprietary information of SAP
* ("Confidential Information"). You shall not disclose such Confidential
* Information and shall use it only in accordance with the terms of the
* license agreement you entered into with SAP.
*/
package com.braintree.test.actions.consignmentfulfilment;
/**
*
*/
public class SendConsignmentToWarehouse extends AbstractTestConsActionTemp
{
//empty
}
| [
"leireituarte@enterprisewide.com"
] | leireituarte@enterprisewide.com |
918b3eae148d397b23a902df135f5a38113740cf | ce3f97685948e6c437f12f7410f396b2d5b89c4a | /src/hw8/subscriberodds.java | 70b4a8868ec08a5a79bb0aaff9898b52d812ef81 | [] | no_license | CRadhasai7/hw8 | 181dd6ac897b5e921adaa4e6ca0ddc8d1bf844d6 | 18c9ae60a8b55ce3b43dd475f8c773bfdf7ec49f | refs/heads/master | 2020-05-03T18:17:42.779913 | 2019-04-01T00:52:59 | 2019-04-01T00:52:59 | 178,759,551 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 318 | java | package hw8;
public class subscriberodds implements observer {
public boolean notifyobserver(Event e) {
if (e.GetEventdata()%2 != 0) {
String message = String.format("Event %d is odd: %d", e.GetEventnumber(), e.GetEventdata());
System.out.println(message);
return true;
}
else return false;
}
}
| [
"rc1126@wildcats.unh.edu"
] | rc1126@wildcats.unh.edu |
76b19be7d3556d4aca6e2179a63945236b84ede9 | 2e4d3400514f55911bba28b99327775c380c7b7c | /src/main/java/bad/robot/http/matchers/HttpMessageContentByteArrayMatcher.java | bc99d7ce225f296b9e18fc45761b11a749c57588 | [] | no_license | chrissherratt/simple-http | 1b497d14181f39927764a786629280ff26797ce9 | f65591fe100c71ec167859915feabcb11e1039c1 | refs/heads/master | 2020-12-31T01:48:21.944737 | 2013-09-04T06:58:44 | 2013-09-04T06:58:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,493 | java | /*
* Copyright (c) 2011-2012, bad robot (london) ltd
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package bad.robot.http.matchers;
import bad.robot.http.HttpMessage;
import org.hamcrest.Description;
import org.hamcrest.Factory;
import org.hamcrest.Matcher;
import org.hamcrest.TypeSafeMatcher;
import java.io.UnsupportedEncodingException;
import static org.hamcrest.Matchers.equalTo;
class HttpMessageContentByteArrayMatcher<T extends HttpMessage> extends TypeSafeMatcher<T> {
private final Matcher<byte[]> matcher;
private String characterSet;
@Factory
public static <T extends HttpMessage> Matcher<T> content(Matcher<byte[]> content, String characterSet) {
return new HttpMessageContentByteArrayMatcher(content, characterSet);
}
@Factory
public static <T extends HttpMessage> Matcher<T> content(byte[] content, String characterSet) {
return new HttpMessageContentByteArrayMatcher(equalTo(content), characterSet);
}
public HttpMessageContentByteArrayMatcher(Matcher<byte[]> matcher, String characterSet) {
this.matcher = matcher;
this.characterSet = characterSet;
}
@Override
public boolean matchesSafely(T actual) {
try {
return matcher.matches(actual.getContent().asString().getBytes(characterSet));
} catch (UnsupportedEncodingException e) {
throw new RuntimeException(e);
}
}
@Override
public void describeTo(Description description) {
description.appendText("a ").appendText(HttpMessage.class.getSimpleName()).appendText(" with binary content ");
matcher.describeTo(description);
}
}
| [
"toby.weston@gmail.com"
] | toby.weston@gmail.com |
cb847a1c837aca409723b807f27aaa19ec893be1 | f639ef3fdfb8fd7462dd9ab520b92044cb01ba8a | /app_sharetext/src/main/java/com/example/macbookpro/sharetext/MainActivity.java | 7089a1acb54a86a51bb67bba8a75caaa98519e70 | [] | no_license | elimas10/Some-small-Android-projects | ca0c59e84a861079c77c47b7abcc9ff099ddd9f1 | abee7a2a126bc19d331c8979ce6d04073178c895 | refs/heads/main | 2023-03-22T19:15:54.641221 | 2021-03-22T07:33:53 | 2021-03-22T07:33:53 | 350,247,406 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,150 | java | package com.example.macbookpro.sharetext;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.content.Intent;
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
Button btn;
EditText etText;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn = findViewById(R.id.btn);
etText = findViewById(R.id.etText);
btn.setOnClickListener(this);
etText.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()){
case R.id.btn:
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_TEXT, etText.getText().toString());
intent.setType("text/plain");
startActivity(Intent.createChooser(intent, "Select the app you want to share with"));
}
}
}
| [
"masoumi.elnaz2@gmail.com"
] | masoumi.elnaz2@gmail.com |
098fd067222ca14b2cc0cadcb2a7754284409d04 | 3bf6d4a745e6d4d6f8dfcc83400ae9079da62a58 | /source/gotosea/trunk/gotosea-core/src/main/java/com/hyhl/gotosea/core/util/HttpClientUtil.java | e8f36f403ece586b75e978ed91f896b398c0a9a4 | [] | no_license | soldiers1989/truck | c56d481382b27ea7db51b83be4f8316f2a868089 | ec888b26eeac107369c4ec73f8793b1d0a93900f | refs/heads/master | 2020-03-29T04:28:24.666824 | 2017-09-07T07:47:20 | 2017-09-07T07:47:20 | 149,533,098 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 14,955 | java | package com.hyhl.gotosea.core.util;
import org.apache.http.HttpEntity;
import org.apache.http.HttpStatus;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.config.Registry;
import org.apache.http.config.RegistryBuilder;
import org.apache.http.conn.socket.ConnectionSocketFactory;
import org.apache.http.conn.socket.PlainConnectionSocketFactory;
import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
import org.apache.http.conn.ssl.TrustSelfSignedStrategy;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.StringEntity;
import org.apache.http.entity.mime.MultipartEntityBuilder;
import org.apache.http.entity.mime.content.FileBody;
import org.apache.http.entity.mime.content.StringBody;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.DefaultHttpRequestRetryHandler;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
import org.apache.http.ssl.SSLContextBuilder;
import org.apache.http.util.EntityUtils;
import java.io.File;
import java.io.IOException;
import java.security.KeyManagementException;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
/**
*
* @author H__D
* @date 2016年10月19日 上午11:27:25
*
*/
public class HttpClientUtil {
// utf-8字符编码
public static final String CHARSET_UTF_8 = "utf-8";
// HTTP内容类型。
public static final String CONTENT_TYPE_TEXT_HTML = "text/xml";
// HTTP内容类型。相当于form表单的形式,提交数据
public static final String CONTENT_TYPE_FORM_URL = "application/x-www-form-urlencoded";
// HTTP内容类型。相当于form表单的形式,提交数据
public static final String CONTENT_TYPE_JSON_URL = "application/json;charset=utf-8";
// 连接管理器
private static PoolingHttpClientConnectionManager pool;
// 请求配置
private static RequestConfig requestConfig;
static {
try {
//System.out.println("初始化HttpClientTest~~~开始");
SSLContextBuilder builder = new SSLContextBuilder();
builder.loadTrustMaterial(null, new TrustSelfSignedStrategy());
SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(
builder.build());
// 配置同时支持 HTTP 和 HTPPS
Registry<ConnectionSocketFactory> socketFactoryRegistry = RegistryBuilder.<ConnectionSocketFactory> create().register(
"http", PlainConnectionSocketFactory.getSocketFactory()).register(
"https", sslsf).build();
// 初始化连接管理器
pool = new PoolingHttpClientConnectionManager(
socketFactoryRegistry);
// 将最大连接数增加到200,实际项目最好从配置文件中读取这个值
pool.setMaxTotal(200);
// 设置最大路由
pool.setDefaultMaxPerRoute(2);
// 根据默认超时限制初始化requestConfig
int socketTimeout = 10000;
int connectTimeout = 10000;
int connectionRequestTimeout = 10000;
requestConfig = RequestConfig.custom().setConnectionRequestTimeout(
connectionRequestTimeout).setSocketTimeout(socketTimeout).setConnectTimeout(
connectTimeout).build();
//System.out.println("初始化HttpClientTest~~~结束");
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
} catch (KeyStoreException e) {
e.printStackTrace();
} catch (KeyManagementException e) {
e.printStackTrace();
}
// 设置请求超时时间
requestConfig = RequestConfig.custom().setSocketTimeout(50000).setConnectTimeout(50000)
.setConnectionRequestTimeout(50000).build();
}
public static CloseableHttpClient getHttpClient() {
CloseableHttpClient httpClient = HttpClients.custom()
// 设置连接池管理
.setConnectionManager(pool)
// 设置请求配置
.setDefaultRequestConfig(requestConfig)
// 设置重试次数
.setRetryHandler(new DefaultHttpRequestRetryHandler(0, false))
.build();
return httpClient;
}
/**
* 发送Post请求
*
* @param httpPost
* @return
*/
private static String sendHttpPost(HttpPost httpPost) {
CloseableHttpClient httpClient = null;
CloseableHttpResponse response = null;
// 响应内容
String responseContent = null;
try {
// 创建默认的httpClient实例.
httpClient = getHttpClient();
// 配置请求信息
httpPost.setConfig(requestConfig);
// 执行请求
response = httpClient.execute(httpPost);
// 得到响应实例
HttpEntity entity = response.getEntity();
// 可以获得响应头
// Header[] headers = response.getHeaders(HttpHeaders.CONTENT_TYPE);
// for (Header header : headers) {
// System.out.println(header.getName());
// }
// 得到响应类型
// System.out.println(ContentType.getOrDefault(response.getEntity()).getMimeType());
// 判断响应状态
if (response.getStatusLine().getStatusCode() >= 300) {
throw new Exception(
"HTTP Request is not success, Response code is " + response.getStatusLine().getStatusCode());
}
if (HttpStatus.SC_OK == response.getStatusLine().getStatusCode()) {
responseContent = EntityUtils.toString(entity, CHARSET_UTF_8);
EntityUtils.consume(entity);
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
// 释放资源
if (response != null) {
response.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
return responseContent;
}
/**
* 发送Get请求
*
* @param httpGet
* @return
*/
private static String sendHttpGet(HttpGet httpGet) {
CloseableHttpClient httpClient = null;
CloseableHttpResponse response = null;
// 响应内容
String responseContent = null;
try {
// 创建默认的httpClient实例.
httpClient = getHttpClient();
// 配置请求信息
httpGet.setConfig(requestConfig);
// 执行请求
response = httpClient.execute(httpGet);
// 得到响应实例
HttpEntity entity = response.getEntity();
// 可以获得响应头
// Header[] headers = response.getHeaders(HttpHeaders.CONTENT_TYPE);
// for (Header header : headers) {
// System.out.println(header.getName());
// }
// 得到响应类型
// System.out.println(ContentType.getOrDefault(response.getEntity()).getMimeType());
// 判断响应状态
if (response.getStatusLine().getStatusCode() >= 300) {
throw new Exception(
"HTTP Request is not success, Response code is " + response.getStatusLine().getStatusCode());
}
if (HttpStatus.SC_OK == response.getStatusLine().getStatusCode()) {
responseContent = EntityUtils.toString(entity, CHARSET_UTF_8);
EntityUtils.consume(entity);
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
// 释放资源
if (response != null) {
response.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
return responseContent;
}
/**
* 发送 post请求
*
* @param httpUrl
* 地址
*/
public static String sendHttpPost(String httpUrl) {
// 创建httpPost
HttpPost httpPost = new HttpPost(httpUrl);
return sendHttpPost(httpPost);
}
/**
* 发送 get请求
*
* @param httpUrl
*/
public static String sendHttpGet(String httpUrl) {
// 创建get请求
HttpGet httpGet = new HttpGet(httpUrl);
return sendHttpGet(httpGet);
}
/**
* 发送 post请求(带文件)
*
* @param httpUrl
* 地址
* @param maps
* 参数
* @param fileLists
* 附件
*/
public static String sendHttpPost(String httpUrl, Map<String, String> maps, List<File> fileLists) {
HttpPost httpPost = new HttpPost(httpUrl);// 创建httpPost
MultipartEntityBuilder meBuilder = MultipartEntityBuilder.create();
if (maps != null) {
for (String key : maps.keySet()) {
meBuilder.addPart(key, new StringBody(maps.get(key), ContentType.TEXT_PLAIN));
}
}
if (fileLists != null) {
for (File file : fileLists) {
FileBody fileBody = new FileBody(file);
meBuilder.addPart("files", fileBody);
}
}
HttpEntity reqEntity = meBuilder.build();
httpPost.setEntity(reqEntity);
return sendHttpPost(httpPost);
}
/**
* 发送 post请求
*
* @param httpUrl
* 地址
* @param params
* 参数(格式:key1=value1&key2=value2)
*
*/
public static String sendHttpPost(String httpUrl, String params) {
HttpPost httpPost = new HttpPost(httpUrl);// 创建httpPost
try {
// 设置参数
if (params != null && params.trim().length() > 0) {
StringEntity stringEntity = new StringEntity(params, "UTF-8");
stringEntity.setContentType(CONTENT_TYPE_FORM_URL);
httpPost.setEntity(stringEntity);
}
} catch (Exception e) {
e.printStackTrace();
}
return sendHttpPost(httpPost);
}
/**
* 发送 post请求
*
* @param maps
* 参数
*/
public static String sendHttpPost(String httpUrl, Map<String, String> maps) {
String parem = convertStringParamter(maps);
return sendHttpPost(httpUrl, parem);
}
/**
* 发送 post请求 发送json数据
*
* @param httpUrl
* 地址
* @param paramsJson
* 参数(格式 json)
*
*/
public static String sendHttpPostJson(String httpUrl, String paramsJson) {
HttpPost httpPost = new HttpPost(httpUrl);// 创建httpPost
try {
// 设置参数
if (paramsJson != null && paramsJson.trim().length() > 0) {
StringEntity stringEntity = new StringEntity(paramsJson, "UTF-8");
stringEntity.setContentType(CONTENT_TYPE_JSON_URL);
httpPost.setEntity(stringEntity);
}
} catch (Exception e) {
e.printStackTrace();
}
return sendHttpPost(httpPost);
}
/**
* 发送 post请求 发送xml数据
*
* @param httpUrl 地址
* @param paramsXml 参数(格式 Xml)
*
*/
public static String sendHttpPostXml(String httpUrl, String paramsXml) {
HttpPost httpPost = new HttpPost(httpUrl);// 创建httpPost
try {
// 设置参数
if (paramsXml != null && paramsXml.trim().length() > 0) {
StringEntity stringEntity = new StringEntity(paramsXml, "UTF-8");
stringEntity.setContentType(CONTENT_TYPE_TEXT_HTML);
httpPost.setEntity(stringEntity);
}
} catch (Exception e) {
e.printStackTrace();
}
return sendHttpPost(httpPost);
}
/**
* 将map集合的键值对转化成:key1=value1&key2=value2 的形式
*
* @param parameterMap
* 需要转化的键值对集合
* @return 字符串
*/
public static String convertStringParamter(Map parameterMap) {
StringBuffer parameterBuffer = new StringBuffer();
if (parameterMap != null) {
Iterator iterator = parameterMap.keySet().iterator();
String key = null;
String value = null;
while (iterator.hasNext()) {
key = (String) iterator.next();
if (parameterMap.get(key) != null) {
value = (String) parameterMap.get(key);
} else {
value = "";
}
parameterBuffer.append(key).append("=").append(value);
if (iterator.hasNext()) {
parameterBuffer.append("&");
}
}
}
return parameterBuffer.toString();
}
public static void main(String[] args) throws Exception {
System.out.println(sendHttpGet("http://www.baidu.com"));
}
}
| [
"joker2580136@126.com"
] | joker2580136@126.com |
fa0abebb5ed9cf2c78c4786c980b3790af790a39 | 7bced7954c2238bd42a080aa4303173ebf435a0d | /webgymapp/src/main/java/com/app/webgymapp/service/GymSubscriptionServiceImpl.java | e4edbe8de91e8807749ac456bf5669a60714229d | [] | no_license | teodorabrsvn/Licenta | 960d60410ff9312f28200db573b088d809357437 | 834de28914364ccf7b2477cbd10c4570dca509dd | refs/heads/master | 2020-04-25T05:27:06.190029 | 2019-04-22T20:31:39 | 2019-04-22T20:31:39 | 172,543,672 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,328 | java | package com.app.webgymapp.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.app.webgymapp.dao.GymSubscriptionDao;
import com.app.webgymapp.model.GymSubscription;
@Service
public class GymSubscriptionServiceImpl implements GymSubscriptionService{
@Autowired
private GymSubscriptionDao gymSubscriptionDao;
@Override
public GymSubscription saveGymSubscription(GymSubscription gymSubscription) {
// TODO Auto-generated method stub
return gymSubscriptionDao.save(gymSubscription);
}
@Override
public GymSubscription updateGymSubscription(GymSubscription gymSubscription) {
// TODO Auto-generated method stub
return gymSubscriptionDao.saveAndFlush(gymSubscription);
}
@Override
public List<GymSubscription> getAllGymSubscriptionList() {
// TODO Auto-generated method stub
return gymSubscriptionDao.findAll();
}
@Override
public GymSubscription getGymSubscription(Long gymSubscriptionId) {
// TODO Auto-generated method stub
return gymSubscriptionDao.findOne(gymSubscriptionId);
}
@Override
public void deleteGymSubscription(Long gymSubscriptionId) {
// TODO Auto-generated method stub
gymSubscriptionDao.delete(gymSubscriptionId);
}
}
| [
"37157932+teodorabrsvn@users.noreply.github.com"
] | 37157932+teodorabrsvn@users.noreply.github.com |
4f6dedb2903dd4ead8731321190beb52f9f56160 | 9bd29dc00a259184035eda2358b776539f675b20 | /api-gateway/gateway-zuul/src/test/java/com/shaun/gateway/gatewayzuul/GatewayZuulApplicationTests.java | abcb4100091a4841bbd8d16a47f5700880c8f4cc | [] | no_license | ShaunChow/shaun-spring-cloud | 82de39c1ed7044b3e20339f1b2b1dfec044b2f04 | 2a228ba53e961079fc13a1d9c5d0559e34edfbab | refs/heads/master | 2021-05-18T23:52:03.171580 | 2021-01-24T15:33:05 | 2021-01-24T15:33:05 | 251,484,192 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 235 | java | package com.shaun.gateway.gatewayzuul;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class GatewayZuulApplicationTests {
@Test
void contextLoads() {
}
}
| [
"shaun.zhou@aifmworld.com"
] | shaun.zhou@aifmworld.com |
67ee272d5682c340d2010f385f3937750c8a674f | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/18/18_57bb3115e134d661332b955c5d68c9498e03664e/Elf/18_57bb3115e134d661332b955c5d68c9498e03664e_Elf_t.java | f3a9a2c0529203e05cc97dfe78df27a3396009b3 | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 35,060 | java | /*******************************************************************************
* Copyright (c) 2000, 2004 QNX Software Systems and others. All rights
* reserved. This program and the accompanying materials are made available
* under the terms of the Common Public License v1.0 which accompanies this
* distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors: QNX Software Systems - Initial API and implementation
******************************************************************************/
package org.eclipse.cdt.utils.elf;
import java.io.EOFException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Comparator;
import org.eclipse.cdt.core.CCorePlugin;
import org.eclipse.cdt.core.IAddress;
import org.eclipse.cdt.core.IAddressFactory;
import org.eclipse.cdt.utils.Addr32;
import org.eclipse.cdt.utils.Addr32Factory;
import org.eclipse.cdt.utils.Addr64;
import org.eclipse.cdt.utils.Addr64Factory;
import org.eclipse.cdt.utils.ERandomAccessFile;
// test checkin
public class Elf {
public final static int ELF32_ADDR_SIZE = 4;
public final static int ELF32_OFF_SIZE = 4;
public final static int ELF64_ADDR_SIZE = 8;
public final static int ELF64_OFF_SIZE = 8;
protected ERandomAccessFile efile;
protected ELFhdr ehdr;
protected Section[] sections;
protected String file;
protected byte[] section_strtab;
private int syms = 0;
private Symbol[] symbols;
private Symbol[] symtab_symbols;
private Section symtab_sym;
private Symbol[] dynsym_symbols;
private Section dynsym_sym;
protected String EMPTY_STRING = ""; //$NON-NLS-1$
public class ELFhdr {
/* e_ident offsets */
public final static int EI_MAG0 = 0;
public final static int EI_MAG1 = 1;
public final static int EI_MAG2 = 2;
public final static int EI_MAG3 = 3;
public final static int EI_CLASS = 4;
public final static int EI_DATA = 5;
public final static int EI_VERSION = 6;
public final static int EI_PAD = 7;
public final static int EI_NDENT = 16;
/* e_ident[EI_CLASS] */
public final static int ELFCLASSNONE = 0;
public final static int ELFCLASS32 = 1;
public final static int ELFCLASS64 = 2;
/* e_ident[EI_DATA] */
public final static int ELFDATANONE = 0;
public final static int ELFDATA2LSB = 1;
public final static int ELFDATA2MSB = 2;
/* values of e_type */
public final static int ET_NONE = 0;
public final static int ET_REL = 1;
public final static int ET_EXEC = 2;
public final static int ET_DYN = 3;
public final static int ET_CORE = 4;
public final static int ET_LOPROC = 0xff00;
public final static int ET_HIPROC = 0xffff;
/* values of e_machine */
public final static int EM_NONE = 0;
public final static int EM_M32 = 1;
public final static int EM_SPARC = 2;
public final static int EM_386 = 3;
public final static int EM_68K = 4;
public final static int EM_88K = 5;
public final static int EM_486 = 6;
public final static int EM_860 = 7;
public final static int EM_MIPS = 8;
public final static int EM_MIPS_RS3_LE = 10;
public final static int EM_RS6000 = 11;
public final static int EM_PARISC = 15;
public final static int EM_nCUBE = 16;
public final static int EM_VPP550 = 17;
public final static int EM_SPARC32PLUS = 18;
public final static int EM_PPC = 20;
public final static int EM_PPC64 = 21;
public final static int EM_ARM = 40;
public final static int EM_SH = 42;
public final static int EM_SPARCV9 = 43;
public final static int EM_TRICORE = 44;
public final static int EM_H8_300 = 46;
public final static int EM_H8_300H = 47;
public final static int EM_IA_64 = 50;
public final static int EM_X86_64 = 62;
public final static int EM_ST100 = 60;
public final static int EM_AVR = 83;
public final static int EM_FR30 = 84; /* Fujitsu FR30 */
public final static int EM_V850 = 87;
public final static int EM_M32R = 88;
public final static int EM_MN10300 = 89;
public final static int EM_MN10200 = 90;
public final static int EM_MSP430 = 105;
public final static int EM_EXCESS = 111;
public final static int EM_NIOSII = 113;
public final static int EM_C166 = 116;
public final static int EM_M16C = 117;
public final static int EM_NIOS = 0xFEBB;
public final static int EM_CYGNUS_POWERPC = 0x9025;
public final static int EM_CYGNUS_M32R = 0x9041;
public final static int EM_CYGNUS_V850 = 0x9080;
public final static int EM_CYGNUS_MN10200 = 0xdead;
public final static int EM_CYGNUS_MN10300 = 0xbeef;
public final static int EM_CYGNUS_FR30 = 0x3330;
public final static int EM_XSTORMY16 = 0xad45;
public final static int EM_CYGNUS_FRV = 0x5441;
public final static int EM_IQ2000 = 0xFEBA;
public static final int EM_XILINX_MICROBLAZE = 0xbaab;
public byte e_ident[] = new byte[EI_NDENT];
public int e_type; /* file type (Elf32_Half) */
public int e_machine; /* machine type (Elf32_Half) */
public long e_version; /* version number (Elf32_Word) */
public IAddress e_entry; /* entry point (Elf32_Addr) */
public long e_phoff; /* Program hdr offset (Elf32_Off) */
public long e_shoff; /* Section hdr offset (Elf32_Off) */
public long e_flags; /* Processor flags (Elf32_Word) */
public short e_ehsize; /* sizeof ehdr (Elf32_Half) */
public short e_phentsize; /* Program header entry size (Elf32_Half) */
public short e_phnum; /* Number of program headers (Elf32_Half) */
public short e_shentsize; /* Section header entry size (Elf32_Half) */
public short e_shnum; /* Number of section headers (Elf32_Half) */
public short e_shstrndx; /* String table index (Elf32_Half) */
protected ELFhdr() throws IOException {
efile.seek(0);
efile.readFully(e_ident);
if (e_ident[ELFhdr.EI_MAG0] != 0x7f || e_ident[ELFhdr.EI_MAG1] != 'E' || e_ident[ELFhdr.EI_MAG2] != 'L'
|| e_ident[ELFhdr.EI_MAG3] != 'F')
throw new IOException(CCorePlugin.getResourceString("Util.exception.notELF")); //$NON-NLS-1$
efile.setEndian(e_ident[ELFhdr.EI_DATA] == ELFhdr.ELFDATA2LSB);
e_type = efile.readShortE();
e_machine = efile.readShortE();
e_version = efile.readIntE();
switch (e_ident[ELFhdr.EI_CLASS]) {
case ELFhdr.ELFCLASS32 : {
byte[] addrArray = new byte[ELF32_ADDR_SIZE];
efile.readFullyE(addrArray);
e_entry = new Addr32(addrArray);
e_phoff = efile.readIntE();
e_shoff = efile.readIntE();
}
break;
case ELFhdr.ELFCLASS64 : {
byte[] addrArray = new byte[ELF64_ADDR_SIZE];
efile.readFullyE(addrArray);
e_entry = new Addr64(addrArray);
e_phoff = readUnsignedLong(efile);
e_shoff = readUnsignedLong(efile);
}
break;
case ELFhdr.ELFCLASSNONE :
default :
throw new IOException("Unknown ELF class " + e_ident[ELFhdr.EI_CLASS]); //$NON-NLS-1$
}
e_flags = efile.readIntE();
e_ehsize = efile.readShortE();
e_phentsize = efile.readShortE();
e_phnum = efile.readShortE();
e_shentsize = efile.readShortE();
e_shnum = efile.readShortE();
e_shstrndx = efile.readShortE();
}
protected ELFhdr(byte[] bytes) throws IOException {
if (bytes.length <= e_ident.length) {
throw new EOFException(CCorePlugin.getResourceString("Util.exception.notELF")); //$NON-NLS-1$
}
System.arraycopy(bytes, 0, e_ident, 0, e_ident.length);
if (e_ident[ELFhdr.EI_MAG0] != 0x7f || e_ident[ELFhdr.EI_MAG1] != 'E' || e_ident[ELFhdr.EI_MAG2] != 'L'
|| e_ident[ELFhdr.EI_MAG3] != 'F')
throw new IOException(CCorePlugin.getResourceString("Util.exception.notELF")); //$NON-NLS-1$
boolean isle = (e_ident[ELFhdr.EI_DATA] == ELFhdr.ELFDATA2LSB);
int offset = e_ident.length;
e_type = makeShort(bytes, offset, isle);
offset += 2;
e_machine = makeShort(bytes, offset, isle);
offset += 2;
e_version = makeInt(bytes, offset, isle);
offset += 4;
switch (e_ident[ELFhdr.EI_CLASS]) {
case ELFhdr.ELFCLASS32 : {
byte[] addrArray = new byte[ELF32_ADDR_SIZE];
System.arraycopy(bytes, offset, addrArray, 0, ELF32_ADDR_SIZE);
offset += ELF32_ADDR_SIZE;
e_entry = new Addr32(addrArray);
e_phoff = makeInt(bytes, offset, isle);
offset += ELF32_OFF_SIZE;
e_shoff = makeInt(bytes, offset, isle);
offset += ELF32_OFF_SIZE;
}
break;
case ELFhdr.ELFCLASS64 : {
byte[] addrArray = new byte[ELF64_ADDR_SIZE];
System.arraycopy(bytes, offset, addrArray, 0, ELF64_ADDR_SIZE);
offset += ELF64_ADDR_SIZE;
e_entry = new Addr64(addrArray);
e_phoff = makeUnsignedLong(bytes, offset, isle);
offset += ELF64_OFF_SIZE;
e_shoff = makeUnsignedLong(bytes, offset, isle);
offset += ELF64_OFF_SIZE;
}
break;
case ELFhdr.ELFCLASSNONE :
default :
throw new IOException("Unknown ELF class " + e_ident[ELFhdr.EI_CLASS]); //$NON-NLS-1$
}
e_flags = makeInt(bytes, offset, isle);
offset += 4;
e_ehsize = makeShort(bytes, offset, isle);
offset += 2;
e_phentsize = makeShort(bytes, offset, isle);
offset += 2;
e_phnum = makeShort(bytes, offset, isle);
offset += 2;
e_shentsize = makeShort(bytes, offset, isle);
offset += 2;
e_shnum = makeShort(bytes, offset, isle);
offset += 2;
e_shstrndx = makeShort(bytes, offset, isle);
offset += 2;
}
private final short makeShort(byte[] val, int offset, boolean isle) throws IOException {
if (val.length < offset + 2)
throw new IOException();
if (isle) {
return (short) ( (val[offset + 1] << 8) + val[offset + 0]);
}
return (short) ( (val[offset + 0] << 8) + val[offset + 1]);
}
private final long makeInt(byte[] val, int offset, boolean isle) throws IOException {
if (val.length < offset + 4)
throw new IOException();
if (isle) {
return ( (val[offset + 3] << 24) + (val[offset + 2] << 16) + (val[offset + 1] << 8) + val[offset + 0]);
}
return ( (val[offset + 0] << 24) + (val[offset + 1] << 16) + (val[offset + 2] << 8) + val[offset + 3]);
}
private final long makeLong(byte[] val, int offset, boolean isle) throws IOException {
long result = 0;
int shift = 0;
if (isle)
for (int i = 7; i >= 0; i--) {
shift = i * 8;
result += ( ((long)val[offset + i]) << shift) & (0xffL << shift);
}
else
for (int i = 0; i <= 7; i++) {
shift = (7 - i) * 8;
result += ( ((long)val[offset + i]) << shift) & (0xffL << shift);
}
return result;
}
private final long makeUnsignedLong(byte[] val, int offset, boolean isle) throws IOException {
long result = makeLong(val, offset, isle);
if (result < 0) {
throw new IOException("Maximal file offset is " + Long.toHexString(Long.MAX_VALUE) + //$NON-NLS-1$
" given offset is " + Long.toHexString(result)); //$NON-NLS-1$
}
return result;
}
}
public class Section {
/* sh_type */
public final static int SHT_NULL = 0;
public final static int SHT_PROGBITS = 1;
public final static int SHT_SYMTAB = 2;
public final static int SHT_STRTAB = 3;
public final static int SHT_RELA = 4;
public final static int SHT_HASH = 5;
public final static int SHT_DYNAMIC = 6;
public final static int SHT_NOTE = 7;
public final static int SHT_NOBITS = 8;
public final static int SHT_REL = 9;
public final static int SHT_SHLIB = 10;
public final static int SHT_DYNSYM = 11;
public final static int SHT_LOPROC = 0x70000000;
/* sh_flags */
public final static int SHF_WRITE = 1;
public final static int SHF_ALLOC = 2;
public final static int SHF_EXECINTR = 4;
public long sh_name;
public long sh_type;
public long sh_flags;
public IAddress sh_addr;
public long sh_offset;
public long sh_size;
public long sh_link;
public long sh_info;
public long sh_addralign;
public long sh_entsize;
public byte[] loadSectionData() throws IOException {
byte[] data = new byte[(int)sh_size];
efile.seek(sh_offset);
efile.read(data);
return data;
}
public String toString() {
try {
if (section_strtab == null) {
if (ehdr.e_shstrndx > sections.length || ehdr.e_shstrndx < 0)
return EMPTY_STRING;
int size = (int)sections[ehdr.e_shstrndx].sh_size;
if (size <= 0 || size > efile.length())
return EMPTY_STRING;
section_strtab = new byte[size];
efile.seek(sections[ehdr.e_shstrndx].sh_offset);
efile.read(section_strtab);
}
int str_size = 0;
if (sh_name > section_strtab.length) {
return EMPTY_STRING;
}
while (section_strtab[(int)sh_name + str_size] != 0)
str_size++;
return new String(section_strtab, (int)sh_name, str_size);
} catch (IOException e) {
return EMPTY_STRING;
}
}
}
protected String string_from_elf_section(Elf.Section section, int index) throws IOException {
StringBuffer str = new StringBuffer();
byte tmp;
if (index > section.sh_size) {
return EMPTY_STRING;
}
efile.seek(section.sh_offset + index);
while (true) {
tmp = efile.readByte();
if (tmp == 0)
break;
str.append((char)tmp);
}
return str.toString();
}
public class Symbol implements Comparable {
/* Symbol bindings */
public final static int STB_LOCAL = 0;
public final static int STB_GLOBAL = 1;
public final static int STB_WEAK = 2;
/* Symbol type */
public final static int STT_NOTYPE = 0;
public final static int STT_OBJECT = 1;
public final static int STT_FUNC = 2;
public final static int STT_SECTION = 3;
public final static int STT_FILE = 4;
/* Special Indexes */
public final static int SHN_UNDEF = 0;
public final static int SHN_LORESERVE = 0xffffff00;
public final static int SHN_LOPROC = 0xffffff00;
public final static int SHN_HIPROC = 0xffffff1f;
public final static int SHN_LOOS = 0xffffff20;
public final static int SHN_HIOS = 0xffffff3f;
public final static int SHN_ABS = 0xfffffff1;
public final static int SHN_COMMON = 0xfffffff2;
public final static int SHN_XINDEX = 0xffffffff;
public final static int SHN_HIRESERVE = 0xffffffff;
/* NOTE: 64 bit and 32 bit ELF sections has different order */
public long st_name;
public IAddress st_value;
public long st_size;
public short st_info;
public short st_other;
public short st_shndx;
private String name = null;
private Section sym_section;
public Symbol(Section section) {
sym_section = section;
}
public int st_type() {
return st_info & 0xf;
}
public int st_bind() {
return (st_info >> 4) & 0xf;
}
public int compareTo(Object obj) {
/*
* long thisVal = 0; long anotherVal = 0; if ( obj instanceof Symbol ) {
* Symbol sym = (Symbol)obj; thisVal = this.st_value; anotherVal =
* sym.st_value; } else if ( obj instanceof Long ) { Long val =
* (Long)obj; anotherVal = val.longValue(); thisVal = this.st_value; }
* return (thisVal <anotherVal ? -1 : (thisVal==anotherVal ? 0 :
* 1));
*/
return this.st_value.compareTo( ((Symbol)obj).st_value);
}
public String toString() {
if (name == null) {
try {
Section sections[] = getSections();
Section symstr = sections[(int)sym_section.sh_link];
name = string_from_elf_section(symstr, (int)st_name);
} catch (IOException e) {
return EMPTY_STRING;
}
}
return name;
}
}
/**
* We have to implement a separate compararator since when we do the binary
* search down below we are using a Long and a Symbol object and the Long
* doesn't know how to compare against a Symbol so if we compare Symbol vs
* Long it is ok, but not if we do Long vs Symbol.
*/
class SymbolComparator implements Comparator {
IAddress val1, val2;
public int compare(Object o1, Object o2) {
if (o1 instanceof IAddress) {
val1 = (IAddress)o1;
} else if (o1 instanceof Symbol) {
val1 = ((Symbol)o1).st_value;
} else {
return -1;
}
if (o2 instanceof IAddress) {
val2 = (IAddress)o2;
} else if (o2 instanceof Symbol) {
val2 = ((Symbol)o2).st_value;
} else {
return -1;
}
return val1.compareTo(val2);
}
}
public class PHdr {
public final static int PT_NULL = 0;
public final static int PT_LOAD = 1;
public final static int PT_DYNAMIC = 2;
public final static int PT_INTERP = 3;
public final static int PT_NOTE = 4;
public final static int PT_SHLIB = 5;
public final static int PT_PHDR = 6;
public final static int PF_X = 1;
public final static int PF_W = 2;
public final static int PF_R = 4;
/* NOTE: 64 bit and 32 bit ELF have different order and size of elements */
public long p_type;
public long p_offset;
public IAddress p_vaddr;
public IAddress p_paddr;
public long p_filesz;
public long p_memsz;
public long p_flags;
public long p_align;
}
public PHdr[] getPHdrs() throws IOException {
if (ehdr.e_phnum == 0) {
return new PHdr[0];
}
efile.seek(ehdr.e_phoff);
PHdr phdrs[] = new PHdr[ehdr.e_phnum];
for (int i = 0; i < ehdr.e_phnum; i++) {
phdrs[i] = new PHdr();
switch (ehdr.e_ident[ELFhdr.EI_CLASS]) {
case ELFhdr.ELFCLASS32 : {
byte[] addrArray = new byte[ELF32_ADDR_SIZE];
phdrs[i].p_type = efile.readIntE();
phdrs[i].p_offset = efile.readIntE();
efile.readFullyE(addrArray);
phdrs[i].p_vaddr = new Addr32(addrArray);
efile.readFullyE(addrArray);
phdrs[i].p_paddr = new Addr32(addrArray);
phdrs[i].p_filesz = efile.readIntE();
phdrs[i].p_memsz = efile.readIntE();
phdrs[i].p_flags = efile.readIntE();
phdrs[i].p_align = efile.readIntE();
}
break;
case ELFhdr.ELFCLASS64 : {
byte[] addrArray = new byte[ELF64_ADDR_SIZE];
phdrs[i].p_type = efile.readIntE();
phdrs[i].p_flags = efile.readIntE();
phdrs[i].p_offset = readUnsignedLong(efile);
efile.readFullyE(addrArray);
phdrs[i].p_vaddr = new Addr64(addrArray);
efile.readFullyE(addrArray);
phdrs[i].p_paddr = new Addr64(addrArray);
phdrs[i].p_filesz = readUnsignedLong(efile);
phdrs[i].p_memsz = readUnsignedLong(efile);
phdrs[i].p_align = readUnsignedLong(efile);
}
break;
case ELFhdr.ELFCLASSNONE :
default :
throw new IOException("Unknown ELF class " + ehdr.e_ident[ELFhdr.EI_CLASS]); //$NON-NLS-1$
}
}
return phdrs;
}
public class Dynamic {
public final static int DYN_ENT_SIZE_32 = 8;
public final static int DYN_ENT_SIZE_64 = 16;
public final static int DT_NULL = 0;
public final static int DT_NEEDED = 1;
public final static int DT_PLTRELSZ = 2;
public final static int DT_PLTGOT = 3;
public final static int DT_HASH = 4;
public final static int DT_STRTAB = 5;
public final static int DT_SYMTAB = 6;
public final static int DT_RELA = 7;
public final static int DT_RELASZ = 8;
public final static int DT_RELAENT = 9;
public final static int DT_STRSZ = 10;
public final static int DT_SYMENT = 11;
public final static int DT_INIT = 12;
public final static int DT_FINI = 13;
public final static int DT_SONAME = 14;
public final static int DT_RPATH = 15;
public long d_tag;
public long d_val;
private Section section;
private String name;
protected Dynamic(Section section) {
this.section = section;
}
public String toString() {
if (name == null) {
switch ((int)d_tag) {
case DT_NEEDED :
case DT_SONAME :
case DT_RPATH :
try {
Section symstr = sections[(int)section.sh_link];
name = string_from_elf_section(symstr, (int)d_val);
} catch (IOException e) {
name = EMPTY_STRING;
}
break;
default :
name = EMPTY_STRING;
}
}
return name;
}
}
public Dynamic[] getDynamicSections(Section section) throws IOException {
if (section.sh_type != Section.SHT_DYNAMIC) {
return new Dynamic[0];
}
ArrayList dynList = new ArrayList();
efile.seek(section.sh_offset);
int off = 0;
// We must assume the section is a table ignoring the sh_entsize as it
// is not
// set for MIPS.
while (off < section.sh_size) {
Dynamic dynEnt = new Dynamic(section);
switch (ehdr.e_ident[ELFhdr.EI_CLASS]) {
case ELFhdr.ELFCLASS32 : {
dynEnt.d_tag = efile.readIntE();
dynEnt.d_val = efile.readIntE();
off += Dynamic.DYN_ENT_SIZE_32;
}
break;
case ELFhdr.ELFCLASS64 : {
dynEnt.d_tag = efile.readLongE();
dynEnt.d_val = efile.readLongE();
off += Dynamic.DYN_ENT_SIZE_64;
}
break;
case ELFhdr.ELFCLASSNONE :
default :
throw new IOException("Unknown ELF class " + ehdr.e_ident[ELFhdr.EI_CLASS]); //$NON-NLS-1$
}
if (dynEnt.d_tag != Dynamic.DT_NULL)
dynList.add(dynEnt);
}
return (Dynamic[])dynList.toArray(new Dynamic[0]);
}
private void commonSetup(String file, long offset) throws IOException {
try {
efile = new ERandomAccessFile(file, "r"); //$NON-NLS-1$
efile.setFileOffset(offset);
ehdr = new ELFhdr();
this.file = file;
} finally {
if (ehdr == null) {
dispose();
}
}
}
//A hollow entry, to be used with caution in controlled situations
protected Elf() {
}
public Elf(String file, long offset) throws IOException {
commonSetup(file, offset);
}
public Elf(String file) throws IOException {
commonSetup(file, 0);
}
public ELFhdr getELFhdr() throws IOException {
return ehdr;
}
public class Attribute {
public static final int ELF_TYPE_EXE = 1;
public static final int ELF_TYPE_SHLIB = 2;
public static final int ELF_TYPE_OBJ = 3;
public static final int ELF_TYPE_CORE = 4;
public static final int DEBUG_TYPE_NONE = 0;
public static final int DEBUG_TYPE_STABS = 1;
public static final int DEBUG_TYPE_DWARF = 2;
String cpu;
int type;
int debugType;
boolean bDebug;
boolean isle;
IAddressFactory addressFactory;
public String getCPU() {
return cpu;
}
public int getType() {
return type;
}
public boolean hasDebug() {
return debugType != DEBUG_TYPE_NONE;
}
public int getDebugType() {
return debugType;
}
public boolean isLittleEndian() {
return isle;
}
public IAddressFactory getAddressFactory() {
return addressFactory;
}
}
public Attribute getAttributes() throws IOException {
Attribute attrib = new Attribute();
switch (ehdr.e_type) {
case Elf.ELFhdr.ET_CORE :
attrib.type = Attribute.ELF_TYPE_CORE;
break;
case Elf.ELFhdr.ET_EXEC :
attrib.type = Attribute.ELF_TYPE_EXE;
break;
case Elf.ELFhdr.ET_REL :
attrib.type = Attribute.ELF_TYPE_OBJ;
break;
case Elf.ELFhdr.ET_DYN :
attrib.type = Attribute.ELF_TYPE_SHLIB;
break;
}
switch (ehdr.e_machine) {
case Elf.ELFhdr.EM_386 :
case Elf.ELFhdr.EM_486 :
attrib.cpu = "x86"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_68K :
attrib.cpu = "m68k"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_PPC :
case Elf.ELFhdr.EM_CYGNUS_POWERPC :
case Elf.ELFhdr.EM_RS6000 :
attrib.cpu = "ppc"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_PPC64 :
attrib.cpu = "ppc64"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_SH :
attrib.cpu = "sh"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_ARM :
attrib.cpu = "arm"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_MIPS_RS3_LE :
case Elf.ELFhdr.EM_MIPS :
attrib.cpu = "mips"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_SPARC32PLUS :
case Elf.ELFhdr.EM_SPARC :
case Elf.ELFhdr.EM_SPARCV9 :
attrib.cpu = "sparc"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_H8_300 :
case Elf.ELFhdr.EM_H8_300H :
attrib.cpu = "h8300"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_V850 :
case Elf.ELFhdr.EM_CYGNUS_V850 :
attrib.cpu = "v850"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_MN10300 :
case Elf.ELFhdr.EM_CYGNUS_MN10300 :
attrib.cpu = "mn10300"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_MN10200 :
case Elf.ELFhdr.EM_CYGNUS_MN10200 :
attrib.cpu = "mn10200"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_M32R :
attrib.cpu = "m32r"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_FR30 :
case Elf.ELFhdr.EM_CYGNUS_FR30 :
attrib.cpu = "fr30"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_XSTORMY16 :
attrib.cpu = "xstormy16"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_CYGNUS_FRV :
attrib.cpu = "frv"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_IQ2000 :
attrib.cpu = "iq2000"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_EXCESS :
attrib.cpu = "excess"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_NIOSII :
attrib.cpu = "alteranios2"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_NIOS :
attrib.cpu = "alteranios"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_IA_64 :
attrib.cpu = "ia64"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_AVR :
attrib.cpu = "avr"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_MSP430 :
attrib.cpu = "msp430"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_ST100:
attrib.cpu = "st100"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_X86_64:
attrib.cpu = "x86_64"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_XILINX_MICROBLAZE:
attrib.cpu = "microblaze"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_C166:
attrib.cpu = "c166"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_TRICORE:
attrib.cpu = "TriCore"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_M16C:
attrib.cpu = "M16C"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_NONE :
default :
attrib.cpu = "none"; //$NON-NLS-1$
}
switch (ehdr.e_ident[Elf.ELFhdr.EI_DATA]) {
case Elf.ELFhdr.ELFDATA2LSB :
attrib.isle = true;
break;
case Elf.ELFhdr.ELFDATA2MSB :
attrib.isle = false;
break;
}
switch (ehdr.e_ident[ELFhdr.EI_CLASS]) {
case ELFhdr.ELFCLASS32 :
attrib.addressFactory = new Addr32Factory();
break;
case ELFhdr.ELFCLASS64 :
attrib.addressFactory = new Addr64Factory();
break;
case ELFhdr.ELFCLASSNONE :
default :
attrib.addressFactory = null;
}
// getSections
// find .debug using toString
Section[] sec = getSections();
if (sec != null) {
for (int i = 0; i < sec.length; i++) {
String s = sec[i].toString();
if (s.equals(".debug_info")) { //$NON-NLS-1$
attrib.debugType = Attribute.DEBUG_TYPE_DWARF;
break;
} else if (s.equals(".stab")) { //$NON-NLS-1$
attrib.debugType = Attribute.DEBUG_TYPE_STABS;
break;
}
}
}
return attrib;
}
public static Attribute getAttributes(String file) throws IOException {
Elf elf = new Elf(file);
Attribute attrib = elf.getAttributes();
elf.dispose();
return attrib;
}
public static Attribute getAttributes(byte[] array) throws IOException {
Elf emptyElf = new Elf();
emptyElf.ehdr = emptyElf.new ELFhdr(array);
emptyElf.sections = new Elf.Section[0];
Attribute attrib = emptyElf.getAttributes();
emptyElf.dispose();
return attrib;
}
public static boolean isElfHeader(byte[] e_ident) {
if (e_ident.length < 4 || e_ident[ELFhdr.EI_MAG0] != 0x7f || e_ident[ELFhdr.EI_MAG1] != 'E'
|| e_ident[ELFhdr.EI_MAG2] != 'L' || e_ident[ELFhdr.EI_MAG3] != 'F')
return false;
return true;
}
public void dispose() {
try {
if (efile != null) {
efile.close();
efile = null;
}
} catch (IOException e) {
}
}
/**
* Make sure we do not leak the fds.
*/
protected void finalize() throws Throwable {
try {
dispose();
} finally {
super.finalize();
}
}
public Section getSectionByName(String name) throws IOException {
if (sections == null)
getSections();
for (int i = 0; i < sections.length; i++) {
if (sections[i].toString().equals(name)) {
return sections[i];
}
}
return null;
}
public Section[] getSections(int type) throws IOException {
if (sections == null)
getSections();
ArrayList slist = new ArrayList();
for (int i = 0; i < sections.length; i++) {
if (sections[i].sh_type == type)
slist.add(sections[i]);
}
return (Section[])slist.toArray(new Section[0]);
}
public Section[] getSections() throws IOException {
if (sections == null) {
if (ehdr.e_shoff == 0) {
sections = new Section[0];
return sections;
}
sections = new Section[ehdr.e_shnum];
for (int i = 0; i < ehdr.e_shnum; i++) {
efile.seek(ehdr.e_shoff + i * ehdr.e_shentsize);
sections[i] = new Section();
sections[i].sh_name = efile.readIntE();
sections[i].sh_type = efile.readIntE();
switch (ehdr.e_ident[ELFhdr.EI_CLASS]) {
case ELFhdr.ELFCLASS32 : {
byte[] addrArray = new byte[ELF32_ADDR_SIZE];
sections[i].sh_flags = efile.readIntE();
efile.readFullyE(addrArray);
sections[i].sh_addr = new Addr32(addrArray);
sections[i].sh_offset = efile.readIntE();
sections[i].sh_size = efile.readIntE();
}
break;
case ELFhdr.ELFCLASS64 : {
byte[] addrArray = new byte[ELF64_ADDR_SIZE];
sections[i].sh_flags = efile.readLongE();
efile.readFullyE(addrArray);
sections[i].sh_addr = new Addr64(addrArray);
sections[i].sh_offset = readUnsignedLong(efile);
sections[i].sh_size = readUnsignedLong(efile);
}
break;
case ELFhdr.ELFCLASSNONE :
default :
throw new IOException("Unknown ELF class " + ehdr.e_ident[ELFhdr.EI_CLASS]); //$NON-NLS-1$
}
sections[i].sh_link = efile.readIntE();
sections[i].sh_info = efile.readIntE();
switch (ehdr.e_ident[ELFhdr.EI_CLASS]) {
case ELFhdr.ELFCLASS32 : {
sections[i].sh_addralign = efile.readIntE();
sections[i].sh_entsize = efile.readIntE();
}
break;
case ELFhdr.ELFCLASS64 : {
sections[i].sh_addralign = efile.readLongE();
sections[i].sh_entsize = readUnsignedLong(efile);
}
break;
case ELFhdr.ELFCLASSNONE :
default :
throw new IOException("Unknown ELF class " + ehdr.e_ident[ELFhdr.EI_CLASS]); //$NON-NLS-1$
}
if (sections[i].sh_type == Section.SHT_SYMTAB)
syms = i;
if (syms == 0 && sections[i].sh_type == Section.SHT_DYNSYM)
syms = i;
}
}
return sections;
}
private Symbol[] loadSymbolsBySection(Section section) throws IOException {
int numSyms = 1;
if (section.sh_entsize != 0) {
numSyms = (int)section.sh_size / (int)section.sh_entsize;
}
ArrayList symList = new ArrayList(numSyms);
long offset = section.sh_offset;
for (int c = 0; c < numSyms; offset += section.sh_entsize, c++) {
efile.seek(offset);
Symbol symbol = new Symbol(section);
switch (ehdr.e_ident[ELFhdr.EI_CLASS]) {
case ELFhdr.ELFCLASS32 : {
byte[] addrArray = new byte[ELF32_ADDR_SIZE];
symbol.st_name = efile.readIntE();
efile.readFullyE(addrArray);
symbol.st_value = new Addr32(addrArray);
symbol.st_size = efile.readIntE();
symbol.st_info = efile.readByte();
symbol.st_other = efile.readByte();
symbol.st_shndx = efile.readShortE();
}
break;
case ELFhdr.ELFCLASS64 : {
byte[] addrArray = new byte[ELF64_ADDR_SIZE];
symbol.st_name = efile.readIntE();
symbol.st_info = efile.readByte();
symbol.st_other = efile.readByte();
symbol.st_shndx = efile.readShortE();
efile.readFullyE(addrArray);
symbol.st_value = new Addr64(addrArray);
symbol.st_size = readUnsignedLong(efile);
}
break;
case ELFhdr.ELFCLASSNONE :
default :
throw new IOException("Unknown ELF class " + ehdr.e_ident[ELFhdr.EI_CLASS]); //$NON-NLS-1$
}
if (symbol.st_info == 0)
continue;
symList.add(symbol);
}
Symbol[] results = (Symbol[])symList.toArray(new Symbol[0]);
Arrays.sort(results);
return results;
}
public void loadSymbols() throws IOException {
if (symbols == null) {
Section section[] = getSections(Section.SHT_SYMTAB);
if (section.length > 0) {
symtab_sym = section[0];
symtab_symbols = loadSymbolsBySection(section[0]);
} else {
symtab_sym = null;
symtab_symbols = new Symbol[0];
}
section = getSections(Section.SHT_DYNSYM);
if (section.length > 0) {
dynsym_sym = section[0];
dynsym_symbols = loadSymbolsBySection(section[0]);
} else {
dynsym_sym = null;
dynsym_symbols = new Symbol[0];
}
if (symtab_sym != null) {
// sym = symtab_sym;
symbols = symtab_symbols;
} else if (dynsym_sym != null) {
// sym = dynsym_sym;
symbols = dynsym_symbols;
}
}
}
public Symbol[] getSymbols() {
return symbols;
}
public Symbol[] getDynamicSymbols() {
return dynsym_symbols;
}
public Symbol[] getSymtabSymbols() {
return symtab_symbols;
}
/* return the address of the function that address is in */
public Symbol getSymbol(IAddress vma) {
if (symbols == null) {
return null;
}
//@@@ If this works, move it to a single instance in this class.
SymbolComparator symbol_comparator = new SymbolComparator();
int ndx = Arrays.binarySearch(symbols, vma, symbol_comparator);
if (ndx > 0)
return symbols[ndx];
if (ndx == -1) {
return null;
}
ndx = -ndx - 1;
return symbols[ndx - 1];
}
/*
* public long swapInt( long val ) { if ( ehdr.e_ident[ELFhdr.EI_DATA] ==
* ELFhdr.ELFDATA2LSB ) { short tmp[] = new short[4]; tmp[0] = (short)(val &
* 0x00ff); tmp[1] = (short)((val >> 8) & 0x00ff); tmp[2] = (short)((val >>
* 16) & 0x00ff); tmp[3] = (short)((val >> 24) & 0x00ff); return ((tmp[0] < <
* 24) + (tmp[1] < < 16) + (tmp[2] < < 8) + tmp[3]); } return val; }
*
* public int swapShort( short val ) { if ( ehdr.e_ident[ELFhdr.EI_DATA] ==
* ELFhdr.ELFDATA2LSB ) { short tmp[] = new short[2]; tmp[0] = (short)(val &
* 0x00ff); tmp[1] = (short)((val >> 8) & 0x00ff); return (short)((tmp[0] < <
* 8) + tmp[1]); } return val; }
*/
public String getFilename() {
return file;
}
protected long readUnsignedLong(ERandomAccessFile file) throws IOException {
long result = file.readLongE();
if (result < 0) {
throw new IOException("Maximal file offset is " + Long.toHexString(Long.MAX_VALUE) + //$NON-NLS-1$
" given offset is " + Long.toHexString(result)); //$NON-NLS-1$
}
return result;
}
}
| [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
2a8496f2f4d823c1b277020d7c83e2a1428eefd6 | 54ed8259a85324dcc4c5da730267b3db4f0520a2 | /basicjava/src/exception/CellPhone.java | 248965e527f75f489457d6cf8c30580aa0250cd6 | [] | no_license | HunnuH/spring | c2c12fc7bd43fb330ca9f61be8a9c37272b27a74 | 09c4dba7d15d7752060fcc46f66bc69623492756 | refs/heads/master | 2023-09-03T04:26:58.785639 | 2021-11-08T01:27:38 | 2021-11-08T01:27:38 | 425,658,080 | 0 | 0 | null | null | null | null | UHC | Java | false | false | 1,031 | java | package exception;
public class CellPhone {
String model;
double battery;
public CellPhone() {
}
public CellPhone(String model) {
super();
this.model = model;
}
public void call(int time) throws IllegalArgumentException{
if(time<0) {
throw new IllegalArgumentException("통화시간 입력 오류");
}
battery = battery - (time * 0.5);
if(battery<0) {
battery=0;
}
System.out.println("통화시간: "+time+"분");
}
public void charge(int time) throws IllegalArgumentException{
if(time<0) {
throw new IllegalArgumentException("충전시간 입력 오류");
}
battery = battery + (time * 3);
if(battery>100) {
battery=100;
}
System.out.println("충전시간: "+time+"분");
}
public void printBattery() {
System.out.println("남은 배터리 양:"+battery);
}
public boolean equals(Object otherObject) {
if(otherObject instanceof CellPhone) {
CellPhone obj = (CellPhone)otherObject;
if(this.model.equals(obj.model)) {
return true;
}
}
return false;
}
}
| [
"88477795+HunnuH@users.noreply.github.com"
] | 88477795+HunnuH@users.noreply.github.com |
1ff1efb50e8ac0048d73cba518418d5b905e098f | 62bdb3696e59398ebf8fd09b67e4f18df404726c | /src/main/java/org/apache/storm/jdbc/common/JdbcClient.java | c465507be833dde4d1d454eda2f19b98b0eeabc0 | [] | no_license | aahmed-se/heron-storm-jdbc | 68074056aca2d4f30a448af698b90980c4104702 | ad2b72cee320520e14617025a873c6e9f351fc36 | refs/heads/master | 2020-03-10T10:01:56.657477 | 2018-04-13T00:38:11 | 2018-04-13T00:38:11 | 129,324,506 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,651 | java | /**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.storm.jdbc.common;
import com.google.common.base.Function;
import com.google.common.base.Joiner;
import com.google.common.collect.Collections2;
import com.google.common.collect.Lists;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.sql.*;
import java.sql.Date;
import java.util.*;
public class JdbcClient {
private static final Logger LOG = LoggerFactory.getLogger(JdbcClient.class);
private ConnectionProvider connectionProvider;
private int queryTimeoutSecs;
public JdbcClient(ConnectionProvider connectionProvider, int queryTimeoutSecs) {
this.connectionProvider = connectionProvider;
this.queryTimeoutSecs = queryTimeoutSecs;
}
public void insert(String tableName, List<List<Column>> columnLists) {
String query = constructInsertQuery(tableName, columnLists);
executeInsertQuery(query, columnLists);
}
public void executeInsertQuery(String query, List<List<Column>> columnLists) {
Exception insertException = null;
Connection connection = null;
try {
connection = connectionProvider.getConnection();
boolean autoCommit = connection.getAutoCommit();
if(autoCommit) {
connection.setAutoCommit(false);
}
LOG.debug("Executing query {}", query);
try (PreparedStatement preparedStatement = connection.prepareStatement(query)) {
if (queryTimeoutSecs > 0) {
preparedStatement.setQueryTimeout(queryTimeoutSecs);
}
for (List<Column> columnList : columnLists) {
setPreparedStatementParams(preparedStatement, columnList);
preparedStatement.addBatch();
}
int[] results = preparedStatement.executeBatch();
if (Arrays.asList(results).contains(Statement.EXECUTE_FAILED)) {
connection.rollback();
throw new RuntimeException("failed at least one sql statement in the batch, operation rolled back.");
} else {
try {
connection.commit();
} catch (SQLException e) {
throw new RuntimeException("Failed to commit insert query " + query, e);
}
}
}
} catch (SQLException e) {
insertException = new RuntimeException("Failed to execute insert query " + query, e);
} catch (RuntimeException e) {
insertException = e;
} finally {
closeConnection(connection, insertException);
}
}
private String constructInsertQuery(String tableName, List<List<Column>> columnLists) {
StringBuilder sb = new StringBuilder();
sb.append("Insert into ").append(tableName).append(" (");
Collection<String> columnNames = Collections2.transform(columnLists.get(0), new Function<Column, String>() {
@Override
public String apply(Column input) {
return input.getColumnName();
}
});
String columns = Joiner.on(",").join(columnNames);
sb.append(columns).append(") values ( ");
String placeHolders = StringUtils.chop(StringUtils.repeat("?,", columnNames.size()));
sb.append(placeHolders).append(")");
return sb.toString();
}
public List<List<Column>> select(String sqlQuery, List<Column> queryParams) {
Exception selectException = null;
Connection connection = null;
try {
connection = connectionProvider.getConnection();
try (PreparedStatement preparedStatement = connection.prepareStatement(sqlQuery)) {
if (queryTimeoutSecs > 0) {
preparedStatement.setQueryTimeout(queryTimeoutSecs);
}
setPreparedStatementParams(preparedStatement, queryParams);
try (ResultSet resultSet = preparedStatement.executeQuery()) {
List<List<Column>> rows = Lists.newArrayList();
while (resultSet.next()) {
ResultSetMetaData metaData = resultSet.getMetaData();
int columnCount = metaData.getColumnCount();
List<Column> row = Lists.newArrayList();
for (int i = 1; i <= columnCount; i++) {
String columnLabel = metaData.getColumnLabel(i);
int columnType = metaData.getColumnType(i);
Class columnJavaType = Util.getJavaType(columnType);
if (columnJavaType.equals(String.class)) {
row.add(new Column<String>(columnLabel, resultSet.getString(columnLabel), columnType));
} else if (columnJavaType.equals(Integer.class)) {
row.add(new Column<Integer>(columnLabel, resultSet.getInt(columnLabel), columnType));
} else if (columnJavaType.equals(Double.class)) {
row.add(new Column<Double>(columnLabel, resultSet.getDouble(columnLabel), columnType));
} else if (columnJavaType.equals(Float.class)) {
row.add(new Column<Float>(columnLabel, resultSet.getFloat(columnLabel), columnType));
} else if (columnJavaType.equals(Short.class)) {
row.add(new Column<Short>(columnLabel, resultSet.getShort(columnLabel), columnType));
} else if (columnJavaType.equals(Boolean.class)) {
row.add(new Column<Boolean>(columnLabel, resultSet.getBoolean(columnLabel), columnType));
} else if (columnJavaType.equals(byte[].class)) {
row.add(new Column<byte[]>(columnLabel, resultSet.getBytes(columnLabel), columnType));
} else if (columnJavaType.equals(Long.class)) {
row.add(new Column<Long>(columnLabel, resultSet.getLong(columnLabel), columnType));
} else if (columnJavaType.equals(Date.class)) {
row.add(new Column<Date>(columnLabel, resultSet.getDate(columnLabel), columnType));
} else if (columnJavaType.equals(Time.class)) {
row.add(new Column<Time>(columnLabel, resultSet.getTime(columnLabel), columnType));
} else if (columnJavaType.equals(Timestamp.class)) {
row.add(new Column<Timestamp>(columnLabel, resultSet.getTimestamp(columnLabel), columnType));
} else {
throw new RuntimeException("type = " + columnType + " for column " + columnLabel + " not supported.");
}
}
rows.add(row);
}
return rows;
}
}
} catch (SQLException e) {
selectException = new RuntimeException("Failed to execute select query " + sqlQuery, e);
} catch (RuntimeException e) {
selectException = e;
} finally {
closeConnection(connection, selectException);
}
return null;
}
public List<Column> getColumnSchema(String tableName) {
Exception getSchemaException = null;
Connection connection = null;
List<Column> columns = new ArrayList<Column>();
try {
connection = connectionProvider.getConnection();
DatabaseMetaData metaData = connection.getMetaData();
ResultSet resultSet = metaData.getColumns(null, null, tableName, null);
while (resultSet.next()) {
columns.add(new Column(resultSet.getString("COLUMN_NAME"), resultSet.getInt("DATA_TYPE")));
}
return columns;
} catch (SQLException e) {
getSchemaException = new RuntimeException("Failed to get schema for table " + tableName, e);
} catch (RuntimeException e) {
getSchemaException = e;
} finally {
closeConnection(connection, getSchemaException);
}
return null;
}
public void executeSql(String sql) {
Exception execException = null;
Connection connection = null;
try {
connection = connectionProvider.getConnection();
try (Statement statement = connection.createStatement()) {
statement.execute(sql);
}
} catch (SQLException e) {
execException = new RuntimeException("Failed to execute SQL", e);
} catch (RuntimeException e) {
execException = e;
} finally {
closeConnection(connection, execException);
}
}
private void setPreparedStatementParams(PreparedStatement preparedStatement, List<Column> columnList) throws SQLException {
int index = 1;
for (Column column : columnList) {
Class columnJavaType = Util.getJavaType(column.getSqlType());
if (column.getVal() == null) {
preparedStatement.setNull(index, column.getSqlType());
} else if (columnJavaType.equals(String.class)) {
preparedStatement.setString(index, (String) column.getVal());
} else if (columnJavaType.equals(Integer.class)) {
preparedStatement.setInt(index, (Integer) column.getVal());
} else if (columnJavaType.equals(Double.class)) {
preparedStatement.setDouble(index, (Double) column.getVal());
} else if (columnJavaType.equals(Float.class)) {
preparedStatement.setFloat(index, (Float) column.getVal());
} else if (columnJavaType.equals(Short.class)) {
preparedStatement.setShort(index, (Short) column.getVal());
} else if (columnJavaType.equals(Boolean.class)) {
preparedStatement.setBoolean(index, (Boolean) column.getVal());
} else if (columnJavaType.equals(byte[].class)) {
preparedStatement.setBytes(index, (byte[]) column.getVal());
} else if (columnJavaType.equals(Long.class)) {
preparedStatement.setLong(index, (Long) column.getVal());
} else if (columnJavaType.equals(Date.class)) {
preparedStatement.setDate(index, (Date) column.getVal());
} else if (columnJavaType.equals(Time.class)) {
preparedStatement.setTime(index, (Time) column.getVal());
} else if (columnJavaType.equals(Timestamp.class)) {
preparedStatement.setTimestamp(index, (Timestamp) column.getVal());
} else {
throw new RuntimeException("Unknown type of value " + column.getVal() + " for column " + column.getColumnName());
}
++index;
}
}
private void closeConnection(Connection connection, Exception finalException) {
if (connection != null) {
try {
connection.close();
} catch (SQLException e) {
if (finalException != null) {
LOG.error("Failed to close connection: " + e.getMessage());
} else {
finalException = new RuntimeException("Failed to close connection", e);
}
}
}
if (finalException != null) {
throw new IllegalStateException(finalException);
}
}
}
| [
"alahmed.se@gmail.com"
] | alahmed.se@gmail.com |
4bb7de2a7177713bc7b6552b9668548d938d6846 | 969cf02071e75497117d2a48bcef6a3034819e89 | /NetWorkProxy/src/main/java/com/android/sms/proxy/entity/DatabaseHelper.java | 10daca2b6bf8b6d774b29a16afb939a432aa17f3 | [] | no_license | zhengyuqin/ProxyServerAndroid | 18842ad3b5bc351a605a2cdbb376cab4d729ac70 | 0e812e8037241e274589ee20aac5c36997afb6fb | refs/heads/master | 2020-04-06T15:00:00.455805 | 2016-10-21T10:08:01 | 2016-10-21T10:08:01 | 53,205,091 | 2 | 4 | null | null | null | null | UTF-8 | Java | false | false | 1,056 | java | package com.android.sms.proxy.entity;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
/**
* @author zyq 16-3-21
* 保存手机号,配合ContentProvider使用....
*/
public class DatabaseHelper extends SQLiteOpenHelper {
private static final String DATABASE_NAME = "user.db";
private static final int DATABASE_VERSION = 1;
public DatabaseHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL("CREATE TABLE " + UserContentProviderMetaData.UserTableMetaData.TABLE_NAME + " (" +
UserContentProviderMetaData.UserTableMetaData._ID + " INTEGER PRIMARY KEY," +
UserContentProviderMetaData.UserTableMetaData.PHONE_NAME + " TEXT);"
);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL("DROP TABLE IF EXITS " + UserContentProviderMetaData.UserTableMetaData.TABLE_NAME);
onCreate(db);
}
}
| [
"zhengyuqin@youmi.net"
] | zhengyuqin@youmi.net |
b2bc7e46df745ede9ba2f85128641a2b2dab6040 | b989a2b582223a37489e90f2c530b569f9ff56ea | /src/main/java/it/azienda/progetto/dto/MovieDTO.java | 5c5562d393f9207278e847db47be89d0e846fb70 | [] | no_license | danielev86/moviecatalog | 266df190787638bfd9870a05abf3e591e4234dc9 | ec1330f995ba70c5f21cf7a77af83dc72ef76cc1 | refs/heads/master | 2020-12-06T12:44:41.176538 | 2016-10-16T20:19:31 | 2016-10-16T20:19:31 | 66,677,290 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,110 | java | package it.azienda.progetto.dto;
import java.util.Date;
import java.util.Set;
public interface MovieDTO {
public Integer getId();
public void setId(Integer id);
public String getTitle();
public void setTitle(String title);
public Date getReleaseDate();
public void setReleaseDate(Date releaseDate);
public String getPlot();
public void setPlot(String plot);
public String getPoster();
public void setPoster(String poster);
public CompanyDTO getCompany();
public void setCompany(CompanyDTO company);
public Set<RatingDTO> getRatings();
public void setRatings(Set<RatingDTO> ratings);
public Set<GenreDTO> getGenres();
public void setGenres(Set<GenreDTO> genres);
public Set<StarDTO> getDirectors();
public void setDirectors(Set<StarDTO> directors);
public Set<StarDTO> getActors();
public void setActors(Set<StarDTO> actors);
public Set<CountryDTO> getCountries();
public void setCountries(Set<CountryDTO> countries);
@Override
public int hashCode();
@Override
public boolean equals(Object obj);
}
| [
"daniele@daniele-PC.station"
] | daniele@daniele-PC.station |
b97391a432f8c4f0e751c7e5b0d5499366cc4894 | 810c460f30f132762ab935fedc53595bb89e873b | /HashSetDemo.java | fa7c21bf3fdc275e2b4dd3bddc17812aab03c3d5 | [] | no_license | maliknaik16/java-lab | 2a7599a8a207edd0b5c920c374fe53eb730bff28 | 6667a64179ebd4934645d7a58b62f02de0825223 | refs/heads/master | 2021-06-15T20:28:53.342854 | 2017-04-05T15:28:40 | 2017-04-05T15:28:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 334 | java |
// Demonstrate HashSet.
import java.util.*;
class HashSetDemo {
public static void main(String args[]) {
// Create a hash set.
HashSet<String> hs = new HashSet<String>();
// Add elements to the hash set.
hs.add("B");
hs.add("A");
hs.add("D");
hs.add("E");
hs.add("C");
hs.add("F");
System.out.println(hs);
}
} | [
"maliknaik16@gmail.com"
] | maliknaik16@gmail.com |
4ab4a82a8b4c07b443f5add4546f0121ee5f80d7 | f95bda9c3dea4d1a9304cf703310c32cd6a7fc6a | /src/main/java/org/hac/drc/core/FileSplitter.java | c45eec9297a51628ea772171e7119858c038aa5f | [] | no_license | amolkgitnisum/Darc | 583026eaa0d8bbcfed20b896ea990932e3031eb6 | ef9eab1a3934ae48abdac5d48095b63e5621c068 | refs/heads/master | 2021-08-18T18:46:00.610375 | 2017-11-23T14:54:19 | 2017-11-23T14:54:19 | 111,522,274 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,897 | java | package org.hac.drc.core;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.IOException;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.util.ArrayList;
import java.util.List;
public class FileSplitter {
private BufferedReader reader;
private int splitlen;
private String fileName;
private int totalLines;
public FileSplitter(){
}
public FileSplitter(String fileName, int splitLength){
try {
this.reader = Files.newBufferedReader(Paths.get(fileName));
this.fileName = fileName;
this.splitlen = splitLength;
this.totalLines = (int) Files.lines(Paths.get(fileName)).count();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public List<String> split() throws IOException {
List<String> fileNames = new ArrayList<String>();
int fileCount = 1;
for(int i = 0; i < totalLines;){
i = i+this.splitlen;
BufferedWriter bw = null;
new File(fileName + "_" + fileCount).createNewFile();
bw = Files.newBufferedWriter(Paths.get(fileName + "_" + fileCount), StandardCharsets.UTF_8,StandardOpenOption.WRITE);
for(int j = 1; j<= this.splitlen; j++){
String line = reader.readLine();
if(line != null && !line.isEmpty()){
bw.write(line);
bw.newLine();
}
}
bw.flush();
bw.close();
fileNames.add(fileName + "_" + fileCount);
fileCount++;
}
reader.close();
return fileNames;
}
public List<List<String>> splitFile(List<String> lines){
int numberOfParts = 7;
List<List<String>> chunkList = new ArrayList<>();
int numberOfLines = lines.size();
int blockSize = (int) Math.ceil(numberOfLines/numberOfParts);
int i = 0;
int chunkListIndex = 0;
for(; i<(numberOfParts-1)*blockSize; i+=blockSize){
int toIndex = i+blockSize;
chunkList.add(chunkListIndex++, new ArrayList<>(lines.subList(i, toIndex)));
}
chunkList.add(chunkListIndex, new ArrayList<>(lines.subList(i, (int) numberOfLines)));
return chunkList;
}
public BufferedReader getReader() {
return reader;
}
public void setReader(BufferedReader reader) {
this.reader = reader;
}
public int getSplitlen() {
return splitlen;
}
public void setSplitlen(int splitlen) {
this.splitlen = splitlen;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public int getTotalLines() {
return totalLines;
}
public void setTotalLines(int totalLines) {
this.totalLines = totalLines;
}
}
| [
"Bhagavan@BHAGU-LAPPY"
] | Bhagavan@BHAGU-LAPPY |
41afa04725534fe4eb0e3fceb968962cd5b4971c | cc2fd6c4cca1dd71c408d77d2f4c519abb2af42c | /src/com/vimal/its/action/NewAction.java | b5eabb8ee5ad3079675517679afa3a8e7cb8ba32 | [] | no_license | onlivimal/ITs | a6ff749c51ea0c81f83e9a9ba70531b707ce4e77 | 962c7083a4d4ff3ee120a2f2041ed461f90142a9 | refs/heads/master | 2021-01-19T08:55:13.132039 | 2016-05-24T03:16:35 | 2016-05-24T03:16:35 | 59,535,729 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 247 | java | package com.vimal.its.action;
public class NewAction {
public NewAction() {
}
public String execute() throws Exception {
System.out.println("coming from execute");
return "success";
}
}
| [
"onlivimal@users.noreply.github.com"
] | onlivimal@users.noreply.github.com |
53f3ec118963277ac649073eadec19a0dde889a3 | 35356a0e39dab5bcd8d7a0c04834c9a413a12a87 | /src/main/java/com/jeta/forms/store/jml/InlineJMLSerializer.java | f02f3928b499f2ebbb0d89e9bbcf366e83454b75 | [] | no_license | jeff-tassin/abeilleforms | 30af4534e083c9ab524eb26572cfdbf15b55c788 | 1bfc87e869a294a5ec3161dbf20a005b68a6018c | refs/heads/master | 2023-05-28T14:52:09.782950 | 2023-05-11T21:09:35 | 2023-05-11T21:09:35 | 48,721,866 | 7 | 3 | null | null | null | null | UTF-8 | Java | false | false | 139 | java | package com.jeta.forms.store.jml;
public interface InlineJMLSerializer extends JMLSerializer {
public String getObjectName();
}
| [
"jtassin@corp.acesse.com"
] | jtassin@corp.acesse.com |
eb4c51c10e828b93dfb60b9ec7631c73921ddec5 | 5064f6bad0faee5984b8d0a05d0bdf9c74f7241c | /app/src/main/java/com/example/a12345/secodlabtestone_fragment/MainActivity.java | 5ca7b6bcb743bbf57f9ec032ee914896d93cea55 | [] | no_license | whitreen/Weather | 3cd79340fa0774cbd8627a32fd0006e3f91e3452 | d43d96eec89c13bfe8443f60fbbc87f13794910d | refs/heads/master | 2021-01-22T21:57:47.652933 | 2017-03-19T15:59:08 | 2017-03-19T15:59:08 | 85,491,281 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 396 | java | package com.example.a12345.secodlabtestone_fragment;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.ArrayAdapter;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
| [
"2119592286@qq.com"
] | 2119592286@qq.com |
57fa50c95d928fcc7d74188032923bfffbf06ddd | 82c0f0f11e210188a322ae6cbad08461052e75aa | /src/test/java/com/banking/testCases/BaseClass.java | cf4aff9630c7126ba3e7a95ab6eb181ca1c732d3 | [] | no_license | ankushchauhan9/EBankingV1 | 6cac4b950ce86f80635928eb463e2d9d31d6fa82 | 6c0e21c48ab290799b8d4c289205d76a86b48d02 | refs/heads/master | 2023-03-03T02:08:28.411116 | 2021-02-12T19:07:50 | 2021-02-12T19:07:50 | 338,303,322 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,510 | java | package com.banking.testCases;
import com.banking.utilities.ReadConfig;
import org.apache.commons.io.FileUtils;
import org.apache.log4j.Logger;
import org.apache.log4j.PropertyConfigurator;
import org.openqa.selenium.NoAlertPresentException;
import org.openqa.selenium.OutputType;
import org.openqa.selenium.TakesScreenshot;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.edge.EdgeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Parameters;
import java.io.File;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
public class BaseClass {
ReadConfig readConfig = new ReadConfig();
public String baseURL = readConfig.getApplicationURL();
public String username = readConfig.getUserName();
public String password = readConfig.getPassword();
public static WebDriver driver;
public static Logger logger;
@Parameters("browser")
@BeforeClass
public void setup(String br){
logger = Logger.getLogger("ebanking");
PropertyConfigurator.configure("log4j.properties");
if(br.equals("chrome")){
System.setProperty("webdriver.chrome.driver",readConfig.getChromedriverPath());
driver = new ChromeDriver();
}else if(br.equals("firefox")){
System.setProperty("webdriver.gecko.driver",readConfig.getFirefoxdriverPath());
driver = new FirefoxDriver();
}else if(br.equals("edge")){
System.setProperty("webdriver.ie.driver",readConfig.getIEdriverPath());
driver = new EdgeDriver();
}
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
driver.get(baseURL);
}
public void captureScreen(WebDriver driver, String tname) throws IOException {
File src = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
FileUtils.copyFile(src, new File(System.getProperty("user.dir")+"/Screenshots/"+tname+".png"));
System.out.println("screen shot captured");
}
public Boolean isAlertPresent(){
try{
driver.switchTo().alert();
return true;
}catch (NoAlertPresentException e){
return false;
}
}
@AfterClass
public void teardown(){
driver.quit();
}
}
| [
"ankushchauhanbtech@gmail.com"
] | ankushchauhanbtech@gmail.com |
f449db88fd8f1b1b57c20b04f8a72ba9ee72024d | fb80fdc722d8ad415a66634f9060043c70191589 | /src/main/java/hyperskill/inputStreams/CountWords.java | cd794796b240812787e0296d4684f15a2609b31c | [] | no_license | arturdziocha/learn | ee795b09fd8d0ae0022762400b53edb65c6643c3 | f4396844a733de2c959c64b9251bc766f211b32a | refs/heads/master | 2020-12-22T06:14:55.818022 | 2020-07-31T14:40:11 | 2020-07-31T14:40:11 | 236,692,415 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,179 | java | package hyperskill.inputStreams;
import java.io.*;
import java.nio.charset.StandardCharsets;
import java.util.Arrays;
/*
Read an input text from the console and print the number of words. By word we mean a sequence of characters separated by one or several spaces.
If the input is empty or there are no characters except spaces, print 0.
Sample Input 1:
one two three
Sample Output 1:
3
Sample Input 2:
between us several space characters
Sample Output 2:
5
*/
public class CountWords {
public static void main(String[] args) throws IOException {
try (Reader reader = new BufferedReader(new InputStreamReader(
new ByteArrayInputStream("between us several space characters".getBytes(StandardCharsets.UTF_8))))) {
int b;
StringBuilder line = new StringBuilder();
while ((b = reader.read()) != -1) {
line.append((char) b);
}
System.out.println(
Arrays.stream(
line.toString().split(" "))
.filter(w -> !w.isEmpty()).count());
}
}
}
| [
"artur.dziocha@gmail.com"
] | artur.dziocha@gmail.com |
e115f88078021d4b19b123f74c5ec3c2788e97b8 | 9b31e25c9e0495bb5d150efed288a29ac1ac5c19 | /src/jdk/myMethodReference/m2/PrintableDemo.java | 8199f0300f2e5c10661d7be4d30a541af456cd66 | [] | no_license | wang999296/myrepository | 054f73db524260aed87cfe53adea426c4aa5a137 | f94956ff46596cca7e9f1795de4345a8d4fbebd4 | refs/heads/master | 2023-03-21T19:37:49.947786 | 2021-03-11T15:31:42 | 2021-03-11T15:31:42 | 341,598,400 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 629 | java | package jdk.myMethodReference.m2;
/*
需求:
1:定义一个接口(Printable):里面定义一个抽象方法:void printInt(int i);
2:定义一个测试类(PrintableDemo),在测试类中提供两个方法
一个方法是:usePrintable(Printable p)
一个方法是主方法,在主方法中调用usePrintable方法
*/
public class PrintableDemo {
public static void main(String[] args) {
usePrintable(i -> System.out.println(i));
usePrintable(System.out::println);
}
private static void usePrintable(Printable p){
p.printInt(999);
}
}
| [
"1943222030@qq.com"
] | 1943222030@qq.com |
07be3db334dffb4e27432f2cd85b4bc9d1f212da | 712a5e8475b6c9276bd4f8f857be95fdf6f30b9f | /android/support/v4/view/ViewCompatJB.java | 43c4d46e7a311d17bd0182e96e80056ada034467 | [] | no_license | swapnilsen/OCR_2 | b29bd22a51203b4d39c2cc8cb03c50a85a81218f | 1889d208e17e94a55ddeae91336fe92110e1bd2d | refs/heads/master | 2021-01-20T08:46:03.508508 | 2017-05-03T19:50:52 | 2017-05-03T19:50:52 | 90,187,623 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,354 | java | package android.support.v4.view;
import android.annotation.TargetApi;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.support.annotation.RequiresApi;
import android.view.View;
import android.view.ViewParent;
@TargetApi(16)
@RequiresApi(16)
class ViewCompatJB {
ViewCompatJB() {
}
public static boolean hasTransientState(View view) {
return view.hasTransientState();
}
public static void setHasTransientState(View view, boolean z) {
view.setHasTransientState(z);
}
public static void postInvalidateOnAnimation(View view) {
view.postInvalidateOnAnimation();
}
public static void postInvalidateOnAnimation(View view, int i, int i2, int i3, int i4) {
view.postInvalidate(i, i2, i3, i4);
}
public static void postOnAnimation(View view, Runnable runnable) {
view.postOnAnimation(runnable);
}
public static void postOnAnimationDelayed(View view, Runnable runnable, long j) {
view.postOnAnimationDelayed(runnable, j);
}
public static int getImportantForAccessibility(View view) {
return view.getImportantForAccessibility();
}
public static void setImportantForAccessibility(View view, int i) {
view.setImportantForAccessibility(i);
}
public static boolean performAccessibilityAction(View view, int i, Bundle bundle) {
return view.performAccessibilityAction(i, bundle);
}
public static Object getAccessibilityNodeProvider(View view) {
return view.getAccessibilityNodeProvider();
}
public static ViewParent getParentForAccessibility(View view) {
return view.getParentForAccessibility();
}
public static int getMinimumWidth(View view) {
return view.getMinimumWidth();
}
public static int getMinimumHeight(View view) {
return view.getMinimumHeight();
}
public static void requestApplyInsets(View view) {
view.requestFitSystemWindows();
}
public static boolean getFitsSystemWindows(View view) {
return view.getFitsSystemWindows();
}
public static boolean hasOverlappingRendering(View view) {
return view.hasOverlappingRendering();
}
public static void setBackground(View view, Drawable drawable) {
view.setBackground(drawable);
}
}
| [
"swasen@cisco.com"
] | swasen@cisco.com |
d94acc9157b4a94b5d4abd6be94db965127049be | 1ed6b7cd946cb942e6a3b768f54f11a4cc9ade0a | /src/main/java/org/healthcare/domain/ImageMeta.java | f11b2f4eab4dc15e4c48ac3ba6b8c80760013978 | [] | no_license | rezaul3025/healthcareweb | 544b9c1f32fcaf169e2725a3859ac56392fe1648 | 64df80c6b7ae7aa58fbf9f679d699d8bc3ca6f70 | refs/heads/master | 2021-01-21T04:50:34.641247 | 2016-06-19T06:58:25 | 2016-06-19T06:58:25 | 55,004,121 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,780 | java | package org.healthcare.domain;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.OneToOne;
import com.fasterxml.jackson.annotation.JsonBackReference;
@Entity(name = "image_meta")
public class ImageMeta {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "id", length = Integer.MAX_VALUE, nullable = false)
private Long id;
@OneToOne(cascade = {CascadeType.REMOVE,CascadeType.DETACH,CascadeType.PERSIST,CascadeType.REFRESH})
@JsonBackReference
@JoinColumn(name = "doctor_id",referencedColumnName = "id")
private Doctor doctor;
@Column(name = "web_path", length = 255, nullable = false)
private String webPath;
@Column(name = "original_path", length = 255, nullable = true)
private String originalPath;
@Column(name = "height", length = 10, nullable = false)
private Integer height;
@Column(name = "width", length = 10, nullable = false)
private Integer width;
@Column(name = "format", length = 50, nullable = true)
private String format;
@Column(name = "size", length = 10, nullable = false)
private Long size;
@Column(name = "name", length = 126, nullable = false)
private String name;
public ImageMeta() {
}
public ImageMeta(Doctor doctor, String webPath, String originalPath, Integer height, Integer width, String format, Long size, String name) {
this.doctor = doctor;
this.webPath = webPath;
this.originalPath = originalPath;
this.height = height;
this.width = width;
this.format = format;
this.size = size;
this.name = name;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getWebPath() {
return webPath;
}
public void setWebPath(String webPath) {
this.webPath = webPath;
}
public String getOriginalPath() {
return originalPath;
}
public void setOriginalPath(String originalPath) {
this.originalPath = originalPath;
}
public Integer getHeight() {
return height;
}
public void setHeight(Integer height) {
this.height = height;
}
public Integer getWidth() {
return width;
}
public void setWidth(Integer width) {
this.width = width;
}
public String getFormat() {
return format;
}
public void setFormat(String format) {
this.format = format;
}
public Long getSize() {
return size;
}
public void setSize(Long size) {
this.size = size;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Doctor getDoctor() {
return doctor;
}
public void setDoctor(Doctor doctor) {
this.doctor = doctor;
}
}
| [
"rkarim@Mds-MacBook-Pro.local"
] | rkarim@Mds-MacBook-Pro.local |
7a9fdb43b5010bd17c39950ff510b0b19b659f2c | dae4db024ce46062b1c61cb6c27c8ce61a73c92e | /app/src/main/java/com/aresix/housingassistant2/ui/children_activity/indoors/IndoorsFragment.java | 13b085652936585d86355ab5c440520b25c40ea9 | [] | no_license | Aa-transparent/HousingAssistant | ad9566cb943071c226a573f1d345efb2f49e8ccc | 014c198564e3b3134fac489c293f321d1277caa3 | refs/heads/master | 2023-05-05T13:18:01.002366 | 2021-05-30T12:29:36 | 2021-05-30T12:29:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,838 | java | package com.aresix.housingassistant2.ui.children_activity.indoors;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AlertDialog;
import androidx.cardview.widget.CardView;
import androidx.fragment.app.Fragment;
import com.aresix.housingassistant2.R;
public class IndoorsFragment extends Fragment {
private CardView mIndoorsCardView1;
private CardView mIndoorsCardView2;
private CardView mIndoorsCardView3;
private CardView mIndoorsCardView4;
private CardView mIndoorsCardView5;
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_children_activity_indoors, container, false);
mIndoorsCardView1 = (CardView) view.findViewById(R.id.indoors_card_view1);
mIndoorsCardView1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog dialog = new AlertDialog.Builder(getContext())
.setTitle(R.string.indoors_card1)
.setMessage(R.string.indoors_card1_content)
.setPositiveButton("确定", null)
.create();
dialog.show();
}
});
mIndoorsCardView2 = (CardView) view.findViewById(R.id.indoors_card_view2);
mIndoorsCardView2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog dialog = new AlertDialog.Builder(getContext())
.setTitle(R.string.indoors_card2)
.setMessage(R.string.indoors_card2_content)
.setPositiveButton("确定", null)
.create();
dialog.show();
}
});
mIndoorsCardView3 = (CardView) view.findViewById(R.id.indoors_card_view3);
mIndoorsCardView3.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog dialog = new AlertDialog.Builder(getContext())
.setTitle(R.string.indoors_card3)
.setMessage(R.string.indoors_card3_content)
.setPositiveButton("确定", null)
.create();
dialog.show();
}
});
mIndoorsCardView4 = (CardView) view.findViewById(R.id.indoors_card_view4);
mIndoorsCardView4.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog dialog = new AlertDialog.Builder(getContext())
.setTitle(R.string.indoors_card4)
.setMessage(R.string.indoors_card4_content)
.setPositiveButton("确定", null)
.create();
dialog.show();
}
});
mIndoorsCardView5 = (CardView) view.findViewById(R.id.indoors_card_view5);
mIndoorsCardView5.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog dialog = new AlertDialog.Builder(getContext())
.setTitle(R.string.indoors_card5)
.setMessage(R.string.indoors_card5_content)
.setPositiveButton("确定", null)
.create();
dialog.show();
}
});
return view;
}
}
| [
"2907047490@qq.com"
] | 2907047490@qq.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.