blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
410
content_id
stringlengths
40
40
detected_licenses
listlengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
131 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
9.45M
extension
stringclasses
32 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
313
53277d3c684d0c4d78e84f2fd81d0692521cccf5
192449dc52bf7874e5dea4d0e95cfee4a2ebdf47
/DatabaseMetaData/src/main/LocalFile.java
5c4c272ae506c7a3a4aaee1f58ea1962f5cc204c
[ "Apache-2.0" ]
permissive
scp504677840/JDBC
f5ffa706598329447cef8bbe09ed13a489826ade
d9451b55fc7f9a7145720a951c57fdfc385fe6a5
refs/heads/master
2020-03-20T19:52:20.990620
2018-06-20T04:38:22
2018-06-20T04:38:22
137,658,230
0
0
null
null
null
null
UTF-8
Java
false
false
1,273
java
package main; import exception.DBUtilsException; import utils.DBUtils; import java.sql.Connection; import java.sql.DatabaseMetaData; import java.sql.ResultSet; import java.sql.SQLException; public class LocalFile { public static void main(String[] args) { Connection conn = null; try { conn = DBUtils.conn(); DatabaseMetaData metaData = conn.getMetaData(); //检索此数据库是否为每个表使用文件。 //usesLocalFiles boolean usesLocalFiles = metaData.usesLocalFiles(); System.out.println("usesLocalFiles: " + usesLocalFiles); //usesLocalFiles: false //检索此数据库是否将表存储在本地文件中。 //usesLocalFilePerTable boolean usesLocalFilePerTable = metaData.usesLocalFilePerTable(); System.out.println("usesLocalFilePerTable: " + usesLocalFilePerTable); //usesLocalFilePerTable: false } catch (DBUtilsException | SQLException e) { e.printStackTrace(); } finally { try { DBUtils.close(null, null, conn); } catch (DBUtilsException e) { e.printStackTrace(); } } } }
[ "15335747148@163.com" ]
15335747148@163.com
29509e3bb35ba0d83b74d6f2ef377b6df27fead4
08ead428154036580ae7ceea0d9d2c6b2fcf1b86
/src/main/java/com/pirest/docker/HelloWorldPing.java
843558e486c3a4f33524b1ef7cc52f6a510fefc1
[]
no_license
priest89/java-docker
490a5f59e3e6ca0816d0543ef0f75b04833846b7
1fe972bd95ad3ba2d8eb78aadb2138c9bafefae4
refs/heads/master
2020-03-19T09:09:00.955447
2018-06-06T05:14:42
2018-06-06T05:14:42
136,263,804
0
0
null
null
null
null
UTF-8
Java
false
false
244
java
package com.pirest.docker; public class HelloWorldPing { public static void main(String args[]) throws Exception { for (int i = 0; i < 100; i++) { System.out.println("Change quote Ping " + i); Thread.sleep(1000); } } }
[ "vumanhthang89@gmail.com" ]
vumanhthang89@gmail.com
c4ca65908d718c6562bd1a7fc23c07544af2eece
bbef5dec0b14bb532d3210dccba9635f9a695ffa
/app/src/main/java/by/itacademy/androidclasses/dz4/diagram/Dz4Data.java
ddc1f8332e257365d49ff45fe7d2bdf9502724c4
[]
no_license
KsyushaDrebenchuk/androidClasses
dd62f08e91877eb7286c0be6d6e4fda1cad990e0
e7c0ef6a739af1d3813117af3952a91da64b29fd
refs/heads/master
2020-04-25T00:16:08.284223
2019-06-06T06:59:17
2019-06-06T06:59:17
172,333,321
1
0
null
null
null
null
UTF-8
Java
false
false
608
java
package by.itacademy.androidclasses.dz4.diagram; import java.util.ArrayList; import java.util.List; public class Dz4Data { private List<Float> list = new ArrayList<>(); public void addToList() { list.add((float) 100); list.add((float) 30); list.add((float) 90); list.add((float) 65); list.add((float) 35); list.add((float) 70); list.add((float) 60); list.add((float) 45); list.add((float) 10); list.add((float) 40); list.add((float) 63); } public List<Float> getList() { return list; } }
[ "drebenchuk.ksysha@gmail.com" ]
drebenchuk.ksysha@gmail.com
2db6460aed0c2333fc35c8fc909adcc9393ddcf0
2844f8d1b5b6cf39011abb777d9cd452fb779156
/gmall-pms/src/main/java/com/atguigu/gmall/pms/controller/BrandController.java
23e79832cee3ce38af681be01bc3d1168fd5051a
[ "Apache-2.0" ]
permissive
qq1035280329/gmall-201130
489cedc14922356de7a07a3f2efebb7a1f4bc7e1
aedac1fb946f1a309966c16d72e2a6fd4d3d3dd9
refs/heads/main
2023-04-28T22:00:29.919375
2021-05-13T16:30:04
2021-05-13T16:30:04
366,949,590
0
0
null
null
null
null
UTF-8
Java
false
false
2,331
java
package com.atguigu.gmall.pms.controller; import java.util.List; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import com.atguigu.gmall.pms.entity.BrandEntity; import com.atguigu.gmall.pms.service.BrandService; import com.atguigu.gmall.common.bean.PageResultVo; import com.atguigu.gmall.common.bean.ResponseVo; import com.atguigu.gmall.common.bean.PageParamVo; /** * 品牌 * * @author zwd * @email zwd@atguigu.com * @date 2021-05-13 23:13:02 */ @Api(tags = "品牌 管理") @RestController @RequestMapping("pms/brand") public class BrandController { @Autowired private BrandService brandService; /** * 列表 */ @GetMapping @ApiOperation("分页查询") public ResponseVo<PageResultVo> queryBrandByPage(PageParamVo paramVo){ PageResultVo pageResultVo = brandService.queryPage(paramVo); return ResponseVo.ok(pageResultVo); } /** * 信息 */ @GetMapping("{id}") @ApiOperation("详情查询") public ResponseVo<BrandEntity> queryBrandById(@PathVariable("id") Long id){ BrandEntity brand = brandService.getById(id); return ResponseVo.ok(brand); } /** * 保存 */ @PostMapping @ApiOperation("保存") public ResponseVo<Object> save(@RequestBody BrandEntity brand){ brandService.save(brand); return ResponseVo.ok(); } /** * 修改 */ @PostMapping("/update") @ApiOperation("修改") public ResponseVo update(@RequestBody BrandEntity brand){ brandService.updateById(brand); return ResponseVo.ok(); } /** * 删除 */ @PostMapping("/delete") @ApiOperation("删除") public ResponseVo delete(@RequestBody List<Long> ids){ brandService.removeByIds(ids); return ResponseVo.ok(); } }
[ "1035280329@qq.com" ]
1035280329@qq.com
69c30979f9f34f0d682f4385491e3acd05180ea0
5cac2e85059af2e881e2dfe0022492c811535c84
/AndroidBase-master/app/src/main/java/com/blueberry/sample/module/http/StringRequest.java
48ec15818648b545663dbdcfe412a6f8d673c036
[]
no_license
wang413911174/androidproject
0a1f8ec2acb09354ce47df76f3eff770eaa541d5
6432fa11ba45959b71cd5fd5f42745655c461cac
refs/heads/master
2020-12-25T18:43:23.381055
2017-06-11T05:27:41
2017-06-11T05:27:41
93,983,758
0
0
null
null
null
null
UTF-8
Java
false
false
412
java
package com.blueberry.sample.module.http; /** * Created by blueberry on 2016/8/16. */ public class StringRequest extends Request<String> { public StringRequest(HttpMethod httpMethod, String url, RequestListener<String> listener) { super(httpMethod, url, listener); } @Override public String parseResponse(Response response) { return new String(response.getRawData()); } }
[ "413911174@qq.com" ]
413911174@qq.com
4351b7a88eddcd8313f324367ca34af59533a857
f487532281c1c6a36a5c62a29744d8323584891b
/sdk/java/src/main/java/com/pulumi/azure/appservice/outputs/GetLinuxFunctionAppBackupSchedule.java
27aa9088ef6265ece46777a7c4b8b2a06c3c48e8
[ "BSD-3-Clause", "MPL-2.0", "Apache-2.0" ]
permissive
pulumi/pulumi-azure
a8f8f21c46c802aecf1397c737662ddcc438a2db
c16962e5c4f5810efec2806b8bb49d0da960d1ea
refs/heads/master
2023-08-25T00:17:05.290397
2023-08-24T06:11:55
2023-08-24T06:11:55
103,183,737
129
57
Apache-2.0
2023-09-13T05:44:10
2017-09-11T20:19:15
Java
UTF-8
Java
false
false
4,832
java
// *** WARNING: this file was generated by pulumi-java-gen. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** package com.pulumi.azure.appservice.outputs; import com.pulumi.core.annotations.CustomType; import java.lang.Boolean; import java.lang.Integer; import java.lang.String; import java.util.Objects; @CustomType public final class GetLinuxFunctionAppBackupSchedule { /** * @return How often the backup is executed. * */ private Integer frequencyInterval; /** * @return The unit of time for how often the backup takes place. * */ private String frequencyUnit; /** * @return Does the service keep at least one backup, regardless of age of backup? * */ private Boolean keepAtLeastOneBackup; private String lastExecutionTime; /** * @return After how many days backups are deleted. * */ private Integer retentionPeriodDays; /** * @return When the schedule starts working in RFC-3339 format. * */ private String startTime; private GetLinuxFunctionAppBackupSchedule() {} /** * @return How often the backup is executed. * */ public Integer frequencyInterval() { return this.frequencyInterval; } /** * @return The unit of time for how often the backup takes place. * */ public String frequencyUnit() { return this.frequencyUnit; } /** * @return Does the service keep at least one backup, regardless of age of backup? * */ public Boolean keepAtLeastOneBackup() { return this.keepAtLeastOneBackup; } public String lastExecutionTime() { return this.lastExecutionTime; } /** * @return After how many days backups are deleted. * */ public Integer retentionPeriodDays() { return this.retentionPeriodDays; } /** * @return When the schedule starts working in RFC-3339 format. * */ public String startTime() { return this.startTime; } public static Builder builder() { return new Builder(); } public static Builder builder(GetLinuxFunctionAppBackupSchedule defaults) { return new Builder(defaults); } @CustomType.Builder public static final class Builder { private Integer frequencyInterval; private String frequencyUnit; private Boolean keepAtLeastOneBackup; private String lastExecutionTime; private Integer retentionPeriodDays; private String startTime; public Builder() {} public Builder(GetLinuxFunctionAppBackupSchedule defaults) { Objects.requireNonNull(defaults); this.frequencyInterval = defaults.frequencyInterval; this.frequencyUnit = defaults.frequencyUnit; this.keepAtLeastOneBackup = defaults.keepAtLeastOneBackup; this.lastExecutionTime = defaults.lastExecutionTime; this.retentionPeriodDays = defaults.retentionPeriodDays; this.startTime = defaults.startTime; } @CustomType.Setter public Builder frequencyInterval(Integer frequencyInterval) { this.frequencyInterval = Objects.requireNonNull(frequencyInterval); return this; } @CustomType.Setter public Builder frequencyUnit(String frequencyUnit) { this.frequencyUnit = Objects.requireNonNull(frequencyUnit); return this; } @CustomType.Setter public Builder keepAtLeastOneBackup(Boolean keepAtLeastOneBackup) { this.keepAtLeastOneBackup = Objects.requireNonNull(keepAtLeastOneBackup); return this; } @CustomType.Setter public Builder lastExecutionTime(String lastExecutionTime) { this.lastExecutionTime = Objects.requireNonNull(lastExecutionTime); return this; } @CustomType.Setter public Builder retentionPeriodDays(Integer retentionPeriodDays) { this.retentionPeriodDays = Objects.requireNonNull(retentionPeriodDays); return this; } @CustomType.Setter public Builder startTime(String startTime) { this.startTime = Objects.requireNonNull(startTime); return this; } public GetLinuxFunctionAppBackupSchedule build() { final var o = new GetLinuxFunctionAppBackupSchedule(); o.frequencyInterval = frequencyInterval; o.frequencyUnit = frequencyUnit; o.keepAtLeastOneBackup = keepAtLeastOneBackup; o.lastExecutionTime = lastExecutionTime; o.retentionPeriodDays = retentionPeriodDays; o.startTime = startTime; return o; } } }
[ "noreply@github.com" ]
pulumi.noreply@github.com
bace403ef7e7a524fa33c7bc4b4712ee4cc37256
bc4c238501f853885f1274981e222c85725e4986
/src/main/java/com/beerhouse/services/BeerService.java
90e646a0a2368bc6e50ee41a41d349651d9e2149
[]
no_license
pmizerani/craftbeer
4ff9d187e1610c61860c19cf62262035bb9e952e
c22e19af127c8209455b1fef8fc46c6845da7511
refs/heads/master
2020-05-05T08:25:09.633125
2019-04-07T20:32:44
2019-04-07T20:32:44
179,863,450
0
0
null
null
null
null
UTF-8
Java
false
false
2,124
java
package com.beerhouse.services; import com.beerhouse.domain.Beer; import com.beerhouse.dto.BeerDTO; import com.beerhouse.repositories.BeerRepository; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.stereotype.Service; import org.springframework.web.server.ResponseStatusException; import java.util.List; import java.util.Optional; import static org.springframework.beans.BeanUtils.copyProperties; @Service public class BeerService { @Autowired private BeerRepository beerRepository; public Beer create(BeerDTO beerDTO) { Beer beer = new Beer(); copyProperties(beerDTO, beer); return beerRepository.save(beer); } public List<Beer> findAll() { List<Beer> listBeer = beerRepository.findAll(); if (listBeer.isEmpty()) throw new ResponseStatusException(HttpStatus.NO_CONTENT); return listBeer; } public Beer findById(Long id) { return beerRepository.findById(id).orElseThrow(() -> new ResponseStatusException( HttpStatus.NOT_FOUND, "Beer not found! ID: " + id + ", Type: " + Beer.class.getName() )); } public void delete(Long id) { Beer beer = findById(id); beerRepository.delete(beer); } public Beer update(Long id, BeerDTO beerDTO) { Beer beer = findById(id); copyProperties(beerDTO, beer); return beerRepository.save(beer); } public Beer patch(Long id, BeerDTO beerDTO) { Beer beer = findById(id); beer.setName(Optional.ofNullable(beerDTO.getName()).orElse(beer.getName())); beer.setIngredients(Optional.ofNullable(beerDTO.getIngredients()).orElse(beer.getIngredients())); beer.setAlcoholContent(Optional.ofNullable(beerDTO.getAlcoholContent()).orElse(beer.getAlcoholContent())); beer.setPrice(Optional.ofNullable(beerDTO.getPrice()).orElse(beer.getPrice())); beer.setCategory(Optional.ofNullable(beerDTO.getCategory()).orElse(beer.getCategory())); return beerRepository.save(beer); } }
[ "phelipemizerani@gmail.com" ]
phelipemizerani@gmail.com
de195f69acfc4f1fd506b7397b6b90b342316aeb
5f5a639246349be64e135535912808ddce4b75f7
/src/CoffeeMachineInterface.java
faf072f9c3ce301929815d1219b250791428d20e
[]
no_license
Squyres/Adapter-Pattern
9d30b030a8827a2e91027c90198b791d4a23cc4f
f09ed7e8ec8310cc6138fce15388ee9b2943381b
refs/heads/master
2023-01-01T21:25:32.602971
2020-10-24T06:53:33
2020-10-24T06:53:33
306,816,978
0
0
null
null
null
null
UTF-8
Java
false
false
121
java
public interface CoffeeMachineInterface { public void chooseFirstSelection(); public void chooseSecondSelection(); }
[ "jamesonsquyres@gmail.com" ]
jamesonsquyres@gmail.com
fa73cc63a35986ca6e6b4e05ccecead1d9ac34c6
db3fc7bc789cccea38b78ed65cd1647906eb3052
/src/ressources/Cereale.java
dbd6c918e35e0f1d7036402d56c15c26fda0c6e3
[]
no_license
martialg/Agricola
05507ca6aba028d54dbebb0861c262e081a2a971
9d3c3e5381f0d300dd3de38c9619a86b1b451b97
refs/heads/master
2020-05-09T11:36:23.968117
2013-05-06T06:54:35
2013-05-06T06:54:35
null
0
0
null
null
null
null
UTF-8
Java
false
false
187
java
package ressources; public class Cereale extends Semaille{ public Cereale(){ super(); } public Cereale(int quantite){ super(quantite); } }
[ "martial.geoffrois@gmail.com" ]
martial.geoffrois@gmail.com
30d4684d06e910a272551799996f08837964fba0
50a461078c742bca4bad1f747aae9a9cea04d83a
/src/main/java/com/example/demo/model/Constraints/PasswordConstraintValidator.java
55c9978444ad06af8775085e0cdda434f42d82bc
[]
no_license
SakshiSharmaz/Assignment
83b569af9705aa77cf2cbb38dd7ffd2e85fd9c8b
a262b5d9768a4f6fe47d0054119b107729121153
refs/heads/master
2023-04-27T13:15:46.941977
2023-04-18T18:30:00
2023-04-18T18:30:00
183,191,059
0
0
null
null
null
null
UTF-8
Java
false
false
911
java
package com.example.demo.model.Constraints; import java.util.Arrays; import javax.validation.ConstraintValidator; import javax.validation.ConstraintValidatorContext; import org.passay.*; public class PasswordConstraintValidator implements ConstraintValidator<ValidPassword, String>{ @Override public void initialize(ValidPassword arg0) { } @Override public boolean isValid(String value, ConstraintValidatorContext context) { PasswordValidator validator = new PasswordValidator(Arrays.asList( new LengthRule(8, 15), new UppercaseCharacterRule(1), new DigitCharacterRule(1), new LowercaseCharacterRule(1) )); RuleResult result = validator.validate(new PasswordData(value)); if (result.isValid()) { return true; } return false; } }
[ "sakshiss.7699@gmail.com" ]
sakshiss.7699@gmail.com
006329080b1b8571ebf90699d1a5ef35c018990a
afb51692b6cd582b2d17c2fba564eedae334014b
/webanno-api/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/ProjectLifecycleAware.java
97152eda750dd7e8ac1328042b612661265706af
[ "Apache-2.0" ]
permissive
somiyagawa/webanno
8b4e243023fe6a50220dfc077a5a646966ed6ff9
ef1766dd07db79710d0263ce96d24ae49e64d550
refs/heads/master
2020-06-26T07:19:26.518302
2017-07-12T10:31:10
2017-07-12T10:31:10
97,009,139
1
0
null
2017-07-12T13:06:17
2017-07-12T13:06:17
null
UTF-8
Java
false
false
1,194
java
/* * Copyright 2017 * Ubiquitous Knowledge Processing (UKP) Lab and FG Language Technology * Technische Universität Darmstadt * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package de.tudarmstadt.ukp.clarin.webanno.api; import java.util.zip.ZipFile; import de.tudarmstadt.ukp.clarin.webanno.model.Project; public interface ProjectLifecycleAware { void afterProjectCreate(Project aProject) throws Exception; void beforeProjectRemove(Project aProject) throws Exception; void onProjectImport(ZipFile zip, de.tudarmstadt.ukp.clarin.webanno.export.model.Project aExportedProject, Project aProject) throws Exception; }
[ "richard.eckart@gmail.com" ]
richard.eckart@gmail.com
d1b0ca764adf2baded4868dc99236a6d8010102d
a77f5d2483199da065af5c080020e9265dd0b1da
/src/test/java/com/raven/sheiboi/tests/registereduser/FeedBackTest.java
af167acbb85c0ec0e37d2f3a3ea04c13e99a71d2
[]
no_license
nasersqabs23/SheiBoiAndroidAutomation
d912ca15230762f050bc5eb52451bd1e0ef014f1
dab47f836bf6cd26898ebab89d7a41ef66b88116
refs/heads/master
2021-01-21T19:47:52.321278
2017-05-23T10:42:13
2017-05-23T10:42:13
92,160,151
0
0
null
null
null
null
UTF-8
Java
false
false
1,297
java
package com.raven.sheiboi.tests.registereduser; import com.raven.sheiboi.pages.LoginPage; import com.raven.sheiboi.pages.FeedbackPage; import com.raven.sheiboi.pages.StartUpPage; import com.raven.sheiboi.utilities.AppInitializer; import io.appium.java_client.AppiumDriver; import io.appium.java_client.android.AndroidDriver; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.openqa.selenium.remote.CapabilityType; import org.openqa.selenium.remote.DesiredCapabilities; import java.io.File; import java.net.URL; import java.net.MalformedURLException; import static org.junit.Assert.assertArrayEquals; public class FeedBackTest { AppiumDriver driver; StartUpPage startUpPage; FeedbackPage feedbackPage; LoginPage loginPage; @Before public void setup ()throws MalformedURLException, InterruptedException{ AppInitializer app =new AppInitializer(); driver = app.getDriver(); startUpPage = new StartUpPage(driver); loginPage = new LoginPage(driver); feedbackPage = new FeedbackPage(driver); startUpPage.navigateToLoginPage(); loginPage.loginWithUserNameAndPassword("naser.bd.edu@gmail.com","Abcd1234.",driver); startUpPage.navigateToFeedBackPage(); } }
[ "naser.bd.edu@gmail.com" ]
naser.bd.edu@gmail.com
b68929e1ef2dc49fc50610b00867a1536c3bf1f2
fa4186f33e5b0e7af2ca6fe53d7c0f3170539757
/TrafficMonitor/src/com/dreamteam/trafficmonitor/db/MySQLiteOpenHelper.java
1c700a9ac5e531c44e1ab3318bcf1031fc1bbb76
[]
no_license
YingYou/AndroidTrafficMonitor
1ba0ce9051085e6d694d5245bfd6f454eb703887
1d0c9f0fe3f0459ff6f089e44ceefcff2345bd8e
refs/heads/master
2021-01-15T00:43:27.585556
2014-11-16T14:45:09
2014-11-16T14:45:09
null
0
0
null
null
null
null
GB18030
Java
false
false
4,884
java
package com.dreamteam.trafficmonitor.db; import com.dreamteam.trafficmonitor.customdialog.TrafficInfo; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.Collections; import java.util.Comparator; import java.util.Date; import android.content.Context; import android.content.pm.PackageManager; import android.content.pm.PackageManager.NameNotFoundException; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteDatabase.CursorFactory; import android.database.sqlite.SQLiteOpenHelper; import android.graphics.drawable.Drawable; import android.util.Log; public class MySQLiteOpenHelper extends SQLiteOpenHelper { public MySQLiteOpenHelper(Context context) { super(context, "TrafficDb", null, 1); Log.i("TrafficDb", "MySQLiteOpenHelper>>>>>>>>start"); } public MySQLiteOpenHelper(Context context, String name, CursorFactory factory, int version) { super(context, name, factory, version); // TODO Auto-generated constructor stub } @Override public void onCreate(SQLiteDatabase db) { // TODO Auto-generated method stub String CREATE_TrafficInfo_SQL = "CREATE TABLE TrafficInfo(" + "id INTEGER PRIMARY KEY AUTOINCREMENT," + "WIFI long default(0)," + "GPRS long default(0)," + "time TIMESTAMP default (datetime('now', 'localtime'))," + "packagename varchar(50))"; String CREATE_Plans_SQL = "CREATE TABLE Plans(" + "company varchar(20)," + "planName varchar(50) primary key," + "planTraffic int," + "planPrice int)"; // String DATE_TRIGGER =""; db.execSQL(CREATE_TrafficInfo_SQL); db.execSQL(CREATE_Plans_SQL); Log.i("TrifficDb", "onCreate>>>>>>>>>>>start"); } @Override public void onUpgrade(SQLiteDatabase db, int arg1, int arg2) { // TODO Auto-generated method stub } public void insertTrafficGPRS(long traffic, String packagename) { SQLiteDatabase db = getWritableDatabase(); String sql = "insert into TrafficInfo(GPRS,packagename) values(" + traffic + ",'"+ packagename + "')"; db.execSQL(sql); Log.i("TrafficDb", "insertTrafficGPRS>>>>>>>>>>>"); db.close(); } public void insertTrafficWIFI(long traffic, String packagename) { SQLiteDatabase db = getWritableDatabase(); String sql = "insert into TrafficInfo(WIFI,packagename) values(" + traffic +",'" + packagename + "')"; db.execSQL(sql); Log.i("TrafficDb", "insertTrafficWIFI>>>>>>>>>>>"); db.close(); } public ArrayList<TrafficInfo> queryByTime(Context context, String time) {// today,yesterday,samemonth SQLiteDatabase db = getReadableDatabase(); String time1; String time2; Date d = new Date(); SimpleDateFormat sDateFormat = new SimpleDateFormat( "yyyy-MM-dd 00:00:00"); if (time.equals("today")) { time1 = sDateFormat.format(d.getTime()); time2 = sDateFormat.format(new Date(d.getTime() + 24 * 60 * 60 * 1000)); } else if (time.equals("yesterday")) { time1 = sDateFormat.format(new Date(d.getTime() - 24 * 60 * 60 * 1000)); time2 = sDateFormat.format(d.getTime()); } else { Calendar a = Calendar.getInstance(); DateFormat df = new SimpleDateFormat("yyyy-MM-dd 00:00:00"); a.set(Calendar.DATE, 1);// 把日期设置为当月第一天 time1 = df.format(a.getTime()); a.roll(Calendar.DATE, -1);// 日期回滚一天,也就是最后一天 time2 = df.format(a.getTime()); } String sql = "select sum(WIFI),sum(GPRS),packagename from TrafficInfo where time>='" + time1 + "' and time<'" + time2 + "' Group by packagename"; ArrayList<TrafficInfo> appList = new ArrayList<TrafficInfo>(); PackageManager pm = context.getPackageManager(); // 获得PackageManager对象 Cursor cursor = db.rawQuery(sql, null); while (cursor.moveToNext()) { long WIFILong = cursor.getLong(0); long GPRSLong = cursor.getLong(1); String PackNameString = cursor.getString(2); Log.i("TrafficStatistics", GPRSLong +","+ WIFILong + PackNameString); TrafficInfo temp = new TrafficInfo(); try { Drawable icon = pm.getApplicationIcon(PackNameString); String name = pm.getApplicationLabel(pm.getApplicationInfo(PackNameString,0)).toString(); temp.setAppicon(icon); temp.setAppName(name); } catch (NameNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } temp.setGPRS(GPRSLong); temp.setWIFI(WIFILong); appList.add(temp); } Collections.sort(appList,new Comparator<TrafficInfo>(){ @Override public int compare(TrafficInfo info0, TrafficInfo info1) { // TODO Auto-generated method stub if(info0.getGPRS() != info1.getGPRS()){ return (int) (info1.getGPRS()-info0.getGPRS()); } else{ return (int) (info1.getWIFI()-info0.getWIFI()); } } }); db.close(); return appList; } }
[ "xuecci@gmail.com" ]
xuecci@gmail.com
1e41de6813c8d86c42a80e9ccc9cd8db9eab349c
c65031f502acc6b6abf998548de1b46cbe2fbbcd
/src/main/java/jp/co/fostone/springwebsys/jpa/entities/Player.java
3e9c1b6deb3b6dacaf1e4929c410e7fd41efbc01
[]
no_license
sukuang2020/SpringWebSys
211167dc5b5853bf28bf7690e836899d3f366d7e
9612ad4a03a0ccc1cb5963bd127d000952233828
refs/heads/master
2022-12-10T03:12:41.435373
2020-08-28T13:52:38
2020-08-28T13:52:38
289,636,134
0
0
null
null
null
null
UTF-8
Java
false
false
891
java
package jp.co.fostone.springwebsys.jpa.entities; import java.io.Serializable; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; import javax.validation.constraints.Max; import javax.validation.constraints.Min; import javax.validation.constraints.NotEmpty; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; @Entity @Table(name = "player") @Builder @Data @NoArgsConstructor @AllArgsConstructor public class Player implements Serializable { @Id private String id; @NotEmpty @Size(max = 40) private String name; @NotNull @Min(value = 18) @Max(value = 60) private Integer age; @NotEmpty @Size(max = 100) private String team; @NotEmpty @Size(max = 20) private String position; }
[ "sukuang2020@yahoo.co.jp" ]
sukuang2020@yahoo.co.jp
d68195adec5c6a3de6bf66a64b132ea0ce47a663
783167a62bb1def00dd653acd04c8c580604b661
/vs-spring-cloud/src/main/java/com/vs/springcloud/controller/FallBackIntegration.java
d59d0f716cbd72d6150df963eda4ec7536249f06
[]
no_license
vishabsingh/Microservices
5678be449f8dc3b0bc6ba622b48b8e1e03962759
4680a2fc667db0cdb120a859fce0931b9735d536
refs/heads/master
2023-06-15T21:02:30.959100
2021-07-14T05:17:40
2021-07-14T05:17:40
378,342,297
0
0
null
null
null
null
UTF-8
Java
false
false
611
java
package com.vs.springcloud.controller; import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @Component public class FallBackIntegration { @GetMapping("/employeeServiceFallBack") public String fallBackMethodForEmployee() { return "Employee Microservice is Down"; } @HystrixCommand(fallbackMethod = "save") public Object postEmployee() { return "Not Working"; } }
[ "recklessrajput23@gmail.com" ]
recklessrajput23@gmail.com
77138b79999f6f92f2c91f715ed222f2a2515b36
f52a5fc41c384393314af6a10af0e6daa545d37a
/AE-go_GameServer/src/com/aionemu/gameserver/network/aion/serverpackets/SM_CHARACTER_LIST.java
1c78dbce179875eefeddad013daca88ad83332d8
[]
no_license
flagada08/Aion-emu_project_1.9
f8f8e0bdf5f9a5c78acf8511d6f2aee359d66634
cab40fdc84ca8742b5badde954958ef323cca355
refs/heads/master
2023-01-20T09:03:37.704021
2020-11-26T12:11:38
2020-11-26T12:11:38
316,220,578
2
1
null
null
null
null
UTF-8
Java
false
false
1,872
java
/** * This file is part of aion-emu <aion-emu.com>. * * aion-emu 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. * * aion-emu 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 aion-emu. If not, see <http://www.gnu.org/licenses/>. */ package com.aionemu.gameserver.network.aion.serverpackets; import java.nio.ByteBuffer; import com.aionemu.gameserver.model.account.Account; import com.aionemu.gameserver.model.account.PlayerAccountData; import com.aionemu.gameserver.network.aion.AionConnection; import com.aionemu.gameserver.network.aion.PlayerInfo; /** * In this packet Server is sending Character List to client. * * @author Nemesiss, AEJTester * */ public class SM_CHARACTER_LIST extends PlayerInfo { /** * PlayOk2 - we dont care... */ private final int playOk2; /** * Constructs new <tt>SM_CHARACTER_LIST </tt> packet */ public SM_CHARACTER_LIST(int playOk2) { this.playOk2 = playOk2; } /** * {@inheritDoc} */ @Override protected void writeImpl(AionConnection con, ByteBuffer buf) { writeD(buf, playOk2); Account account = con.getAccount(); writeC(buf, account.size());// characters count for(PlayerAccountData playerData : account) { writePlayerInfo(buf, playerData); writeB(buf, new byte[14]); } } /** * @param buf * @param playerData * @param items */ }
[ "flagada08@gmail.com" ]
flagada08@gmail.com
8868086599a2d1b898af6c30a85f839d20680d0e
549f93d15491542d5dfc53452842d6e11aba6b3d
/src/models/ThongTinTra.java
0791a58382538e536d8f8cd4cdd538e2f612d346
[]
no_license
quanghuy1242/hotel-management
f1c6daa27ca34b1411bc35eeac7f7569ceade9d5
8bb958470ff5327f4b4270fca5918677fa1ed5cf
refs/heads/master
2020-08-08T19:52:29.688341
2019-10-10T15:07:53
2019-10-10T15:07:53
213,903,731
0
0
null
null
null
null
UTF-8
Java
false
false
1,164
java
package models; public class ThongTinTra { private String maTraPhong; private String maNhanPhong; private String maNgayTra; private String gioTra; public String getMaTraPhong() { return maTraPhong; } public void setMaTraPhong(String maTraPhong) { this.maTraPhong = maTraPhong; } public String getMaNhanPhong() { return maNhanPhong; } public void setMaNhanPhong(String maNhanPhong) { this.maNhanPhong = maNhanPhong; } public String getMaNgayTra() { return maNgayTra; } public void setMaNgayTra(String maNgayTra) { this.maNgayTra = maNgayTra; } public String getGioTra() { return gioTra; } public void setGioTra(String gioTra) { this.gioTra = gioTra; } public ThongTinTra(String maTraPhong, String maNhanPhong, String maNgayTra, String gioTra) { super(); this.maTraPhong = maTraPhong; this.maNhanPhong = maNhanPhong; this.maNgayTra = maNgayTra; this.gioTra = gioTra; } public ThongTinTra() { super(); // TODO Auto-generated constructor stub } @Override public String toString() { return maTraPhong + ";" + maNhanPhong + ";" + maNgayTra + ";" + gioTra; } }
[ "katygaga124@gmail.com" ]
katygaga124@gmail.com
a05eca13e870530bcb0d45f01796a455dc3b4c43
e8e95e8b988b3fc97733d1df7be058ec8ea6f367
/src/day3/Greeter.java
a87972f1a42a9f7ae6cd3ca5b1779211a5b704b5
[]
no_license
League-Workshop/intro-to-java-workshop-chriss2222
e1970c1e6ec362264f7f332f9a7d56006829d03a
050c60ba8b68388fbd77908fc70d4f55e05310c0
refs/heads/master
2021-01-01T17:59:38.586930
2017-07-28T18:50:28
2017-07-28T18:50:28
98,215,484
0
0
null
null
null
null
UTF-8
Java
false
false
348
java
package day3; import javax.swing.JOptionPane; public class Greeter { public static void main(String[] args) { String name = JOptionPane.showInputDialog("What is Your Name?"); JOptionPane.showMessageDialog(null, "Hello "+ name); JOptionPane.showInputDialog("How are you?"); JOptionPane.showMessageDialog(null, "Goodbye"); } }
[ "league@WTS7.attlocal.net" ]
league@WTS7.attlocal.net
e96a1399f7d48ceec7b03058cfd2b59e6bd9cbcf
779c34d079fa84ca98613b4792e3905a2220040e
/src/Sort_Algorithm/sort_selectionSort.java
ccbc27b2abfec1ee3df4784d6297756cc5b50dab
[]
no_license
CleuJunior/Algoritmos-e-Estruturas-de-Dado
c4dc2c6ea0e2cb681d2212117b2649c6cbd6cc75
c34abcb013a350d56021c0811aef1ea9073a4b87
refs/heads/master
2022-06-25T16:12:51.983340
2020-05-08T00:59:01
2020-05-08T00:59:01
262,131,842
1
0
null
null
null
null
ISO-8859-1
Java
false
false
1,932
java
package Sort_Algorithm; public class sort_selectionSort { // Metodo para comparar os elementos, e caso o elemento A for maior que o // elemento B, eles serão trocados de posição. public static void troca(int[] array, int i, int j) { if (i == j) return; int temp = array[i]; array[i] = array[j]; array[j] = temp; } public static void main(String[] args) { int intArray[] = { 77, -1, -6, 13, 3, 9, 2 }; // Implementando o primeiro laço FOR para poder comparar o índice atual com o // próximo da lista. for (int ultimoIndexNaoOrdenado = intArray.length - 1; ultimoIndexNaoOrdenado > 0; ultimoIndexNaoOrdenado--) { // Variável (maior) que vai receber o maior número da array caso esteja dentro // de alguma certa condição, veremos mais abaixo. int maior = 0; // Laço FOR interno, ele serve para comparar os índices com o do laço FOR acima. // Diferente do Bubble Sort, esse laço FOR ele é inclusivo, ou seja, ele também // vai comparar sempre a última posição do índice, por isso ele é // (i <= ultimoIndexNaoOrdenado). for (int i = 0; i <= ultimoIndexNaoOrdenado; i++) { // Condicional IF, aonde iremos comparar o índice (intArray[i]) com o índice // (intArray[maior]), e caso o índice (intArray[i]) for o maior (>>) // a variável (maior) vai // receber o valor de (i). if (intArray[i] > intArray[maior]) maior = i; } // Apos a interação, iremos fazer a troca do ULTIMO elemento da array, com o // maior valor encontrando, // que estará armazenado na variável (maior). troca(intArray, maior, ultimoIndexNaoOrdenado); } // Impressão feita, apos a ordenação de valores. System.out.println(java.util.Arrays.toString(intArray)); // O Selection Sort também é uma algorítimo de busca de complexidade quadrática, // O(n^2), porem ele precisa fazer bem menos troca que o Bubble Sort. } }
[ "cleu.junior@gmail.com" ]
cleu.junior@gmail.com
3bbe94650b1f0ab94788d5ef95618b4ca7f9638d
f036b5cb0fbc7ad9ee5d8edfdc83100a9ba61a52
/Nuevo/src/nuevo/igu/MainFrame.java
0478756abf7eed83abb462c3fdc75b32d8044eac
[]
no_license
maiksurco/ProyectoIntegradorCiclo2
833a7206fce417738a0e9c7ab6fc42dd183d928d
088bb80818cde14928869f4872562b20e88458fb
refs/heads/main
2023-02-04T03:00:37.869221
2020-12-24T02:41:38
2020-12-24T02:41:38
323,342,871
0
0
null
null
null
null
UTF-8
Java
false
false
13,403
java
package nuevo.igu; import entidades.Cliente; import java.awt.Color; import paneles.CategoriaPanel; import paneles.ClientePanel; import paneles.ProductoPanel; import paneles.ProveedorPanel; import utils.ChangePanel; import paneles.VentasPanel; public class MainFrame extends javax.swing.JFrame { public MainFrame() { initComponents(); this.setExtendedState(MAXIMIZED_BOTH); } @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { PanelPrincipal = new javax.swing.JPanel(); jPanel1 = new javax.swing.JPanel(); PRODUCTOS = new nuevo.igu.modelo.button.TheButton(); CLIENTES = new nuevo.igu.modelo.button.TheButton(); PROVEEDORES = new nuevo.igu.modelo.button.TheButton(); VENTAS = new nuevo.igu.modelo.button.TheButton(); COMPRA_PRO = new nuevo.igu.modelo.button.TheButton(); CATEGORIA = new nuevo.igu.modelo.button.TheButton(); Escritorio = new javax.swing.JPanel(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); PanelPrincipal.setBackground(new java.awt.Color(255, 255, 255)); jPanel1.setBackground(new java.awt.Color(0, 204, 153)); PRODUCTOS.setIcon(new javax.swing.ImageIcon(getClass().getResource("/iconos/Productos.png"))); // NOI18N PRODUCTOS.setText("Productos"); PRODUCTOS.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { PRODUCTOSActionPerformed(evt); } }); CLIENTES.setIcon(new javax.swing.ImageIcon(getClass().getResource("/iconos/Clientes.png"))); // NOI18N CLIENTES.setText("Clientes"); CLIENTES.addMouseListener(new java.awt.event.MouseAdapter() { public void mousePressed(java.awt.event.MouseEvent evt) { CLIENTESMousePressed(evt); } }); CLIENTES.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { CLIENTESActionPerformed(evt); } }); PROVEEDORES.setIcon(new javax.swing.ImageIcon(getClass().getResource("/iconos/Proveedor.png"))); // NOI18N PROVEEDORES.setText("Proveedores"); PROVEEDORES.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { PROVEEDORESActionPerformed(evt); } }); VENTAS.setIcon(new javax.swing.ImageIcon(getClass().getResource("/iconos/Ventas.png"))); // NOI18N VENTAS.setText("Ventas"); VENTAS.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { VENTASActionPerformed(evt); } }); COMPRA_PRO.setIcon(new javax.swing.ImageIcon(getClass().getResource("/iconos/Compra.png"))); // NOI18N COMPRA_PRO.setText("Compra Pro."); COMPRA_PRO.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { COMPRA_PROActionPerformed(evt); } }); CATEGORIA.setIcon(new javax.swing.ImageIcon(getClass().getResource("/iconos/Categoria.png"))); // NOI18N CATEGORIA.setText("Categoría"); CATEGORIA.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { CATEGORIAActionPerformed(evt); } }); javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1); jPanel1.setLayout(jPanel1Layout); jPanel1Layout.setHorizontalGroup( jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel1Layout.createSequentialGroup() .addContainerGap() .addComponent(PRODUCTOS, javax.swing.GroupLayout.PREFERRED_SIZE, 180, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(CLIENTES, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(PROVEEDORES, javax.swing.GroupLayout.PREFERRED_SIZE, 200, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(VENTAS, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(COMPRA_PRO, javax.swing.GroupLayout.PREFERRED_SIZE, 208, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(CATEGORIA, javax.swing.GroupLayout.PREFERRED_SIZE, 178, javax.swing.GroupLayout.PREFERRED_SIZE) .addContainerGap(64, Short.MAX_VALUE)) ); jPanel1Layout.setVerticalGroup( jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(PRODUCTOS, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 70, Short.MAX_VALUE) .addComponent(CLIENTES, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(PROVEEDORES, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(VENTAS, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(COMPRA_PRO, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(CATEGORIA, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) ); Escritorio.setBorder(new javax.swing.border.SoftBevelBorder(javax.swing.border.BevelBorder.RAISED)); Escritorio.setLayout(new javax.swing.BoxLayout(Escritorio, javax.swing.BoxLayout.LINE_AXIS)); javax.swing.GroupLayout PanelPrincipalLayout = new javax.swing.GroupLayout(PanelPrincipal); PanelPrincipal.setLayout(PanelPrincipalLayout); PanelPrincipalLayout.setHorizontalGroup( PanelPrincipalLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addGroup(PanelPrincipalLayout.createSequentialGroup() .addContainerGap() .addComponent(Escritorio, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addContainerGap()) ); PanelPrincipalLayout.setVerticalGroup( PanelPrincipalLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(PanelPrincipalLayout.createSequentialGroup() .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(Escritorio, javax.swing.GroupLayout.DEFAULT_SIZE, 340, Short.MAX_VALUE) .addContainerGap()) ); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(PanelPrincipal, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(PanelPrincipal, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) ); pack(); }// </editor-fold>//GEN-END:initComponents private void COMPRA_PROActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_COMPRA_PROActionPerformed }//GEN-LAST:event_COMPRA_PROActionPerformed private void CLIENTESActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_CLIENTESActionPerformed new ChangePanel(Escritorio, new ClientePanel()); if (this.CLIENTES.isSelected()) { this.CLIENTES.setColorNormal(new Color(204, 204, 204)); this.PRODUCTOS.setColorNormal(new Color(239, 238, 244)); this.PROVEEDORES.setColorNormal(new Color(239, 238, 244)); this.COMPRA_PRO.setColorNormal(new Color(239, 238, 244)); this.CATEGORIA.setColorNormal(new Color(239, 238, 244)); this.VENTAS.setColorNormal(new Color(239, 238, 244)); } else { this.CLIENTES.setColorNormal(new Color(239, 238, 244)); } }//GEN-LAST:event_CLIENTESActionPerformed private void CLIENTESMousePressed(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_CLIENTESMousePressed // TODO add your handling code here: this.CLIENTES.setSelected(true); this.PRODUCTOS.setSelected(false); this.PROVEEDORES.setSelected(false); this.COMPRA_PRO.setSelected(false); this.CATEGORIA.setSelected(false); this.VENTAS.setSelected(false); }//GEN-LAST:event_CLIENTESMousePressed private void PRODUCTOSActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_PRODUCTOSActionPerformed // TODO add your handling code here: new ChangePanel(Escritorio, new ProductoPanel()); }//GEN-LAST:event_PRODUCTOSActionPerformed private void VENTASActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_VENTASActionPerformed // TODO add your handling code here: new ChangePanel(Escritorio, new VentasPanel()); }//GEN-LAST:event_VENTASActionPerformed private void PROVEEDORESActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_PROVEEDORESActionPerformed // TODO add your handling code here: new ChangePanel(Escritorio, new ProveedorPanel()); }//GEN-LAST:event_PROVEEDORESActionPerformed private void CATEGORIAActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_CATEGORIAActionPerformed // TODO add your handling code here: new ChangePanel(Escritorio, new CategoriaPanel()); }//GEN-LAST:event_CATEGORIAActionPerformed /** * @param args the command line arguments */ public static void main(String args[]) { /* Set the Nimbus look and feel */ //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) "> /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel. * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html */ try { for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) { if ("Nimbus".equals(info.getName())) { javax.swing.UIManager.setLookAndFeel(info.getClassName()); break; } } } catch (ClassNotFoundException ex) { java.util.logging.Logger.getLogger(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } //</editor-fold> /* Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new MainFrame().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private nuevo.igu.modelo.button.TheButton CATEGORIA; private nuevo.igu.modelo.button.TheButton CLIENTES; private nuevo.igu.modelo.button.TheButton COMPRA_PRO; public static javax.swing.JPanel Escritorio; private nuevo.igu.modelo.button.TheButton PRODUCTOS; private nuevo.igu.modelo.button.TheButton PROVEEDORES; private javax.swing.JPanel PanelPrincipal; private nuevo.igu.modelo.button.TheButton VENTAS; private javax.swing.JPanel jPanel1; // End of variables declaration//GEN-END:variables }
[ "Maik.30@gmail.com" ]
Maik.30@gmail.com
b8640c6b9a2eb0894135f691a7398e7180ad652b
84e5be2bbacfb7de0364a9badd7d0c9a69d381c1
/middle_chapter_01/src/main/java/ru/job4j/blockingqueue/SimpleBlockingQueue.java
05910bd8f3d0e93c4f2d6b849e091d61f2823bcf
[ "Apache-2.0" ]
permissive
RomanMorozov88/job4j
48b0c068c4ff7c8a012f42c1d9cc1e21e7e470b0
915584a57a0a0cfd6315589ab5739747e3305cab
refs/heads/master
2022-12-27T00:06:12.972273
2020-05-25T09:04:36
2020-07-09T12:23:21
137,212,032
0
0
Apache-2.0
2022-12-16T15:33:52
2018-06-13T12:24:04
Java
UTF-8
Java
false
false
1,225
java
package ru.job4j.blockingqueue; import net.jcip.annotations.GuardedBy; import net.jcip.annotations.ThreadSafe; import java.util.LinkedList; import java.util.Queue; /** * Блокирующая очередь. * При пустой очереди или при количестве элементов в очереди * более чем значение sizeLimit будет вызван метод wait() * для вызывающего потока. * * @param <T> */ @ThreadSafe public class SimpleBlockingQueue<T> { @GuardedBy("this") private Queue<T> queue = new LinkedList<>(); private final int sizeLimit; public SimpleBlockingQueue(int sizeLimit) { this.sizeLimit = sizeLimit; } public synchronized boolean isEmpty() { return this.queue.isEmpty(); } public synchronized void offer(T value) throws InterruptedException { while (this.queue.size() >= this.sizeLimit) { wait(); } this.queue.offer(value); notify(); } public synchronized T poll() throws InterruptedException { while (this.queue.size() < 1) { wait(); } notify(); return this.queue.poll(); } }
[ "MorozovRoman.88@mail.ru" ]
MorozovRoman.88@mail.ru
20f45fef50f807fa957c281eabdfbd247090c59e
f2ec68f797c93c763777677d40020956357d325c
/src/db/DbIntegrityException.java
63f1e9c54fc30f1fcfc2134c21efebb714d12b93
[]
no_license
vitoraalmeida/demo-dao-jdbc
dd5e16d7d35434cddbd43e36dddc2c8eb5b1adba
08e714a02fe639a06722a099a9d4a40d3139f5c0
refs/heads/master
2020-05-25T17:09:15.509176
2019-05-21T23:48:53
2019-05-21T23:48:53
187,903,446
0
0
null
null
null
null
UTF-8
Java
false
false
202
java
package db; public class DbIntegrityException extends RuntimeException{ private static final long seiralVersionUID = 1l; public DbIntegrityException(String msg){ super(msg); } }
[ "pro.vitoralmeida@gmail.com" ]
pro.vitoralmeida@gmail.com
3d058e1f0bebbe9e38a6a20d336c6acd0ab41e26
5903ef2e3a2fcad0285b5d3cb77640ba403c46e3
/hasor-tconsole/src/main/java/net/hasor/tconsole/package-info.java
a57530d1a841aaa0a237d9012ecfab26922aeb45
[ "Apache-2.0" ]
permissive
yanqinghao/hasor
7b0fc3f1ab8faaefc1ac936fa7ee0bb6d5cc4c76
362f23024b7fee679083c510c888826008bf2708
refs/heads/master
2023-01-08T22:42:13.918531
2020-11-09T03:20:30
2020-11-09T03:20:30
309,303,385
0
0
Apache-2.0
2020-11-02T08:25:03
2020-11-02T08:25:02
null
UTF-8
Java
false
false
899
java
/* * Copyright 2008-2009 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * tConsole 框架,可以为应用程序提供简单的交互媒介。可以帮助构建一个命令行工具应用,也可以帮助应用开放一个基于 telnet 的命令行交互界面。 */ @IgnoreProxy package net.hasor.tconsole; import net.hasor.core.IgnoreProxy;
[ "zyc@hasor.net" ]
zyc@hasor.net
47c03970e67c211bd0fcf83c9bc90ba265c597e8
cfd634f978ecf82cc3b585edbb659e2b7b9425c5
/src/main/java/com/example/cinema/domain/Session.java
0c67e1ef25347bf3a0975acf4f57d3485c5561ba
[]
no_license
marcinESzulczyk/cinema
eb915a0de22331ca6a5dbf08ed442b3e60719e8a
f4424add3b582be7ae8e52398e43ab04703d2768
refs/heads/master
2020-08-22T10:01:50.360184
2019-10-20T14:03:29
2019-10-20T14:03:29
216,370,985
0
0
null
null
null
null
UTF-8
Java
false
false
2,524
java
package com.example.cinema.domain; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.slf4j.LoggerFactory; import javax.naming.Name; import javax.persistence.*; import java.time.LocalDateTime; import java.util.ArrayList; import java.util.List; @Entity @NamedEntityGraph(name = "Session.tickets", attributeNodes = @NamedAttributeNode("tickets")) //@JsonIgnoreProperties({"hibernateLazyInitializer", "handler"}) //@JsonIgnoreProperties(ignoreUnknown=true) public class Session { @Id @GeneratedValue(strategy = GenerationType.SEQUENCE) private Long id; private LocalDateTime startTime; public Session(){} public Session(Long id, LocalDateTime startTime) { this.id = id; this.startTime = startTime; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public LocalDateTime getStartTime() { return startTime; } public void setStartTime(LocalDateTime startTime) { this.startTime = startTime; } @Override public boolean equals(Object o) { if (this == o) return true; if (!(o instanceof Session)) return false; Session other = (Session) o; return id != null && id.equals(other.getId()); } @Override public int hashCode() { return 31;} @Override public String toString() { return "Session{" + "id=" + id + ", startTime=" + startTime + '}'; } @ManyToOne @JsonIgnore @JoinColumn(name = "movie_id") private Movie movie; @ManyToOne @JsonIgnore @JoinColumn(name = "room_id") private Room room; @OneToMany(mappedBy = "session", cascade = CascadeType.ALL, orphanRemoval = true) @JsonIgnore private List<Ticket>tickets; public Movie getMovie() { return movie; } public void setMovie(Movie movie) { this.movie = movie; } public Room getRoom() { return room; } public void setRoom(Room room) { this.room = room; } public List<Ticket> getTickets() { if(tickets==null){ tickets = new ArrayList<>(); } return tickets; } public void setTickets(List<Ticket> tickets) { this.tickets = tickets; } public void addTicket(Ticket ticket){ getTickets().add(ticket); ticket.setSession(this); } }
[ "marcin.szulczyk@op.pl" ]
marcin.szulczyk@op.pl
849e4fba95c175f29753f1ea35da868622fae11c
ca66de3d6dbbd638eb4b872d3da3aaa7a6fd8827
/src/main/java/QuizfulTest/UserMainPage.java
99014e9be8c797066e26ae365457bb965299a93f
[]
no_license
oventrop/Quizful
d5a6037e3e8cce09d0b434a9423d752101f37ced
71b2d40260ec36840c82e98011f5e38f3a9c604f
refs/heads/master
2021-07-04T17:45:27.610795
2017-09-27T15:20:02
2017-09-27T15:20:02
104,788,970
0
0
null
null
null
null
UTF-8
Java
false
false
402
java
package QuizfulTest; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; public class UserMainPage extends Page { public UserMainPage(WebDriver driver) { super(driver); } public void goToUserAccount() { WebElement user = getDriver().findElement(By.xpath("//*[@id=\"user-panel\"]/li[1]/b/a")); user.click(); } }
[ "noreply@github.com" ]
oventrop.noreply@github.com
94fbe78bae88db8569fc9ef0d211b82eb13ba38f
99ef00ae4e6054a0208ce99c6a6ec74074c55671
/src/main/java/com/cpe/conferenceRoomReserveApp/security/SecurityConfiguration.java
ff16765d8df3fc56a9ca6bfff7ef84fdea4f421c
[]
no_license
NontawatWuttikam/Conference-Room-Reservation-SpringBoot
382135dd5c17dd7ae29f9ad97a4781bb0fbdd52e
88d9aa1e985947a0350d05558ddb7fb9f1503ec4
refs/heads/main
2023-03-01T00:32:30.809691
2021-02-12T13:09:10
2021-02-12T13:09:10
331,175,731
1
0
null
null
null
null
UTF-8
Java
false
false
2,111
java
package com.cpe.conferenceRoomReserveApp.security; import com.cpe.conferenceRoomReserveApp.service.UserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.security.authentication.dao.DaoAuthenticationProvider; import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; import org.springframework.security.web.util.matcher.AntPathRequestMatcher; @Configuration public class SecurityConfiguration extends WebSecurityConfigurerAdapter { @Autowired private UserService userService; @Override protected void configure(HttpSecurity http) throws Exception { http.authorizeRequests().antMatchers("/registration**", "/js/**", "/css/**", "/img/**", "/webjars/**") .permitAll().anyRequest().authenticated().and().formLogin().loginPage("/login").permitAll() .defaultSuccessUrl("/home", true).and().logout().invalidateHttpSession(true).clearAuthentication(true) .logoutRequestMatcher(new AntPathRequestMatcher("/logout")).logoutSuccessUrl("/login?logout") .permitAll(); http.csrf().disable(); } @Bean public BCryptPasswordEncoder passwordEncoder() { return new BCryptPasswordEncoder(); } @Bean public DaoAuthenticationProvider authenticationProvider() { DaoAuthenticationProvider auth = new DaoAuthenticationProvider(); auth.setUserDetailsService(userService); auth.setPasswordEncoder(passwordEncoder()); return auth; } @Override protected void configure(AuthenticationManagerBuilder auth) throws Exception { auth.authenticationProvider(authenticationProvider()); } }
[ "nontawatwuttikam@gmail.com" ]
nontawatwuttikam@gmail.com
4fefdce9ffcb6a710ddbb691ef1928f31ba15ca9
af465683fccb8ed1e196fcc10ed5c32d5ba4d3b8
/src/main/java/utils/xcommon/util/lock/test/t0lock/TestMain.java
8457e341b3dd94270b48b4fa397d416d91ca313e
[]
no_license
xuxiaominf/xcommon
69134f2e99e4516bdf9d36b9340a1bb1a7921e88
3484b66d01c19660541a4bc052dfd94605b8c6d4
refs/heads/master
2020-03-25T01:49:47.088036
2019-04-23T08:08:02
2019-04-23T08:08:02
143,258,963
1
0
null
null
null
null
UTF-8
Java
false
false
412
java
package utils.xcommon.util.lock.test.t0lock; public class TestMain { public static void main(String[] args) { TestLock lock = new TestLock(); NumberOutputThread numberThread = new NumberOutputThread(lock); numberThread.setName("NumberThread"); CharOutputThread charThread = new CharOutputThread(lock); charThread.setName("CharThread"); numberThread.start(); charThread.start(); } }
[ "xuxiaominf@126.com" ]
xuxiaominf@126.com
42a603034206e4c5cb72b2e790b42edd5ca06808
9b47999445660759e0df77c8f71af7cd0068b6ca
/projet_mobile_freelance/projet_mobile_freelance/src/com/mycompany/Services/ServiceCategorie_freelance.java
419eec16a00c6648124c0b0e101c1280b563741a
[]
no_license
ahmedhaddad949/pi_desktop
9c7d8bcd4b5b2b440378e8889d97829d2a4230d2
51b00e967ef18123cee253cf65c710c2a0ca6a5f
refs/heads/main
2023-05-03T01:53:08.813074
2021-05-20T20:01:47
2021-05-20T20:01:47
357,187,108
0
0
null
null
null
null
UTF-8
Java
false
false
3,302
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.mycompany.Services; import com.codename1.io.ConnectionRequest; import com.mycompany.Models.categorie_freelance; import com.codename1.io.CharArrayReader; import com.codename1.io.ConnectionRequest; import com.codename1.io.JSONParser; import com.codename1.io.NetworkEvent; import com.codename1.io.NetworkManager; import com.codename1.ui.events.ActionListener; import com.mycompany.Utils.Statics; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.Map; /** * * @author hadda */ public class ServiceCategorie_freelance { public ArrayList<categorie_freelance> categorie_freelances; public static ServiceCategorie_freelance instance = null; public boolean resultOK; private ConnectionRequest req; public ServiceCategorie_freelance() { req = new ConnectionRequest(); } public static ServiceCategorie_freelance getInstance() { if (instance == null) { instance = new ServiceCategorie_freelance(); } return instance; } public ArrayList<categorie_freelance> parsecategorie_freelance(String jsonText) { try { categorie_freelances = new ArrayList<>(); JSONParser j = new JSONParser(); Map<String, Object> ReclamationListJson = j.parseJSON(new CharArrayReader(jsonText.toCharArray())); List<Map<String, Object>> list = (List<Map<String, Object>>) ReclamationListJson.get("root"); for (Map<String, Object> obj : list) { categorie_freelance categorie = new categorie_freelance(); float id = Float.parseFloat(obj.get("id").toString()); categorie.setId((int) id); float nbrOffres = Float.parseFloat(obj.get("nbr_offre_fr").toString()); categorie.setNbrOffres_fr((int) nbrOffres); categorie.setNom_cat_fr(obj.get("nom_cat_fr").toString()); categorie.setDescription_cat_fr(obj.get("description_cat_fr").toString()); // questionnaire q =new questionnaire(); // q.setDescription_cat_qst((String) map.get("description_cat_qst")); categorie_freelances.add(categorie); } } catch (IOException ex) { System.out.println("Exception in parsing reclamations "); } return categorie_freelances; } public ArrayList<categorie_freelance> findAll() { String url = Statics.BASE_URL + "category/freelance/afficherCTF_Mobile"; req.setUrl(url); req.setPost(false); req.addResponseListener(new ActionListener<NetworkEvent>() { @Override public void actionPerformed(NetworkEvent evt) { categorie_freelances = parsecategorie_freelance(new String(req.getResponseData())); req.removeResponseListener(this); } }); NetworkManager.getInstance().addToQueueAndWait(req); return categorie_freelances; } }
[ "45522348+zaykadhi@users.noreply.github.com" ]
45522348+zaykadhi@users.noreply.github.com
849b749e81c3a6ffaffbe54cb9fd71613a7ff6f9
46eb71d55c1ccebc8fa0669a63768d2b8d8fc5f5
/PopularMoviesApp/app/src/main/java/com/mycompany/omkar/popularmoviesapp/data/FavouriteMoviesContract.java
deaff7db5f432bce899e00daefbb188ae0d65619
[]
no_license
omkar13/Android_Nanodegree_Project1
e7e5c98dd1f097f4ea12fa45442aa20717aa5e8b
3f8f5616f5462150b4e577dc412a7746fb6e9271
refs/heads/master
2021-01-10T05:59:31.960331
2016-04-08T19:40:42
2016-04-08T19:40:42
52,208,107
0
0
null
null
null
null
UTF-8
Java
false
false
2,085
java
package com.mycompany.omkar.popularmoviesapp.data; import android.content.ContentResolver; import android.content.ContentUris; import android.net.Uri; import android.provider.BaseColumns; /** * Created by omkar on 3/4/16. */ public class FavouriteMoviesContract { public static final String CONTENT_AUTHORITY = "com.mycompany.omkar.popularmoviesapp.app"; public static final Uri BASE_CONTENT_URI = Uri.parse("content://" + CONTENT_AUTHORITY); /*inner class that defines the table contents of the fav movies table*/ public static final class FavMoviesEntry implements BaseColumns{ //table name public static final String TABLE_FAV_MOVIES = "favMovies"; //columns public static final String _ID = "_id"; public static final String COLUMN_TITLE = "title"; public static final String COLUMN_RELEASE_DATE = "release_date"; public static final String COLUMN_URL = "url"; public static final String COLUMN_VOTE_AVERAGE = "vote_average"; public static final String COLUMN_OVERVIEW = "overview"; public static final String COLUMN_MOVIE_ID = "movie_id"; // public static final String COLUMN_MOVIE_ICON = "icon"; //public static final String COLUMN_REVIEW_LIST //public static final String COLUMN_TRAILER_LIST //create content uri public static final Uri CONTENT_URI = BASE_CONTENT_URI.buildUpon().appendPath(TABLE_FAV_MOVIES).build(); //create cursor of base type directory for multiple entries public static final String CONTENT_DIR_TYPE = ContentResolver.CURSOR_DIR_BASE_TYPE + "/" + CONTENT_AUTHORITY + "/" + TABLE_FAV_MOVIES; //create cursor of base type directory for single entries public static final String CONTENT_ITEM_TYPE = ContentResolver.CURSOR_ITEM_BASE_TYPE + "/" + CONTENT_AUTHORITY + "/" + TABLE_FAV_MOVIES; //for building uris on insertion public static Uri buildFavMoviesUri(long id){ return ContentUris.withAppendedId(CONTENT_URI , id); } } }
[ "omkarvdamle13@gmail.com" ]
omkarvdamle13@gmail.com
d6b15ea1b80542b06e6458306d2a0d53a5895611
81b0bb3cfb2e9501f53451e7f03ec072ee2b0e13
/src/com/facebook/AccessTokenTracker$CurrentAccessTokenBroadcastReceiver.java
7cba0fd05ceec4030f2f69a2767bb4b977854a5f
[]
no_license
reverseengineeringer/me.lyft.android
48bb85e8693ce4dab50185424d2ec51debf5c243
8c26caeeb54ffbde0711d3ce8b187480d84968ef
refs/heads/master
2021-01-19T02:32:03.752176
2016-07-19T16:30:00
2016-07-19T16:30:00
63,710,356
3
0
null
null
null
null
UTF-8
Java
false
false
974
java
package com.facebook; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; class AccessTokenTracker$CurrentAccessTokenBroadcastReceiver extends BroadcastReceiver { private AccessTokenTracker$CurrentAccessTokenBroadcastReceiver(AccessTokenTracker paramAccessTokenTracker) {} public void onReceive(Context paramContext, Intent paramIntent) { if ("com.facebook.sdk.ACTION_CURRENT_ACCESS_TOKEN_CHANGED".equals(paramIntent.getAction())) { paramContext = (AccessToken)paramIntent.getParcelableExtra("com.facebook.sdk.EXTRA_OLD_ACCESS_TOKEN"); paramIntent = (AccessToken)paramIntent.getParcelableExtra("com.facebook.sdk.EXTRA_NEW_ACCESS_TOKEN"); this$0.onCurrentAccessTokenChanged(paramContext, paramIntent); } } } /* Location: * Qualified Name: com.facebook.AccessTokenTracker.CurrentAccessTokenBroadcastReceiver * Java Class Version: 6 (50.0) * JD-Core Version: 0.7.1 */
[ "reverseengineeringer@hackeradmin.com" ]
reverseengineeringer@hackeradmin.com
28aa33523301dec9cbc77d0d126f5ccb088ae2fb
60c238569d3b42208e235dc162a16481b759b34b
/src/com/google/common/css/SubstitutionMapProvider.java
eed640e20e587a8d17be8256ad4c1398b6fcb17f
[ "Apache-2.0" ]
permissive
Bloombox/closure-stylesheets
bde7c8813bde582f587fa214c3881bb334564b92
716aed6cde8772d8f119e813c1b48fb3a13d974c
refs/heads/master
2021-07-01T10:17:11.329395
2021-06-23T22:59:22
2021-06-23T22:59:22
172,583,815
1
0
Apache-2.0
2020-08-14T02:27:43
2019-02-25T20:59:02
Java
UTF-8
Java
false
false
1,020
java
/* * Copyright 2011 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.css; /** * Provides substitution maps for use with command-line compilers. * * Any implementation should provide a parameterless constructor, as the * provider is instantiated via {@link Class#newInstance()}. * */ public interface SubstitutionMapProvider { /** * Gets the substitution map. * * @return The substitution map provided by this class. */ SubstitutionMap get(); }
[ "bolinfest@google.com" ]
bolinfest@google.com
6aef55df714e390c4ec0d6d4bb5b83cc31cecfba
8db4a8c146a3c5839f95d8d18d1e60f727ba1140
/flinketl/src/main/java/com/kedacom/flinketlgraph/json/Graphnodeport.java
b0eb5bd881ab9ca82f810251528e3035e0efdca1
[ "Apache-2.0" ]
permissive
Zephyrsz/flink-job-compose
18fa254465ac476d98040af62c5508e4e763e284
d95a62f4a5d7029a7b352b6335199f0f1c6b3041
refs/heads/master
2023-04-24T17:58:32.909331
2021-05-12T03:36:05
2021-05-12T03:36:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,544
java
package com.kedacom.flinketlgraph.json; import java.io.Serializable; public class Graphnodeport implements Serializable { /** * * (Required) * */ private String nodeid; /** * * (Required) * */ private Long portindex; /** * * (Required) * */ private String portselectedtype; private final static long serialVersionUID = 162879854747L; /** * No args constructor for use in serialization * */ public Graphnodeport() { } /** * * @param portselectedtype * @param portindex * @param nodeid */ public Graphnodeport(String nodeid, Long portindex, String portselectedtype) { super(); this.nodeid = nodeid; this.portindex = portindex; this.portselectedtype = portselectedtype; } /** * * (Required) * */ public String getNodeid() { return nodeid; } /** * * (Required) * */ public void setNodeid(String nodeid) { this.nodeid = nodeid; } /** * * (Required) * */ public Long getPortindex() { return portindex; } /** * * (Required) * */ public void setPortindex(Long portindex) { this.portindex = portindex; } /** * * (Required) * */ public String getPortselectedtype() { return portselectedtype; } /** * * (Required) * */ public void setPortselectedtype(String portselectedtype) { this.portselectedtype = portselectedtype; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(Graphnodeport.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('['); sb.append("nodeid"); sb.append('='); sb.append(((this.nodeid == null)?"<null>":this.nodeid)); sb.append(','); sb.append("portindex"); sb.append('='); sb.append(((this.portindex == null)?"<null>":this.portindex)); sb.append(','); sb.append("portselectedtype"); sb.append('='); sb.append(((this.portselectedtype == null)?"<null>":this.portselectedtype)); sb.append(','); if (sb.charAt((sb.length()- 1)) == ',') { sb.setCharAt((sb.length()- 1), ']'); } else { sb.append(']'); } return sb.toString(); } @Override public int hashCode() { int result = 1; result = ((result* 31)+((this.portselectedtype == null)? 0 :this.portselectedtype.hashCode())); result = ((result* 31)+((this.nodeid == null)? 0 :this.nodeid.hashCode())); result = ((result* 31)+((this.portindex == null)? 0 :this.portindex.hashCode())); return result; } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof Graphnodeport) == false) { return false; } Graphnodeport rhs = ((Graphnodeport) other); return ((((this.portselectedtype == rhs.portselectedtype)||((this.portselectedtype!= null)&&this.portselectedtype.equals(rhs.portselectedtype)))&&((this.nodeid == rhs.nodeid)||((this.nodeid!= null)&&this.nodeid.equals(rhs.nodeid))))&&((this.portindex == rhs.portindex)||((this.portindex!= null)&&this.portindex.equals(rhs.portindex)))); } }
[ "wangdxh@163.com" ]
wangdxh@163.com
af927d4bedaf78736d1a8dd6b682e6d38b036805
5075f6b7706e9ff95fa217342d2bf58c11c93183
/user-service/src/main/java/com/liuhaozzu/userservice/UserServiceApplication.java
e5e7e2aa5e9f7a37fa7b0450aa7fb040d986dbdd
[ "Apache-2.0" ]
permissive
liuhaozzu/micro-service
1db98fc3177edacbd023dff11d2b188678ac0f1b
c19a738b5578bb1344832e1ed33c427f71480632
refs/heads/master
2021-04-12T06:35:22.495183
2018-03-21T15:02:08
2018-03-21T15:02:08
125,886,285
0
0
null
null
null
null
UTF-8
Java
false
false
415
java
package com.liuhaozzu.userservice; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; @EnableEurekaClient @SpringBootApplication public class UserServiceApplication { public static void main(String[] args) { SpringApplication.run(UserServiceApplication.class, args); } }
[ "liuhaozzu@163.com" ]
liuhaozzu@163.com
e12ad4f27897bd0c5c246ffd0d565d2d98c9c897
4a4f8018dae09f6c32dc56f8df1890a877b19665
/src/java/org/apache/cassandra/db/composites/CellNames.java
b94116666faf0007094c3a35ee85f0da1f3be1be
[ "Apache-2.0", "LicenseRef-scancode-public-domain" ]
permissive
daidong/GraphTrek
52dee17479b23d69d386c09ba07d03a008bba366
97d9aa0c34f9f1d4580fc26febe9e2802c5d59f2
refs/heads/master
2021-01-20T10:41:27.479318
2014-12-03T03:46:59
2014-12-03T03:46:59
24,128,892
2
2
Apache-2.0
2023-03-20T11:53:04
2014-09-17T03:47:46
Java
UTF-8
Java
false
false
4,139
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.cassandra.db.composites; import java.nio.ByteBuffer; import java.util.List; import org.apache.cassandra.cql3.ColumnIdentifier; import org.apache.cassandra.db.Cell; import org.apache.cassandra.db.marshal.AbstractType; import org.apache.cassandra.db.marshal.ColumnToCollectionType; import org.apache.cassandra.db.marshal.CompositeType; import org.apache.cassandra.db.marshal.UTF8Type; public abstract class CellNames { private CellNames() {} public static CellNameType fromAbstractType(AbstractType<?> type, boolean isDense) { if (isDense) { if (type instanceof CompositeType) { return new CompoundDenseCellNameType(((CompositeType)type).types); } else { return new SimpleDenseCellNameType(type); } } else { if (type instanceof CompositeType) { List<AbstractType<?>> types = ((CompositeType)type).types; if (types.get(types.size() - 1) instanceof ColumnToCollectionType) { // We don't allow collection for super columns, so the "name" type *must* be UTF8 assert types.get(types.size() - 2) instanceof UTF8Type; return new CompoundSparseCellNameType.WithCollection(types.subList(0, types.size() - 2), (ColumnToCollectionType)types.get(types.size() - 1)); } else { AbstractType<?> nameType = types.get(types.size() - 1); return new CompoundSparseCellNameType(types.subList(0, types.size() - 1), nameType); } } else { return new SimpleSparseCellNameType(type); } } } // Mainly for tests and a few cases where we know what we need and didn't wanted to pass the type around. // Avoid in general, prefer the CellNameType methods. public static CellName simpleDense(ByteBuffer bb) { assert bb.hasRemaining(); return new SimpleDenseCellName(bb); } public static CellName simpleSparse(ColumnIdentifier identifier) { return new SimpleSparseCellName(identifier); } // Mainly for tests and a few cases where we know what we need and didn't wanted to pass the type around // Avoid in general, prefer the CellNameType methods. public static CellName compositeDense(ByteBuffer... bbs) { return new CompoundDenseCellName(bbs); } public static CellName compositeSparse(ByteBuffer[] bbs, ColumnIdentifier identifier, boolean isStatic) { return new CompoundSparseCellName(bbs, identifier, isStatic); } public static CellName compositeSparseWithCollection(ByteBuffer[] bbs, ByteBuffer collectionElement, ColumnIdentifier identifier, boolean isStatic) { return new CompoundSparseCellName.WithCollection(bbs, identifier, collectionElement, isStatic); } public static String getColumnsString(CellNameType type, Iterable<Cell> columns) { StringBuilder builder = new StringBuilder(); for (Cell cell : columns) builder.append(cell.getString(type)).append(","); return builder.toString(); } }
[ "dong.dai@ttu.edu" ]
dong.dai@ttu.edu
4d949932e69673a4eb07f24f21696da0c95d7918
ace75533b5be2b87ff35b434ae3b2011eea12984
/ClassDocs/A19/src/Item.java
a774de7869cefa720e5161832899a2d62a3570c0
[]
no_license
ammuh/APCS_15_16
5dd81dc59ac8324262bb864cfaaf146d24501c9d
72508e0449e52d9a5c6ac60658fef905550db12c
refs/heads/master
2021-01-18T22:25:36.364429
2016-04-30T22:16:49
2016-04-30T22:16:49
64,608,385
0
0
null
null
null
null
UTF-8
Java
false
false
707
java
import java.util.Formatter; /** * * @author Ammar Husain * @period 4 * */ public class Item { private int myId; private int myInv; public Item(int id, int inv) { myId = id; myInv = inv; } public int getId(){ return myId; } public int getInv(){ return myInv; } public int compareTo(Item other){ return this.getId() - other.getId(); } public boolean equals(Item other){ return this.getId() == other.getId() && this.getInv() == other.getInv(); } public String toString(){ Formatter f= new Formatter(); f.format("%10s%10s", getId(), getInv()); return f.toString(); } }
[ "ammo700@gmail.com" ]
ammo700@gmail.com
94fe4903d17582f6ac7df856979ef920ea65ad26
bddf65a6f6249c1bfc4447c21e66c06e9cfd0877
/app/src/main/java/com/example/zsarsenbayev/applicationtracker/EsmProvider.java
738ce4e33b452eb697aee32f43ca7d81c7d82b6c
[]
no_license
zhannina/ApplicationTracker
ebe7e5aadbd0d4ee77c19db06606f8c54303e7b2
1d26543cc65ff31f2786a56371694ed9cf7b3d9c
refs/heads/master
2021-04-27T05:43:15.659587
2018-11-22T06:59:12
2018-11-22T06:59:12
122,600,286
0
0
null
null
null
null
UTF-8
Java
false
false
9,534
java
package com.example.zsarsenbayev.applicationtracker; import android.content.ContentProvider; import android.content.ContentUris; import android.content.ContentValues; import android.content.Context; import android.content.UriMatcher; import android.database.Cursor; import android.database.SQLException; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteQueryBuilder; import android.net.Uri; import android.provider.BaseColumns; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.util.Log; import java.io.File; import java.util.HashMap; /** * Created by zsarsenbayev on 5/23/18. */ public class EsmProvider extends ContentProvider { public static final int ESM_DATABASE_VERSION = 1; public static String ESM_AUTHORITY = "com.example.zsarsenbayev.applicationtracker.selfesm"; private static final int ESM_SENSOR_DEV = 1; private static final int ESM_SENSOR_DEV_ID = 2; public static final class EsmTable implements BaseColumns { private EsmTable() { } public static final Uri ESM_CONTENT_URI = Uri.parse("content://" + ESM_AUTHORITY + "/selfesm"); public static final String ESM_CONTENT_TYPE = "vnd.android.cursor.dir/vnd.contextdatareading.selfesm"; public static final String ESM_CONTENT_ITEM_TYPE = "vnd.android.cursor.item/vnd.contextdatareading.selfesm"; public static final String ESM_TIMESTAMP = "timestamp"; public static final String ESM_DEVICE_ID = "device_id"; public static final String ESM_ANSWER = "esm_answer"; } public static String ESM_DATABASE_NAME = "selfesm.db"; public static final String[] ESM_DATABASE_TABLES = { "selfesm" }; public static final String[] TABLES_FIELDS = { EsmTable._ID + " integer primary key autoincrement," + EsmTable.ESM_TIMESTAMP + " real default 0," + EsmTable.ESM_DEVICE_ID + " text default ''," + EsmTable.ESM_ANSWER + " text default '' " }; private static UriMatcher sUriMatcher = null; private static HashMap<String, String> sensorMap = null; private static DatabaseHelper databaseHelper = null; private static SQLiteDatabase database = null; private boolean initializeDB() { if (databaseHelper == null) { databaseHelper = new DatabaseHelper( getContext(), ESM_DATABASE_NAME, null, ESM_DATABASE_VERSION, ESM_DATABASE_TABLES, TABLES_FIELDS ); } if( databaseHelper != null && ( database == null || ! database.isOpen() )) { database = databaseHelper.getWritableDatabase(); } return( database != null && databaseHelper != null); } public static void resetDB(Context c ) { Log.d("AWARE", "Resetting " + ESM_DATABASE_NAME + "..."); File db = new File(ESM_DATABASE_NAME); db.delete(); databaseHelper = new DatabaseHelper( c, ESM_DATABASE_NAME, null, ESM_DATABASE_VERSION, ESM_DATABASE_TABLES, TABLES_FIELDS); if( databaseHelper != null ) { database = databaseHelper.getWritableDatabase(); } } @Override public boolean onCreate() { sUriMatcher = new UriMatcher(UriMatcher.NO_MATCH); sUriMatcher.addURI(EsmProvider.ESM_AUTHORITY, ESM_DATABASE_TABLES[0], ESM_SENSOR_DEV); sUriMatcher.addURI(EsmProvider.ESM_AUTHORITY, ESM_DATABASE_TABLES[0] + "/#", ESM_SENSOR_DEV_ID); sensorMap = new HashMap<String, String>(); sensorMap.put(EsmTable._ID, EsmTable._ID); sensorMap.put(EsmTable.ESM_TIMESTAMP, EsmTable.ESM_TIMESTAMP); sensorMap.put(EsmTable.ESM_DEVICE_ID, EsmTable.ESM_DEVICE_ID); sensorMap.put(EsmTable.ESM_ANSWER, EsmTable.ESM_ANSWER); return true; } @Nullable @Override public Cursor query(@NonNull Uri uri, @Nullable String[] projection, @Nullable String selection, @Nullable String[] selectionArgs, @Nullable String sortOrder) { if( ! initializeDB() ) { //Log.w(ESM_AUTHORITY,"Database unavailable..."); return null; } SQLiteQueryBuilder qb = new SQLiteQueryBuilder(); switch (sUriMatcher.match(uri)) { case ESM_SENSOR_DEV: qb.setTables(ESM_DATABASE_TABLES[0]); qb.setProjectionMap(sensorMap); break; default: throw new IllegalArgumentException("Unknown URI " + uri); } try { Cursor c = qb.query(database, projection, selection, selectionArgs, null, null, sortOrder); c.setNotificationUri(getContext().getContentResolver(), uri); return c; } catch (IllegalStateException e) { Log.e("Aware.TAG", e.getMessage()); return null; } } @Nullable @Override public String getType(@NonNull Uri uri) { switch (sUriMatcher.match(uri)) { case ESM_SENSOR_DEV: return EsmTable.ESM_CONTENT_TYPE; case ESM_SENSOR_DEV_ID: return EsmTable.ESM_CONTENT_ITEM_TYPE; default: throw new IllegalArgumentException("Unknown URI " + uri); } } @Nullable @Override public Uri insert(@NonNull Uri uri, @Nullable ContentValues initialValues) { if( ! initializeDB() ) { //Log.w(ESM_AUTHORITY,"Database unavailable..."); return null; } ContentValues values = (initialValues != null) ? new ContentValues( initialValues) : new ContentValues(); switch (sUriMatcher.match(uri)) { case ESM_SENSOR_DEV: database.beginTransaction(); long accel_id = database.insertWithOnConflict(ESM_DATABASE_TABLES[0], EsmTable.ESM_DEVICE_ID, values, SQLiteDatabase.CONFLICT_IGNORE); database.setTransactionSuccessful(); database.endTransaction(); if (accel_id > 0) { Uri accelUri = ContentUris.withAppendedId( EsmTable.ESM_CONTENT_URI, accel_id); getContext().getContentResolver().notifyChange(accelUri, null); return accelUri; } throw new SQLException("Failed to insert row into " + uri); default: throw new IllegalArgumentException("Unknown URI " + uri); } } @Override public int delete(@NonNull Uri uri, @Nullable String selection, @Nullable String[] selectionArgs) { if( ! initializeDB() ) { //Log.w(ESM_AUTHORITY,"Database unavailable..."); return 0; } int count = 0; switch (sUriMatcher.match(uri)) { case ESM_SENSOR_DEV: database.beginTransaction(); count = database.delete(ESM_DATABASE_TABLES[0], selection, selectionArgs); database.setTransactionSuccessful(); database.endTransaction(); break; default: throw new IllegalArgumentException("Unknown URI " + uri); } getContext().getContentResolver().notifyChange(uri, null); return count; } @Override public int update(@NonNull Uri uri, @Nullable ContentValues values, @Nullable String selection, @Nullable String[] selectionArgs) { if( ! initializeDB() ) { //Log.w(ESM_AUTHORITY,"Database unavailable..."); return 0; } int count = 0; switch (sUriMatcher.match(uri)) { case ESM_SENSOR_DEV: database.beginTransaction(); count = database.update(ESM_DATABASE_TABLES[0], values, selection, selectionArgs); database.setTransactionSuccessful(); database.endTransaction(); break; default: throw new IllegalArgumentException("Unknown URI " + uri); } getContext().getContentResolver().notifyChange(uri, null); return count; } @Override public int bulkInsert(Uri uri, ContentValues[] values) { if( ! initializeDB() ) { // Log.w(ESM_AUTHORITY,"Database unavailable..."); return 0; } int count = 0; switch ( sUriMatcher.match(uri) ) { case ESM_SENSOR_DEV: database.beginTransaction(); for (ContentValues v : values) { long id; try { id = database.insertOrThrow( ESM_DATABASE_TABLES[0], EsmTable.ESM_DEVICE_ID, v ); } catch ( SQLException e ) { id = database.replace( ESM_DATABASE_TABLES[0], EsmTable.ESM_DEVICE_ID, v ); } if( id <= 0 ) { Log.w("Light.TAG", "Failed to insert/replace row into " + uri); } else { count++; } } database.setTransactionSuccessful(); database.endTransaction(); getContext().getContentResolver().notifyChange(uri, null); return count; default: throw new IllegalArgumentException("Unknown URI " + uri); } } }
[ "zsarsenbayev@4180L-132627-M.local" ]
zsarsenbayev@4180L-132627-M.local
54fe776b2f6ef8ac52dcde0aabcb33e01085fe49
31b4d5bcc1df766e4fa6ab787c5a30c1a91e3a40
/src/Enumeration/ForLoopWithEnum.java
c284de9c9cb9639a268a80cecc2cda435c24601b
[]
no_license
Peterbamidele/Enumeration-Enum-In-java
70c2bc361e4046c806395eab8686f9ef201b02cd
8d6abb25ff05cf34c9bce884db758deb547c5841
refs/heads/main
2023-03-24T06:24:02.685280
2021-03-23T15:10:12
2021-03-23T15:10:12
350,113,146
0
0
null
null
null
null
UTF-8
Java
false
false
146
java
package Enumeration; public class ForLoopWithEnum { public enum Week {SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY} }
[ "peterbamidele@gmail.com" ]
peterbamidele@gmail.com
3bd98dba0a3d0b67458ca80d1febf4dd661cf3ad
65a5bd77d219d9e3cd47b91e917add2f0f642e35
/app/src/main/java/com/jackzc/intents/Bacon.java
153a3b06dfa83f9b8a7c42c501efe0a6464e4f44
[]
no_license
XIAOXIAOSIYU/Intents
a70c4adac7c738922447f85249176df5fcedc307
44b452b53eb55feb6ce480ca2246ddaedaf2aa62
refs/heads/master
2021-01-11T11:08:37.191591
2016-11-03T23:20:16
2016-11-03T23:20:16
72,795,527
0
0
null
null
null
null
UTF-8
Java
false
false
1,027
java
package com.jackzc.intents; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.TextView; public class Bacon extends AppCompatActivity { private static String APPLES_BUNDLE_KEY = "applesMessage"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_bacon); String applesMessage = "There is nothing passed."; Bundle applesData = getIntent().getExtras(); if (applesData != null) { if (applesData.containsKey(APPLES_BUNDLE_KEY)) { applesMessage = applesData.getString(APPLES_BUNDLE_KEY); } } final TextView label = (TextView) findViewById(R.id.baconText); label.setText(applesMessage); } public void onClick(View view) { Intent intent = new Intent(this, Apples.class); startActivity(intent); } }
[ "YIHIU@SINA.COM" ]
YIHIU@SINA.COM
dfe155cac35dc20249eb7c1bf78e3955f828a65d
006576b09a56194796d7d7b21c633389ccbf246b
/testsuite/src/java/net/sf/ohla/rti/testsuite/hla/rti1516e/object/ObjectNameReservationTestNG.java
7452755df6c8a48a79f4616f3a869735f93f95e7
[ "Apache-2.0" ]
permissive
zhj149/OpenHLA
ca20ab74ff70404189b5bb606d36718e233c0155
1fed36211e54d5dc09cc30b92a1714d5a124b82d
refs/heads/master
2020-11-25T19:12:34.090527
2019-12-20T02:08:17
2019-12-20T02:08:17
228,805,204
2
3
null
null
null
null
UTF-8
Java
false
false
8,075
java
/* * Copyright (c) 2005-2011, Michael Newcomb * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package net.sf.ohla.rti.testsuite.hla.rti1516e.object; import java.util.HashSet; import java.util.Set; import java.util.concurrent.Callable; import net.sf.ohla.rti.testsuite.hla.rti1516e.BaseFederateAmbassador; import net.sf.ohla.rti.testsuite.hla.rti1516e.BaseTestNG; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; import hla.rti1516e.RTIambassador; import hla.rti1516e.exceptions.FederateInternalError; import hla.rti1516e.exceptions.IllegalName; import hla.rti1516e.exceptions.ObjectInstanceNameNotReserved; @Test public class ObjectNameReservationTestNG extends BaseTestNG<ObjectNameReservationTestNG.TestFederateAmbassador> { private static final String FEDERATION_NAME = ObjectNameReservationTestNG.class.getSimpleName(); private static final String ILLEGAL_NAME_1 = "HLA illegal name 1"; private static final String ILLEGAL_NAME_2 = "HLA illegal name 2"; private static final String LEGAL_NAME_1 = "legal name 1"; private static final String LEGAL_NAME_2 = "legal name 2"; private static final String LEGAL_NAME_3 = "legal name 3"; private static final String LEGAL_NAME_4 = "legal name 4"; private static final String LEGAL_NAME_5 = "legal name 5"; private static final String LEGAL_NAME_6 = "legal name 6"; public ObjectNameReservationTestNG() { super(3, FEDERATION_NAME); } @BeforeClass public void setup() throws Exception { connect(); createFederationExecution(); joinFederationExecution(); synchronize(SYNCHRONIZATION_POINT_SETUP_COMPLETE, federateAmbassadors); } @AfterClass public void teardown() throws Exception { resignFederationExecution(); destroyFederationExecution(); disconnect(); } @Test(expectedExceptions = IllegalName.class) public void testReserveIllegalObjectInstanceName() throws Exception { rtiAmbassadors.get(0).reserveObjectInstanceName(ILLEGAL_NAME_1); } @Test(expectedExceptions = IllegalName.class) public void testReserveIllegalObjectInstanceNames() throws Exception { Set<String> illegalNames = new HashSet<String>(); illegalNames.add(ILLEGAL_NAME_1); illegalNames.add(ILLEGAL_NAME_2); rtiAmbassadors.get(0).reserveMultipleObjectInstanceName(illegalNames); } @Test public void testReserveObjectInstanceName() throws Exception { rtiAmbassadors.get(0).reserveObjectInstanceName(LEGAL_NAME_1); federateAmbassadors.get(0).checkObjectInstanceNameReserved(LEGAL_NAME_1); } @Test(dependsOnMethods = "testReserveObjectInstanceName") public void testReserveObjectInstanceNameAgain() throws Exception { rtiAmbassadors.get(0).reserveObjectInstanceName(LEGAL_NAME_1); federateAmbassadors.get(0).checkObjectInstanceNameNotReserved(LEGAL_NAME_1); } @Test public void testReserveMultipleObjectInstanceName() throws Exception { Set<String> names = new HashSet<String>(); names.add(LEGAL_NAME_2); names.add(LEGAL_NAME_3); rtiAmbassadors.get(1).reserveMultipleObjectInstanceName(names); federateAmbassadors.get(1).checkObjectInstanceNameReserved(LEGAL_NAME_2); federateAmbassadors.get(1).checkObjectInstanceNameReserved(LEGAL_NAME_3); } @Test(dependsOnMethods = "testReserveMultipleObjectInstanceName") public void testReserveMultipleObjectInstanceNameAgain() throws Exception { Set<String> names = new HashSet<String>(); names.add(LEGAL_NAME_2); names.add(LEGAL_NAME_3); rtiAmbassadors.get(2).reserveMultipleObjectInstanceName(names); federateAmbassadors.get(2).checkObjectInstanceNameNotReserved(LEGAL_NAME_2); federateAmbassadors.get(2).checkObjectInstanceNameNotReserved(LEGAL_NAME_3); } @Test public void testReleaseObjectInstanceName() throws Exception { rtiAmbassadors.get(0).reserveObjectInstanceName(LEGAL_NAME_4); federateAmbassadors.get(0).checkObjectInstanceNameReserved(LEGAL_NAME_4); rtiAmbassadors.get(0).releaseObjectInstanceName(LEGAL_NAME_4); rtiAmbassadors.get(0).reserveObjectInstanceName(LEGAL_NAME_4); federateAmbassadors.get(0).checkObjectInstanceNameReserved(LEGAL_NAME_4); } @Test public void testReleaseMultipleObjectInstanceName() throws Exception { Set<String> names = new HashSet<String>(); names.add(LEGAL_NAME_5); names.add(LEGAL_NAME_6); rtiAmbassadors.get(2).reserveMultipleObjectInstanceName(names); federateAmbassadors.get(2).checkObjectInstanceNameReserved(LEGAL_NAME_5); federateAmbassadors.get(2).checkObjectInstanceNameReserved(LEGAL_NAME_6); rtiAmbassadors.get(2).releaseMultipleObjectInstanceName(names); rtiAmbassadors.get(2).reserveMultipleObjectInstanceName(names); federateAmbassadors.get(2).checkObjectInstanceNameReserved(LEGAL_NAME_5); federateAmbassadors.get(2).checkObjectInstanceNameReserved(LEGAL_NAME_6); } @Test(expectedExceptions = ObjectInstanceNameNotReserved.class) public void testReleaseUnreservedObjectInstanceName() throws Exception { rtiAmbassadors.get(0).releaseObjectInstanceName("xxx"); } @Test(expectedExceptions = ObjectInstanceNameNotReserved.class) public void testReleaseMultipleUnreservedObjectInstanceNames() throws Exception { Set<String> names = new HashSet<String>(); names.add("xxx"); names.add("yyy"); rtiAmbassadors.get(0).releaseMultipleObjectInstanceName(names); } protected TestFederateAmbassador createFederateAmbassador(RTIambassador rtiAmbassador) { return new TestFederateAmbassador(rtiAmbassador); } public static class TestFederateAmbassador extends BaseFederateAmbassador { private final Set<String> reservedObjectInstanceNames = new HashSet<String>(); private final Set<String> notReservedObjectInstanceNames = new HashSet<String>(); public TestFederateAmbassador(RTIambassador rtiAmbassador) { super(rtiAmbassador); } public void checkObjectInstanceNameReserved(final String objectInstanceName) throws Exception { evokeCallbackWhile(new Callable<Boolean>() { public Boolean call() { return !reservedObjectInstanceNames.contains(objectInstanceName); } }); assert reservedObjectInstanceNames.contains(objectInstanceName); } public void checkObjectInstanceNameNotReserved(final String objectInstanceName) throws Exception { evokeCallbackWhile(new Callable<Boolean>() { public Boolean call() { return !notReservedObjectInstanceNames.contains(objectInstanceName); } }); assert notReservedObjectInstanceNames.contains(objectInstanceName); } @Override public void objectInstanceNameReservationSucceeded(String name) throws FederateInternalError { reservedObjectInstanceNames.add(name); } @Override public void multipleObjectInstanceNameReservationSucceeded(Set<String> names) throws FederateInternalError { reservedObjectInstanceNames.addAll(names); } @Override public void objectInstanceNameReservationFailed(String name) throws FederateInternalError { notReservedObjectInstanceNames.add(name); } @Override public void multipleObjectInstanceNameReservationFailed(Set<String> names) throws FederateInternalError { notReservedObjectInstanceNames.addAll(names); } } }
[ "mnewcomb@c6f40f97-f50e-0410-af12-a330f67be530" ]
mnewcomb@c6f40f97-f50e-0410-af12-a330f67be530
18530f460e111421cd4ab4dd7b809572bf93c167
6e27ca13546cf0669b35a0d892001eef8937a2ff
/Movies/app/src/main/java/com/example/movies/SearchActivity.java
1b59602482cbf25f1591663714380cae5ed31881
[ "Apache-2.0" ]
permissive
henrydavl/Andorid-Project-Collection
04d39d094afca8887ca93ce42292bafb666b3de0
53d1cff3317e50db0f7624f7f4bbaaafccc33f94
refs/heads/master
2022-09-06T18:32:29.155116
2020-05-24T09:16:43
2020-05-24T09:16:43
null
0
0
null
null
null
null
UTF-8
Java
false
false
7,614
java
package com.example.movies; import androidx.lifecycle.Observer; import androidx.lifecycle.ViewModelProviders; import android.content.Context; import android.content.Intent; import android.net.Uri; import androidx.annotation.Nullable; import androidx.appcompat.app.ActionBar; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.inputmethod.InputMethodManager; import android.widget.ProgressBar; import android.widget.SearchView; import com.example.movies.adapter.MovieAdapter; import com.example.movies.adapter.TvShowAdapter; import com.example.movies.clicksupport.ItemClickSupport; import com.example.movies.model.Movie; import com.example.movies.model.TvShow; import com.example.movies.viewmodel.MainViewModel; import org.jetbrains.annotations.NotNull; import java.util.ArrayList; import static com.example.movies.db.DatabaseContract.CONTENT_MOVIE_URI; import static com.example.movies.db.DatabaseContract.CONTENT_SHOW_URI; public class SearchActivity extends AppCompatActivity { private ProgressBar progressBar; private SearchView searchView; private MainViewModel mainViewModel; private RecyclerView rvSearch; private ActionBar toolbar; public static final String EXTRA_MOVIE = "extra_movie"; public static final String EXTRA_SHOW = "extra_show"; private static final String API_KEY = "68eff651539ae197e48884a6d31d2059"; private Boolean isMovie = false; private MovieAdapter movieAdapter; private TvShowAdapter tvShowAdapter; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_search); searchView = findViewById(R.id.searchView); progressBar = findViewById(R.id.pb_search); rvSearch = findViewById(R.id.rv_search); toolbar = getSupportActionBar(); if (toolbar != null) { toolbar.setDisplayHomeAsUpEnabled(true); } rvSearch.setLayoutManager(new LinearLayoutManager(this)); showLoading(true); mainViewModel = ViewModelProviders.of(this).get(MainViewModel.class); String query; if (getIntent().getStringExtra(EXTRA_MOVIE) != null) { isMovie = true; query = getIntent().getStringExtra(EXTRA_MOVIE); setupMovie(query); } else { isMovie = false; query = getIntent().getStringExtra(EXTRA_SHOW); setupShow(query); } setupSearchView(query); } private void setupSearchView(String query) { searchView.setQuery(query, false); searchView.setIconified(false); searchView.clearFocus(); InputMethodManager manager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); manager.hideSoftInputFromWindow(searchView.getWindowToken(), 0); searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() { @Override public boolean onQueryTextSubmit(String input) { if (isMovie) { String url = "https://api.themoviedb.org/3/search/movie?api_key=" + API_KEY + "&language=en-US&query=" + input; search(url); } else { String url = "https://api.themoviedb.org/3/search/tv?api_key=" + API_KEY + "&language=en-US&query=" + input; search(url); } return false; } @Override public boolean onQueryTextChange(String s) { return false; } }); } private void setupMovie(String query) { String url = "https://api.themoviedb.org/3/search/movie?api_key=" + API_KEY + "&language=en-US&query=" + query; toolbar.setTitle(getString(R.string.result_movie)); search(url); movieAdapter = new MovieAdapter(this); rvSearch.setAdapter(movieAdapter); } private void setupShow(String query) { String url = "https://api.themoviedb.org/3/search/tv?api_key=" + API_KEY + "&language=en-US&query=" + query; toolbar.setTitle(getString(R.string.result_tv)); search(url); tvShowAdapter = new TvShowAdapter(this); rvSearch.setAdapter(tvShowAdapter); } private void search(String url) { if (isMovie) { showLoading(true); mainViewModel.searchMovie(url); mainViewModel.getSearchMovieResult().observe(this, getMovieResult); } else { showLoading(true); mainViewModel.searchTvShow(url); mainViewModel.getSearchShowResult().observe(this, getShowResult); } } private Observer<ArrayList<Movie>> getMovieResult = new Observer<ArrayList<Movie>>() { @Override public void onChanged(@Nullable ArrayList<Movie> movies) { if (movies != null) { movieAdapter.setMovies(movies); movieAdapter.notifyDataSetChanged(); showLoading(false); ItemClickSupport.addTo(rvSearch).setOnItemClickListener((recyclerView, position, v) -> { Uri uri = Uri.parse(CONTENT_MOVIE_URI + "/" + movies.get(position).getId_movie()); Intent intent = new Intent(SearchActivity.this, DetailActivity.class); intent.setData(uri); intent.putExtra(DetailActivity.EXTRA_MOVIE, movies.get(position)); startActivity(intent); }); } } }; private Observer<ArrayList<TvShow>> getShowResult = new Observer<ArrayList<TvShow>>() { @Override public void onChanged(@Nullable ArrayList<TvShow> tvShows) { if (tvShows != null) { tvShowAdapter.setTvShows(tvShows); tvShowAdapter.notifyDataSetChanged(); showLoading(false); ItemClickSupport.addTo(rvSearch).setOnItemClickListener((recyclerView, position, v) -> { Uri uri = Uri.parse(CONTENT_SHOW_URI + "/" + tvShows.get(position).getId_show()); Intent intent = new Intent(SearchActivity.this, DetailActivity.class); intent.setData(uri); intent.putExtra(DetailActivity.EXTRA_SHOW, tvShows.get(position)); startActivity(intent); }); } } }; private void showLoading(Boolean state) { if (state) { progressBar.setVisibility(View.VISIBLE); } else { progressBar.setVisibility(View.GONE); } } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.settings_menu, menu); return super.onCreateOptionsMenu(menu); } @Override public boolean onOptionsItemSelected(@NotNull MenuItem item) { switch (item.getItemId()) { case R.id.trans : Intent intent = new Intent(SearchActivity.this, SettingsActivity.class); startActivity(intent); return true; case android.R.id.home: onBackPressed(); return true; } return super.onOptionsItemSelected(item); } @Override public void onBackPressed() { super.onBackPressed(); finish(); } }
[ "32681485+henhiro4r@users.noreply.github.com" ]
32681485+henhiro4r@users.noreply.github.com
511c73adb67721881bf97886935be5c8f79a4762
ceea2cc25f109bfa8fd56e45b46fa366b666f21f
/src/panels/AircraftModelGraphic.java
3ae8ecfe41f619d750a29d802f82ec299800f425
[]
no_license
mikesjavacode/OpenSensorHub-AHRS-Tester
1d1955d62c3076a4a775f888fac26cefbabbf41e
99757dd5853e185b3b5a8033e104984bdd9b3b1d
refs/heads/master
2021-01-12T12:03:25.505572
2016-10-03T22:48:50
2016-10-03T22:48:50
69,917,088
0
1
null
null
null
null
UTF-8
Java
false
false
8,951
java
package panels; import com.sun.j3d.loaders.IncorrectFormatException; import com.sun.j3d.loaders.ParsingErrorException; import com.sun.j3d.loaders.Scene; import com.sun.j3d.loaders.objectfile.ObjectFile; import com.sun.j3d.utils.universe.SimpleUniverse; import java.awt.BorderLayout; import java.awt.Dimension; import java.awt.GraphicsConfiguration; import java.io.FileNotFoundException; import javax.media.j3d.Background; import javax.media.j3d.BoundingSphere; import javax.media.j3d.BranchGroup; import javax.media.j3d.Canvas3D; import javax.media.j3d.DirectionalLight; import javax.media.j3d.Transform3D; import javax.media.j3d.TransformGroup; import javax.swing.JPanel; import javax.vecmath.Color3f; import javax.vecmath.Point3d; import javax.vecmath.Vector3f; /** * * @author Mike Fouche */ public class AircraftModelGraphic { private JPanel acPanel; private TransformGroup objAircraft; // For performing the aircraft translation/rotations private final Transform3D acRot1; private final Transform3D acRot2; private final Transform3D acRot3; private final Transform3D acRot4; private final Transform3D acRot5; // ?? private SimpleUniverse universe; private Canvas3D canvas3D; private Background background; private BoundingSphere bounds; /** Value - {@value } Aircraft roll, pitch, and heading variables */ private double acRoll, acPitch, acYaw; /** * Constructor */ public AircraftModelGraphic() { // Initialize the aircraft attitude acRoll = 0.0d; acPitch = 0.0d; acYaw = 0.0d; // Instantiate transforms acRot1 = new Transform3D(); acRot2 = new Transform3D(); acRot3 = new Transform3D(); acRot4 = new Transform3D(); acRot5 = new Transform3D(); } //-------------------------------------------------------------------------- /** * Updates the aircraft model rotation/translation transform objects * with the member roll, pitch, and heading attitude values as inputs. * * @param ahrs */ public void updateModelDynamics(double[] ahrs) { acRoll = ahrs[0]; acPitch = ahrs[1]; acYaw = ahrs[2]; // Set up aircraft to face left in window acRot1.rotZ(90.0d * (Math.PI / 180.0d) ); acRot2.rotY(90.0d * (Math.PI / 180.0d) ); acRot1.mul(acRot2); // Now perform yaw-pitch-roll rotations acRot3.rotZ(-acYaw * (Math.PI / 180.0d) ); // (-) = positive yaw acRot1.mul(acRot3); acRot4.rotX(acPitch * (Math.PI / 180.0d) ); // (+) = positive pitch acRot1.mul(acRot4); acRot5.rotY(acRoll * (Math.PI / 180.0d) ); // (+) = positive roll acRot1.mul(acRot5); // Set the distance between view and aircraft acRot1.setTranslation(new Vector3f(0f,0f,-0.6f)); objAircraft.setTransform(acRot1); } //-------------------------------------------------------------------------- /** * 1. Sets up a JPanel * <p> * 2. Loads the aircraft model via method createACScene * <p> * 3. Creates the Canvas3D object and loads the aircraft model * <p> * 4. Loads the completed Canvas3D object into the JPanel * * @return the JPanel */ public JPanel createContentPane_AC() { acPanel = new JPanel(); // you have to set a layout manager on the panel, which // automatically expands the child components to the full area. // A JPanel has a FlowLayout by default, // which does not expand the child components. acPanel.setLayout(new BorderLayout()); acPanel.setPreferredSize(new Dimension(490,490)); acPanel.setOpaque(true); GraphicsConfiguration config = SimpleUniverse .getPreferredConfiguration(); canvas3D = new Canvas3D(config); acPanel.add("Center", canvas3D); // Load the aircraft model (from method createACScene) BranchGroup scene = createACScene(); // Set up the background instance and properties background = new Background(); bounds = new BoundingSphere(new Point3d(0.0,0.0,0.0), 100.0); background.setApplicationBounds(bounds); // Set the properties to allow the background to be updated. // This is needed if the background is continuously updated. // For this application the background remains the same. background.setCapability(Background.ALLOW_COLOR_WRITE); // Set the background color int rcol = 102, gcol = 178, bcol = 255; float rcolf = (float)rcol / 255.0f; float gcolf = (float)gcol / 255.0f; float bcolf = (float)bcol / 255.0f; background.setColor( new Color3f(rcolf,gcolf,bcolf) ); // Add the background to the scene instance scene.addChild(background); // Build the scene scene.compile(); universe = new SimpleUniverse(canvas3D); universe.getViewingPlatform().setNominalViewingTransform(); universe.addBranchGraph(scene); // Add the canvas to the JPanel acPanel.add(canvas3D); return acPanel; } //-------------------------------------------------------------------------- /** * 1. Sets up the transforms with the correct initial rotations/translation * <p> * 2. Loads the aircraft model (wavefront format) * <p> * 3. Sets up the lighting (from opposite sides) * <p> * 4. Loads the background * @return the BranchGroup with loaded aircraft model */ public BranchGroup createACScene() { BranchGroup objRoot = new BranchGroup(); // Set up aircraft to face left in window acRot1.rotZ(90.0d * (Math.PI / 180.0d) ); acRot2.rotY(90.0d * (Math.PI / 180.0d) ); acRot1.mul(acRot2); // Now do yaw-pitch-roll rotations acRot3.rotZ(-acYaw * (Math.PI / 180.0d) ); // (-) = positive yaw acRot1.mul(acRot3); acRot4.rotX(acPitch * (Math.PI / 180.0d) ); // (+) = positive pitch acRot1.mul(acRot4); acRot5.rotY(acRoll * (Math.PI / 180.0d) ); // (+) = positive roll acRot1.mul(acRot5); TransformGroup objAC = new TransformGroup(acRot1); objAC.setTransform(acRot1); acRot1.setTranslation(new Vector3f(0f,0f,-0.6f)); // mf objAC.setTransform(acRot1); // Permissions have to be set to allow rotation/translation updates objAC.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE); // Loader ObjectFile file = new ObjectFile(ObjectFile.RESIZE); Scene scene = null; String fname; try { // Get the user directory - then add on the aircraft folder and file name fname = System.getProperty("user.dir").concat("\\F-14 Model\\F-14A_Tomcat.obj"); scene = file.load(fname); } catch (IncorrectFormatException | ParsingErrorException | FileNotFoundException e) { System.err.println(e); System.exit(1); } objAC.addChild(scene.getSceneGroup()); // Set the lighting from both directions // Lighting and bounds #1 DirectionalLight dLight1 = new DirectionalLight(new Color3f(1.0f, 1.0f, 1.0f), new Vector3f(-1.0f, -1.0f, -1.0f)); dLight1.setInfluencingBounds(new BoundingSphere(new Point3d(0.0d, 0.0d, 0.0d), 100.0d)); // Lighting and bounds #2 DirectionalLight dLight2 = new DirectionalLight(new Color3f(1.0f, 1.0f, 1.0f), new Vector3f(1.0f, 1.0f, 1.0f)); dLight1.setInfluencingBounds(new BoundingSphere(new Point3d(0.0d, 0.0d, 0.0d), 100.0d)); // Add the light objects to the TransformGroup object objAC.addChild(dLight1); objAC.addChild(dLight2); // Add the background object to the TransformGroup object objAC.addChild(background); // Set this TransformGroup object equal to the local TransformGroup. // The objAircraft object will be used as the aircraft model is // updated each time. objAircraft = objAC; // Add the TransformGroup object to the BranchGroup object. objRoot.addChild(objAC); return objRoot; } } // end of class AircraftModelGraphic
[ "michael.fouche2010@gmail.com" ]
michael.fouche2010@gmail.com
2a1e25ada515ff852a6e493317870bc8449cafd0
7fe68e26a675e5307ffa4c694612ce12864a07a5
/store/src/main/java/org/apache/rocketmq/store/ConsumeQueue.java
5fd2e8ebb6750c3f50b77eca09dcc1b52c5218e8
[ "Apache-2.0" ]
permissive
zhanglei/rocketmq-delaymsg
9b53709263715ba6dad1e082b379d96d561a5a49
b208250fa910fffd0d95d57bf122aea345c1d8cd
refs/heads/master
2020-06-30T11:16:05.156884
2019-07-01T06:02:01
2019-07-01T06:02:01
null
0
0
null
null
null
null
UTF-8
Java
false
false
23,618
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.rocketmq.store; import org.apache.rocketmq.common.constant.LoggerName; import org.apache.rocketmq.logging.InternalLogger; import org.apache.rocketmq.logging.InternalLoggerFactory; import org.apache.rocketmq.store.config.StorePathConfigHelper; import java.io.File; import java.nio.ByteBuffer; import java.util.List; public class ConsumeQueue { private static final InternalLogger log = InternalLoggerFactory.getLogger(LoggerName.STORE_LOGGER_NAME); public static final int CQ_STORE_UNIT_SIZE = 20; private static final InternalLogger LOG_ERROR = InternalLoggerFactory.getLogger(LoggerName.STORE_ERROR_LOGGER_NAME); private final DefaultMessageStore defaultMessageStore; private final MappedFileQueue mappedFileQueue; private final String topic; private final int queueId; private final ByteBuffer byteBufferIndex; private final String storePath; private final int mappedFileSize; private long maxPhysicOffset = -1; private volatile long minLogicOffset = 0; private ConsumeQueueExt consumeQueueExt = null; public ConsumeQueue( final String topic, final int queueId, final String storePath, final int mappedFileSize, final DefaultMessageStore defaultMessageStore) { this.storePath = storePath; this.mappedFileSize = mappedFileSize; this.defaultMessageStore = defaultMessageStore; this.topic = topic; this.queueId = queueId; String queueDir = this.storePath + File.separator + topic + File.separator + queueId; this.mappedFileQueue = new MappedFileQueue(queueDir, mappedFileSize, null); this.byteBufferIndex = ByteBuffer.allocate(CQ_STORE_UNIT_SIZE); if (defaultMessageStore.getMessageStoreConfig().isEnableConsumeQueueExt()) { this.consumeQueueExt = new ConsumeQueueExt( topic, queueId, StorePathConfigHelper.getStorePathConsumeQueueExt(defaultMessageStore.getMessageStoreConfig().getStorePathRootDir()), defaultMessageStore.getMessageStoreConfig().getMappedFileSizeConsumeQueueExt(), defaultMessageStore.getMessageStoreConfig().getBitMapLengthConsumeQueueExt() ); } } public boolean load() { boolean result = this.mappedFileQueue.load(); log.info("load consume queue " + this.topic + "-" + this.queueId + " " + (result ? "OK" : "Failed")); if (isExtReadEnable()) { result &= this.consumeQueueExt.load(); } return result; } public void recover() { final List<MappedFile> mappedFiles = this.mappedFileQueue.getMappedFiles(); if (!mappedFiles.isEmpty()) { int index = mappedFiles.size() - 3; if (index < 0) index = 0; int mappedFileSizeLogics = this.mappedFileSize; MappedFile mappedFile = mappedFiles.get(index); ByteBuffer byteBuffer = mappedFile.sliceByteBuffer(); long processOffset = mappedFile.getFileFromOffset(); long mappedFileOffset = 0; long maxExtAddr = 1; while (true) { for (int i = 0; i < mappedFileSizeLogics; i += CQ_STORE_UNIT_SIZE) { long offset = byteBuffer.getLong(); int size = byteBuffer.getInt(); long tagsCode = byteBuffer.getLong(); if (offset >= 0 && size > 0) { mappedFileOffset = i + CQ_STORE_UNIT_SIZE; this.maxPhysicOffset = offset + size; if (isExtAddr(tagsCode)) { maxExtAddr = tagsCode; } } else { log.info("recover current consume queue file over, " + mappedFile.getFileName() + " " + offset + " " + size + " " + tagsCode); break; } } if (mappedFileOffset == mappedFileSizeLogics) { index++; if (index >= mappedFiles.size()) { log.info("recover last consume queue file over, last mapped file " + mappedFile.getFileName()); break; } else { mappedFile = mappedFiles.get(index); byteBuffer = mappedFile.sliceByteBuffer(); processOffset = mappedFile.getFileFromOffset(); mappedFileOffset = 0; log.info("recover next consume queue file, " + mappedFile.getFileName()); } } else { log.info("recover current consume queue queue over " + mappedFile.getFileName() + " " + (processOffset + mappedFileOffset)); break; } } processOffset += mappedFileOffset; this.mappedFileQueue.setFlushedWhere(processOffset); this.mappedFileQueue.setCommittedWhere(processOffset); this.mappedFileQueue.truncateDirtyFiles(processOffset); if (isExtReadEnable()) { this.consumeQueueExt.recover(); log.info("Truncate consume queue extend file by max {}", maxExtAddr); this.consumeQueueExt.truncateByMaxAddress(maxExtAddr); } } } public long getOffsetInQueueByTime(final long timestamp) { MappedFile mappedFile = this.mappedFileQueue.getMappedFileByTime(timestamp); if (mappedFile != null) { long offset = 0; int low = minLogicOffset > mappedFile.getFileFromOffset() ? (int) (minLogicOffset - mappedFile.getFileFromOffset()) : 0; int high = 0; int midOffset = -1, targetOffset = -1, leftOffset = -1, rightOffset = -1; long leftIndexValue = -1L, rightIndexValue = -1L; long minPhysicOffset = this.defaultMessageStore.getMinPhyOffset(); SelectMappedBufferResult sbr = mappedFile.selectMappedBuffer(0); if (null != sbr) { ByteBuffer byteBuffer = sbr.getByteBuffer(); high = byteBuffer.limit() - CQ_STORE_UNIT_SIZE; try { while (high >= low) { midOffset = (low + high) / (2 * CQ_STORE_UNIT_SIZE) * CQ_STORE_UNIT_SIZE; byteBuffer.position(midOffset); long phyOffset = byteBuffer.getLong(); int size = byteBuffer.getInt(); if (phyOffset < minPhysicOffset) { low = midOffset + CQ_STORE_UNIT_SIZE; leftOffset = midOffset; continue; } long storeTime = this.defaultMessageStore.getCommitLog().pickupStoreTimestamp(phyOffset, size); if (storeTime < 0) { return 0; } else if (storeTime == timestamp) { targetOffset = midOffset; break; } else if (storeTime > timestamp) { high = midOffset - CQ_STORE_UNIT_SIZE; rightOffset = midOffset; rightIndexValue = storeTime; } else { low = midOffset + CQ_STORE_UNIT_SIZE; leftOffset = midOffset; leftIndexValue = storeTime; } } if (targetOffset != -1) { offset = targetOffset; } else { if (leftIndexValue == -1) { offset = rightOffset; } else if (rightIndexValue == -1) { offset = leftOffset; } else { offset = Math.abs(timestamp - leftIndexValue) > Math.abs(timestamp - rightIndexValue) ? rightOffset : leftOffset; } } return (mappedFile.getFileFromOffset() + offset) / CQ_STORE_UNIT_SIZE; } finally { sbr.release(); } } } return 0; } public void truncateDirtyLogicFiles(long phyOffet) { int logicFileSize = this.mappedFileSize; this.maxPhysicOffset = phyOffet; long maxExtAddr = 1; while (true) { MappedFile mappedFile = this.mappedFileQueue.getLastMappedFile(); if (mappedFile != null) { ByteBuffer byteBuffer = mappedFile.sliceByteBuffer(); mappedFile.setWrotePosition(0); mappedFile.setCommittedPosition(0); mappedFile.setFlushedPosition(0); for (int i = 0; i < logicFileSize; i += CQ_STORE_UNIT_SIZE) { long offset = byteBuffer.getLong(); int size = byteBuffer.getInt(); long tagsCode = byteBuffer.getLong(); if (0 == i) { if (offset >= phyOffet) { this.mappedFileQueue.deleteLastMappedFile(); break; } else { int pos = i + CQ_STORE_UNIT_SIZE; mappedFile.setWrotePosition(pos); mappedFile.setCommittedPosition(pos); mappedFile.setFlushedPosition(pos); this.maxPhysicOffset = offset + size; // This maybe not take effect, when not every consume queue has extend file. if (isExtAddr(tagsCode)) { maxExtAddr = tagsCode; } } } else { if (offset >= 0 && size > 0) { if (offset >= phyOffet) { return; } int pos = i + CQ_STORE_UNIT_SIZE; mappedFile.setWrotePosition(pos); mappedFile.setCommittedPosition(pos); mappedFile.setFlushedPosition(pos); this.maxPhysicOffset = offset + size; if (isExtAddr(tagsCode)) { maxExtAddr = tagsCode; } if (pos == logicFileSize) { return; } } else { return; } } } } else { break; } } if (isExtReadEnable()) { this.consumeQueueExt.truncateByMaxAddress(maxExtAddr); } } public long getLastOffset() { long lastOffset = -1; int logicFileSize = this.mappedFileSize; MappedFile mappedFile = this.mappedFileQueue.getLastMappedFile(); if (mappedFile != null) { int position = mappedFile.getWrotePosition() - CQ_STORE_UNIT_SIZE; if (position < 0) position = 0; ByteBuffer byteBuffer = mappedFile.sliceByteBuffer(); byteBuffer.position(position); for (int i = 0; i < logicFileSize; i += CQ_STORE_UNIT_SIZE) { long offset = byteBuffer.getLong(); int size = byteBuffer.getInt(); byteBuffer.getLong(); if (offset >= 0 && size > 0) { lastOffset = offset + size; } else { break; } } } return lastOffset; } public boolean flush(final int flushLeastPages) { boolean result = this.mappedFileQueue.flush(flushLeastPages); if (isExtReadEnable()) { result = result & this.consumeQueueExt.flush(flushLeastPages); } return result; } public int deleteExpiredFile(long offset) { int cnt = this.mappedFileQueue.deleteExpiredFileByOffset(offset, CQ_STORE_UNIT_SIZE); this.correctMinOffset(offset); return cnt; } public void correctMinOffset(long phyMinOffset) { MappedFile mappedFile = this.mappedFileQueue.getFirstMappedFile(); long minExtAddr = 1; if (mappedFile != null) { SelectMappedBufferResult result = mappedFile.selectMappedBuffer(0); if (result != null) { try { for (int i = 0; i < result.getSize(); i += ConsumeQueue.CQ_STORE_UNIT_SIZE) { long offsetPy = result.getByteBuffer().getLong(); result.getByteBuffer().getInt(); long tagsCode = result.getByteBuffer().getLong(); if (offsetPy >= phyMinOffset) { this.minLogicOffset = mappedFile.getFileFromOffset() + i; log.info("Compute logical min offset: {}, topic: {}, queueId: {}", this.getMinOffsetInQueue(), this.topic, this.queueId); // This maybe not take effect, when not every consume queue has extend file. if (isExtAddr(tagsCode)) { minExtAddr = tagsCode; } break; } } } catch (Exception e) { log.error("Exception thrown when correctMinOffset", e); } finally { result.release(); } } } if (isExtReadEnable()) { this.consumeQueueExt.truncateByMinAddress(minExtAddr); } } public long getMinOffsetInQueue() { return this.minLogicOffset / CQ_STORE_UNIT_SIZE; } public void putMessagePositionInfoWrapper(DispatchRequest request) { final int maxRetries = 30; boolean canWrite = this.defaultMessageStore.getRunningFlags().isCQWriteable(); for (int i = 0; i < maxRetries && canWrite; i++) { long tagsCode = request.getTagsCode(); if (isExtWriteEnable()) { ConsumeQueueExt.CqExtUnit cqExtUnit = new ConsumeQueueExt.CqExtUnit(); cqExtUnit.setFilterBitMap(request.getBitMap()); cqExtUnit.setMsgStoreTime(request.getStoreTimestamp()); cqExtUnit.setTagsCode(request.getTagsCode()); long extAddr = this.consumeQueueExt.put(cqExtUnit); if (isExtAddr(extAddr)) { tagsCode = extAddr; } else { log.warn("Save consume queue extend fail, So just save tagsCode! {}, topic:{}, queueId:{}, offset:{}", cqExtUnit, topic, queueId, request.getCommitLogOffset()); } } boolean result = this.putMessagePositionInfo(request.getCommitLogOffset(), request.getMsgSize(), tagsCode, request.getConsumeQueueOffset()); if (result) { this.defaultMessageStore.getStoreCheckpoint().setLogicsMsgTimestamp(request.getStoreTimestamp()); return; } else { // XXX: warn and notify me log.warn("[BUG]put commit log position info to " + topic + ":" + queueId + " " + request.getCommitLogOffset() + " failed, retry " + i + " times"); try { Thread.sleep(1000); } catch (InterruptedException e) { log.warn("", e); } } } // XXX: warn and notify me log.error("[BUG]consume queue can not write, {} {}", this.topic, this.queueId); this.defaultMessageStore.getRunningFlags().makeLogicsQueueError(); } private boolean putMessagePositionInfo(final long offset, final int size, final long tagsCode, final long cqOffset) { if (offset + size <= this.maxPhysicOffset) { log.warn("Maybe try to build consume queue repeatedly maxPhysicOffset={} phyOffset={}", maxPhysicOffset, offset); return true; } this.byteBufferIndex.flip(); this.byteBufferIndex.limit(CQ_STORE_UNIT_SIZE); this.byteBufferIndex.putLong(offset); this.byteBufferIndex.putInt(size); this.byteBufferIndex.putLong(tagsCode); final long expectLogicOffset = cqOffset * CQ_STORE_UNIT_SIZE; MappedFile mappedFile = this.mappedFileQueue.getLastMappedFile(expectLogicOffset); if (mappedFile != null) { if (mappedFile.isFirstCreateInQueue() && cqOffset != 0 && mappedFile.getWrotePosition() == 0) { this.minLogicOffset = expectLogicOffset; this.mappedFileQueue.setFlushedWhere(expectLogicOffset); this.mappedFileQueue.setCommittedWhere(expectLogicOffset); this.fillPreBlank(mappedFile, expectLogicOffset); log.info("fill pre blank space " + mappedFile.getFileName() + " " + expectLogicOffset + " " + mappedFile.getWrotePosition()); } if (cqOffset != 0) { long currentLogicOffset = mappedFile.getWrotePosition() + mappedFile.getFileFromOffset(); if (expectLogicOffset < currentLogicOffset) { log.warn("Build consume queue repeatedly, expectLogicOffset: {} currentLogicOffset: {} Topic: {} QID: {} Diff: {}", expectLogicOffset, currentLogicOffset, this.topic, this.queueId, expectLogicOffset - currentLogicOffset); return true; } if (expectLogicOffset != currentLogicOffset) { LOG_ERROR.warn( "[BUG]logic queue order maybe wrong, expectLogicOffset: {} currentLogicOffset: {} Topic: {} QID: {} Diff: {}", expectLogicOffset, currentLogicOffset, this.topic, this.queueId, expectLogicOffset - currentLogicOffset ); } } this.maxPhysicOffset = offset + size; return mappedFile.appendMessage(this.byteBufferIndex.array()); } return false; } private void fillPreBlank(final MappedFile mappedFile, final long untilWhere) { ByteBuffer byteBuffer = ByteBuffer.allocate(CQ_STORE_UNIT_SIZE); byteBuffer.putLong(0L); byteBuffer.putInt(Integer.MAX_VALUE); byteBuffer.putLong(0L); int until = (int) (untilWhere % this.mappedFileQueue.getMappedFileSize()); for (int i = 0; i < until; i += CQ_STORE_UNIT_SIZE) { mappedFile.appendMessage(byteBuffer.array()); } } public SelectMappedBufferResult getIndexBuffer(final long startIndex) { int mappedFileSize = this.mappedFileSize; long offset = startIndex * CQ_STORE_UNIT_SIZE; if (offset >= this.getMinLogicOffset()) { MappedFile mappedFile = this.mappedFileQueue.findMappedFileByOffset(offset); if (mappedFile != null) { SelectMappedBufferResult result = mappedFile.selectMappedBuffer((int) (offset % mappedFileSize)); return result; } } return null; } public ConsumeQueueExt.CqExtUnit getExt(final long offset) { if (isExtReadEnable()) { return this.consumeQueueExt.get(offset); } return null; } public boolean getExt(final long offset, ConsumeQueueExt.CqExtUnit cqExtUnit) { if (isExtReadEnable()) { return this.consumeQueueExt.get(offset, cqExtUnit); } return false; } public long getMinLogicOffset() { return minLogicOffset; } public void setMinLogicOffset(long minLogicOffset) { this.minLogicOffset = minLogicOffset; } public long rollNextFile(final long index) { int mappedFileSize = this.mappedFileSize; int totalUnitsInFile = mappedFileSize / CQ_STORE_UNIT_SIZE; return index + totalUnitsInFile - index % totalUnitsInFile; } public String getTopic() { return topic; } public int getQueueId() { return queueId; } public long getMaxPhysicOffset() { return maxPhysicOffset; } public void setMaxPhysicOffset(long maxPhysicOffset) { this.maxPhysicOffset = maxPhysicOffset; } public void destroy() { this.maxPhysicOffset = -1; this.minLogicOffset = 0; this.mappedFileQueue.destroy(); if (isExtReadEnable()) { this.consumeQueueExt.destroy(); } } public long getMessageTotalInQueue() { return this.getMaxOffsetInQueue() - this.getMinOffsetInQueue(); } public long getMaxOffsetInQueue() { return this.mappedFileQueue.getMaxOffset() / CQ_STORE_UNIT_SIZE; } public void checkSelf() { mappedFileQueue.checkSelf(); if (isExtReadEnable()) { this.consumeQueueExt.checkSelf(); } } protected boolean isExtReadEnable() { return this.consumeQueueExt != null; } protected boolean isExtWriteEnable() { return this.consumeQueueExt != null && this.defaultMessageStore.getMessageStoreConfig().isEnableConsumeQueueExt(); } /** * Check {@code tagsCode} is address of extend file or tags code. */ public boolean isExtAddr(long tagsCode) { return ConsumeQueueExt.isExtAddr(tagsCode); } /** * add-huqi 删除过期文件 * * @param startIndex */ public void deleteExpiredFileByIndex(int startIndex) { long offset = startIndex * CQ_STORE_UNIT_SIZE; this.mappedFileQueue.deleteMappedFileByOffset(offset); } }
[ "qihu@lexin.com" ]
qihu@lexin.com
55a98917b50fb5d4c861f3826bc923e2dd6576bf
955b71349b6f5361d72ceb4b6ada265b944d7443
/src/test/java/spring_annotation/test/AnnotationAopTest.java
b83a7217b66bd4df6a8db491e925aa06824676c1
[]
no_license
TongAJ/spring_annotation
542d190cf8515b1efd8134a5ba91eae55692a919
9d8b3ac1df2ac6e83b89abec827201c2b6fc6b69
refs/heads/master
2020-03-24T06:33:16.042964
2018-07-30T09:52:21
2018-07-30T09:52:21
142,532,947
0
0
null
null
null
null
UTF-8
Java
false
false
2,188
java
package spring_annotation.test; import org.junit.Test; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import spring_annotation.bean.Calculator; import spring_annotation.config.MyConfigAop; import spring_annotation.config.MyConfigProfile; import javax.sql.DataSource; public class AnnotationAopTest { /** * Get IOC use AnnotationConfigApplicationContext */ AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(MyConfigAop.class); /** * 总结: * 1)、@EnableAspectJAutoProxy开启AOP功能 * 2)、容器中注入一个AnnotationAwareAspectJAutoProxyCreator组件 * 3)、后置处理器AnnotationAwareAspectJAutoProxyCreator * 4)、容器的创建流程: * 1:refresh()方法中this.registerBeanPostProcessors(beanFactory);注册后置处理器, * 创建后置处理器AnnotationAwareAspectJAutoProxyCreator对象 * 2:调用this.finishBeanFactoryInitialization(beanFactory); * 1--初始化剩下的单实例Bean,创建业务逻辑对象和切面对象,其中后置处理器会拦截对象 * 2--AnnotationAwareAspectJAutoProxyCreator后置处理器会来拦截对象的初始化 * 3--组件创建完成后,判断是否需要增强 * 是:切面的通知方法包装成增强器(Advisor),给业务逻辑对象创建CGLIB的代理对象 * 5)、CglipAopProxy.interceptor() * 1:得到目标方法的拦截器链(增强器包装成MethodInterceptor) * 2:利用拦截器的链式机制,依次进入每一个拦截器进行执行 * 3:效果 * 1--正常返回-->前置通知、目标方法、后置通知、后置返回通知 * 2--异常返回-->前置通知、目标方法、后置通知、后置异常通知 */ @Test public void testAop(){ Calculator calculator = context.getBean(Calculator.class); calculator.div(1,1); calculator.div(1,0); } }
[ "875334300@qq.com" ]
875334300@qq.com
45711d8f631e596b83be3a32f6adb5e069620272
f599cd71dd0a371280c29011801063c053c82f0d
/PBO2-11119702-Latihan55-Ade Eki Nurhakim-HandPhone/src/hp/WindowsPhone.java
91f87961c2cdc40985b651b6715a6d34c1e66ad2
[]
no_license
adeekinurhakim99/PBO2-11119702-Latihan55-Ade-Eki-Nurhakim-HandPhone
df4cdc35642626fad3ad5662b0b12f60a31adc7d
41477aec7e152fb44a9c78f08aedeae3aec0a01a
refs/heads/master
2020-09-02T06:49:41.912965
2019-11-02T13:50:12
2019-11-02T13:50:12
219,160,281
0
0
null
null
null
null
UTF-8
Java
false
false
799
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 hp; /** * * @author Ekiw */ public class WindowsPhone extends Handphone{ private String windowsStore; public WindowsPhone(String man, String os, String model, int harga) { super(man, os, model, harga); } WindowsPhone() { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } public String getWindowsStore() { return windowsStore; } public void setWindowsStore(String windowsStore) { this.windowsStore = windowsStore; } }
[ "noreply@github.com" ]
adeekinurhakim99.noreply@github.com
2a80d2350b7a12fe3e0aa88d988807e54c2de432
0ba867b933cb9cdcf2d30da6424b7c6d27ccb903
/work-schedule-service/src/main/java/com/averude/uksatse/scheduler/microservice/workschedule/shared/model/interfaces/HasDateDuration.java
a50ab86a361938110ddffb0760602cc43a73c02d
[]
no_license
averude/Scheduler
933720e9ae0187d8ba46ccdecb34b6c3a74525eb
80fd2398612e82851db19ec29f46049a26009a60
refs/heads/master
2023-04-13T15:46:30.607540
2023-04-02T17:30:56
2023-04-02T17:30:56
130,825,271
13
3
null
2023-04-05T16:19:33
2018-04-24T08:54:39
TypeScript
UTF-8
Java
false
false
268
java
package com.averude.uksatse.scheduler.microservice.workschedule.shared.model.interfaces; import java.time.LocalDate; public interface HasDateDuration { LocalDate getFrom(); LocalDate getTo(); void setFrom(LocalDate from); void setTo(LocalDate to); }
[ "andreykol46@yahoo.com" ]
andreykol46@yahoo.com
a5243cf593aa6e43160ecf73f6e23011c501d8ba
f8f8f911378d4315b2531e10c0dc736e12eef138
/Hello/src/com/test/Test2.java
fd11e7913dfcd5dee559a79028afac099db44550
[]
no_license
username-bai/test
c4d9eb21db11c5ef6834de95ffe22038c0668e5b
1b780b5cb398aeb7eafd6b804fe95b0cd9856287
refs/heads/master
2020-04-08T18:40:47.708182
2018-11-29T07:57:53
2018-11-29T07:57:53
159,619,534
0
0
null
null
null
null
UTF-8
Java
false
false
125
java
package com.test; public class Test2 { public static void main(String[] args) { System.out.println("aaa"); } }
[ "Administrator@PC-20180511KMEM" ]
Administrator@PC-20180511KMEM
0bc41e6fd2b321dd415527d8d0acf2bbfdff1197
3ff26f373d717fae5b72b59a2778dc3477d5a355
/src/test/java/EntityTheArrayTest.java
06c0a8d80babfc5aa074dea9ff96af3d5041a85a
[]
no_license
Psyh0/MyRepository
8f7c2072e65c175ebbdc212eee7d55f648a652a3
47a1c638be9ede196654f390279ef3c5a1126cda
refs/heads/master
2020-12-24T21:22:48.123565
2016-04-19T09:00:19
2016-04-19T09:00:19
55,982,944
0
0
null
null
null
null
UTF-8
Java
false
false
805
java
import it.pupok.task2.entityTheArray.EntityTheArray; import org.junit.Test; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; /** * Test for the class EntityTheArray */ public class EntityTheArrayTest { EntityTheArray<Integer> actualArrayList; EntityTheArray<Integer> expectedArrayList; /** * Test for the method getArray */ @Test public void testGetArray() { assertEquals(actualArrayList, expectedArrayList.getArray()); } /** * Test for the method setArray */ @Test public void testSetArray() { expectedArrayList.setArray(0, 1, 2); actualArrayList.setArray(0,1,2); assertNotNull(expectedArrayList); assertEquals(actualArrayList, expectedArrayList); } }
[ "psyh0@mail.ru" ]
psyh0@mail.ru
eb2a2c8f9bba8359a3fe5cabea125ebdd38131d3
a51239f5178230ff9b9c858130ebd676c4acaa80
/algorithms/src/main/java/exercises/NQueenProblem.java
4d120493b36e2c85c0e441fb7c73669df706a1a0
[]
no_license
PiskaryovNikita/tutorial
840cd486ff155b7bb1778f67b3b8df84cff7ca67
550a9e173296da8937e0ef70b877532ee50e5cc6
refs/heads/master
2020-05-07T15:07:46.541559
2019-04-12T17:15:45
2019-04-12T17:15:45
180,624,325
0
0
null
null
null
null
UTF-8
Java
false
false
1,751
java
package exercises; public class NQueenProblem { final int N = 8; void printSolution(int board[][]) { for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { System.out.print(" " + board[i][j] + " "); } System.out.println(); } } /* * Не тестим колонки, т.к. каждый ферзь - новая колонка * 1.проверка строки * 2.верхняя левая диаг * 3.нижняя левая диаг */ boolean isSafe(int board[][], int row, int col) { int i, j; for (i = 0; i < col; i++) { if (board[row][i] == 1) { return false; } } for (i = row, j = col; i >= 0 && j >= 0; i--, j--) { if (board[i][j] == 1) { return false; } } for (i = row, j = col; j >= 0 && i < N; i++, j--) { if (board[i][j] == 1) { return false; } } return true; } boolean solveNQUtil(int board[][], int col) { if (col >= N) { return true; } for (int i = 0; i < N; i++) { if (isSafe(board, i, col)) {//1 board[i][col] = 1; if (solveNQUtil(board, col + 1) == true) {//2 return true; } board[i][col] = 0; // BACKTRACK } } return false; } boolean solveNQ() { int board[][] = { { 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0 } }; if (solveNQUtil(board, 0) == false) { System.out.print("Solution does not exist"); return false; } printSolution(board); return true; } public static void main(String args[]) { NQueenProblem queens = new NQueenProblem(); queens.solveNQ(); } }
[ "nikita.piskaryov@nixsolutions.com" ]
nikita.piskaryov@nixsolutions.com
20090dd42ed0cb8904f35a1f0c0f33068e7faca2
c2fb6846d5b932928854cfd194d95c79c723f04c
/java_backup/my java/pinka/project_2011_half_yearly/Binary.java
a8ff08cdd69fab43963d05697f3eef164fb37f5d
[ "MIT" ]
permissive
Jimut123/code-backup
ef90ccec9fb6483bb6dae0aa6a1f1cc2b8802d59
8d4c16b9e960d352a7775786ea60290b29b30143
refs/heads/master
2022-12-07T04:10:59.604922
2021-04-28T10:22:19
2021-04-28T10:22:19
156,666,404
9
5
MIT
2022-12-02T20:27:22
2018-11-08T07:22:48
Jupyter Notebook
UTF-8
Java
false
false
1,223
java
package project_2011_half_yearly; import java.io.*; class Binary { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); int x[]=new int[10]; int i,j,tmp,f,n,v,l,u,mid; Binary(int n1)throws IOException { n=n1; for(i=0;i<n;i++) { System.out.println("Enter number"); x[i]=Integer.parseInt(br.readLine()); //System.out.println(x[i]); } original(); arrangement(); sorted(); search(); } void original() { System.out.println("Original arrangment"+n); for(i=0;i<n;i++) { //System.out.println("Original arrangment1"); System.out.println(x[i]); } } void arrangement() { for(i=0;i<n;i++) { for(j=0;j<n-i-1;j++) if(x[j]>x[j+1]) { tmp=x[j]; x[j]=x[j+1]; x[j+1]=tmp; } } } void sorted() { System.out.println("Sorted arrangement"); for(i=0;i<n;i++) { System.out.println(x[i]); } } void search()throws IOException { System.out.println("Give element"); v=Integer.parseInt(br.readLine()); f=0; l=0; u=n-1; mid=(l+u)/2; while(l<=u) { if(x[mid]==v) { f=1; break; } else if(v>x[mid]) l=mid+1; else if(v<x[mid]) l=mid-1; mid=(l+u)/2; } if(f==1) { System.out.println("Element found"); } else { System.out.println("Element not found"); } } }
[ "jimutbahanpal@yahoo.com" ]
jimutbahanpal@yahoo.com
43861ab1ae99574a11dff8d96f19eeb452a17a46
50630911cd4d917117bc3f8ff0b1ba69900de3d6
/src/main/java/org/a2lpo/bank/notownbank/model/message/logging/StatusLog.java
fca80f403fff708008a08e55a0b84795cd26693a
[]
no_license
nOy39/notown-bank
ab77409fedc6dd763b1a62702ca28c85944c4b56
f9172fa04740dc1c97b35c0cb55dc21b78acf322
refs/heads/master
2020-03-30T14:14:44.200204
2018-10-19T09:22:35
2018-10-19T09:22:35
151,308,477
1
0
null
2018-10-11T11:32:46
2018-10-02T19:07:00
Java
UTF-8
Java
false
false
518
java
package org.a2lpo.bank.notownbank.model.message.logging; import org.hibernate.annotations.NaturalId; import javax.persistence.*; import java.io.Serializable; /** * таблица соотношения логов к статусу */ @Entity @Table(name = "log_status_table") public class StatusLog implements Serializable { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Enumerated(EnumType.STRING) @NaturalId @Column(length = 60) private Status status; }
[ "popov.a39rus@gmail.com" ]
popov.a39rus@gmail.com
5770394c47a626a437c6bc96c383fd7a1c04cc87
832c756923d48ace3f338b27ae9dc8327058d088
/src/contest/ioi/IOI_2010_Traffic_Congestion2.java
8cb339bcb22edd1f73a310b6feac6f40be63fb45
[ "Apache-2.0", "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
luchy0120/competitive-programming
1331bd53698c4b05b57a31d90eecc31c167019bd
d0dfc8f3f3a74219ecf16520d6021de04a2bc9f6
refs/heads/master
2020-05-04T15:18:06.150736
2018-11-07T04:15:26
2018-11-07T04:15:26
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,628
java
package contest.ioi; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.Stack; import java.util.StringTokenizer; public class IOI_2010_Traffic_Congestion2 { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static StringTokenizer st; static int n; static int[] sum; static boolean[] visited; static int[] dp; static ArrayList<ArrayList<Integer>> adjlist; public static void main (String[] args) throws IOException { int n = readInt(); adjlist = new ArrayList<ArrayList<Integer>>(); sum = new int[n]; visited = new boolean[n]; dp = new int[n]; for (int x = 0; x < n; x++) { adjlist.add(new ArrayList<Integer>()); sum[x] = readInt(); } for (int x = 0; x < n - 1; x++) { int a = readInt(); int b = readInt(); adjlist.get(a).add(b); adjlist.get(b).add(a); } Stack<Integer> moves = new Stack<Integer>(); Stack<int[]> bottom = new Stack<int[]>(); moves.push(0); bottom.push(new int[] {0, -1}); while (!moves.isEmpty()) { int curr = moves.pop(); visited[curr] = true; for (int x = 0; x < adjlist.get(curr).size(); x++) { int next = adjlist.get(curr).get(x); if (visited[next]) continue; moves.push(next); bottom.push(new int[] {next, curr}); } } while (!bottom.isEmpty()) { int[] curr = bottom.pop(); int total = sum[curr[0]]; dp[curr[0]] = 0; for (int x = 0; x < adjlist.get(curr[0]).size(); x++) { int next = adjlist.get(curr[0]).get(x); if (curr[1] == next) continue; total += sum[next]; dp[curr[0]] = Math.max(dp[curr[0]], sum[next]); } sum[curr[0]] = total; } int min = Integer.MAX_VALUE; int index = 0; for (int x = 0; x < n; x++) { dp[x] = Math.max(dp[x], sum[0] - sum[x]); if (dp[x] < min) { min = dp[x]; index = x; } } System.out.println(index); } static String next () throws IOException { while (st == null || !st.hasMoreTokens()) st = new StringTokenizer(br.readLine().trim()); return st.nextToken(); } static long readLong () throws IOException { return Long.parseLong(next()); } static int readInt () throws IOException { return Integer.parseInt(next()); } static double readDouble () throws IOException { return Double.parseDouble(next()); } static String readLine () throws IOException { return br.readLine().trim(); } }
[ "jeffrey.xiao1998@gmail.com" ]
jeffrey.xiao1998@gmail.com
71e7fa045ae0b923d24b0af2620a5f7ca1d81a57
4e234c1552020ada180b1039f19c567eedcaab09
/src/com/javarush/test/level07/lesson04/task05/Solution.java
467f078747eb711635612c35f47c99d92e736f8e
[]
no_license
YuriyZaliznyuk/JavaRushHomeWork
bbe5c1c995c4ca9e13c746cbb417a57813a68d43
c984413bf877056b726d2651137bf0b50a5912e8
refs/heads/master
2020-09-14T05:47:00.411179
2016-11-14T01:28:12
2016-11-14T01:28:12
66,854,589
0
0
null
null
null
null
UTF-8
Java
false
false
1,417
java
package com.javarush.test.level07.lesson04.task05; import java.io.BufferedReader; import java.io.InputStreamReader; /* Один большой массив и два маленьких 1. Создать массив на 20 чисел. 2. Ввести в него значения с клавиатуры. 3. Создать два массива на 10 чисел каждый. 4. Скопировать большой массив в два маленьких: половину чисел в первый маленький, вторую половину во второй маленький. 5. Вывести второй маленький массив на экран, каждое значение выводить с новой строки. */ public class Solution { public static void main(String[] args) throws Exception { //напишите тут ваш код BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); int[] list = new int[20]; int[] nums1 = new int[10]; int[] nums2 = new int[10]; for (int i = 0; i < list.length; i++) list[i] = Integer.parseInt(reader.readLine()); for (int i = 0; i < nums1.length; i++) { nums1[i] = list[i]; nums2[i] = list[i + 10]; } for (int i = 0; i < nums2.length; i++) System.out.println(nums2[i]); } }
[ "yuriy.zaliznyuk@gmail.com" ]
yuriy.zaliznyuk@gmail.com
c6d522f9873db194ecab17eafc10082508733ada
5beae40bf8209ede4f8ef6da657f39e19dae0279
/src/main/java/com/cristi/mentool/mentoolfront/infra/configurations/AppConfiguration.java
6d1a18c845cb2e96a04cc3fd888906a504101ff0
[]
no_license
cristi-zmf/mentool-front
c5573984609371ae483fcdcbcf91fede35166da0
de5129dfa45571a93dbe01c386f0ae4ccbeb1096
refs/heads/master
2020-04-18T23:21:01.670710
2019-03-08T03:23:26
2019-03-08T03:23:26
167,819,058
0
0
null
null
null
null
UTF-8
Java
false
false
801
java
package com.cristi.mentool.mentoolfront.infra.configurations; import org.springframework.cloud.client.loadbalancer.LoadBalanced; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.data.jpa.repository.config.EnableJpaRepositories; import org.springframework.web.client.RestTemplate; @EnableJpaRepositories(basePackages = AppConfiguration.BASE_PACKAGES) @ComponentScan(basePackages = AppConfiguration.BASE_PACKAGES) @Configuration public class AppConfiguration { static final String BASE_PACKAGES = "com.cristi.mentool.mentoolfront"; @Bean @LoadBalanced public RestTemplate restTemplate() { return new RestTemplate(); } }
[ "cristi_zmf@yahoo.com" ]
cristi_zmf@yahoo.com
a16eedab8b136844853e8b1deb723b84587c0965
f188735ead8fc330c9b99754567b34a1e46b226c
/src/test/java/udt/TestList.java
8e4b3ab226d7633207d3ae07c39915d194704f75
[]
no_license
ChiralBehaviors/udt-java
03bd5d57d492e8d27cfc9df11eb0486f82ba9ba5
0a45426d4b21b026e8c392349a508fa2c7781e9f
refs/heads/master
2021-01-12T19:52:24.629619
2018-11-08T15:55:30
2018-11-08T15:55:30
18,181,955
0
0
null
null
null
null
UTF-8
Java
false
false
3,667
java
package udt; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import java.util.concurrent.BlockingQueue; import java.util.concurrent.PriorityBlockingQueue; import org.junit.Test; import udt.packets.DataPacket; import udt.packets.KeepAlive; import udt.receiver.AckHistoryEntry; import udt.receiver.AckHistoryWindow; import udt.receiver.PacketHistoryWindow; import udt.receiver.PacketPairWindow; import udt.sender.SenderLossList; import udt.util.CircularArray; /* * tests for the various list and queue classes */ public class TestList { @Test public void testCircularArray(){ CircularArray<Integer>c=new CircularArray<Integer>(5); for(int i=0;i<5;i++)c.add(i); assertEquals(5,c.size()); c.add(6); assertEquals(5,c.size()); System.out.println(c); c.add(7); System.out.println(c); for(int i=8;i<11;i++)c.add(i); System.out.println(c); c.add(11); System.out.println(c); } public void testPacketHistoryWindow(){ PacketHistoryWindow packetHistoryWindow = new PacketHistoryWindow(16); long offset=1000000; for(int i=0;i<28;i++){ packetHistoryWindow.add(offset+i*5000l); } //packets arrive every 5 ms, so packet arrival rate is 200/sec assertEquals(200,packetHistoryWindow.getPacketArrivalSpeed()); } public void testPacketPairWindow(){ long[]values={2,4,6}; PacketPairWindow p=new PacketPairWindow(16); for(int i=0;i<values.length;i++){ p.add(values[i]); } assertEquals(4.0d, p.computeMedianTimeInterval(), 0.001d); long[] arrivaltimes = {12, 12, 12, 12}; PacketPairWindow p1=new PacketPairWindow(16); for(int i=0;i<values.length;i++){ p1.add(arrivaltimes[i]); } assertEquals(12.0d, p1.computeMedianTimeInterval(), 0.001d); } public void testAckHistoryWindow(){ AckHistoryEntry ackSeqNrA = new AckHistoryEntry(0,1,1263465050); AckHistoryEntry ackSeqNrB = new AckHistoryEntry(1,2,1263465054); AckHistoryEntry ackSeqNrC = new AckHistoryEntry(2,3,1263465058); AckHistoryWindow recvWindow = new AckHistoryWindow(3); recvWindow.add(ackSeqNrA); recvWindow.add(ackSeqNrB); recvWindow.add(ackSeqNrC); AckHistoryEntry entryA = recvWindow.getEntry(1); assertEquals(1263465050, entryA.getSentTime()); } public void testSenderLossList1(){ Long A=7l; Long B=8l; Long C=1l; SenderLossList l=new SenderLossList(); l.insert(A); l.insert(B); l.insert(C); assertEquals(3,l.size()); Long oldest=l.getFirstEntry(); assertEquals(C,oldest); oldest=l.getFirstEntry(); assertEquals(A,oldest); oldest=l.getFirstEntry(); assertEquals(B,oldest); } public void testReceiverInputQueue(){ BlockingQueue<UDTPacket> q=new PriorityBlockingQueue<UDTPacket>(5); UDTPacket control = new KeepAlive(); DataPacket d1=new DataPacket(); d1.setPacketSequenceNumber(1); DataPacket d2=new DataPacket(); d2.setPacketSequenceNumber(2); DataPacket d3=new DataPacket(); d3.setPacketSequenceNumber(3); q.offer(d3); q.offer(d2); q.offer(d1); q.offer(control); UDTPacket p1=q.poll(); assertTrue(p1.isControlPacket()); UDTPacket p=q.poll(); assertFalse(p.isControlPacket()); //check ordering by sequence number assertEquals(1,p.getPacketSequenceNumber()); DataPacket d=new DataPacket(); d.setPacketSequenceNumber(54); q.offer(d); p=q.poll(); assertFalse(p.isControlPacket()); assertEquals(2,p.getPacketSequenceNumber()); p=q.poll(); assertFalse(p.isControlPacket()); assertEquals(3,p.getPacketSequenceNumber()); p=q.poll(); assertFalse(p.isControlPacket()); assertEquals(54,p.getPacketSequenceNumber()); } }
[ "bschuller@bee50969-7b09-4b63-a8b0-f2441a869d12" ]
bschuller@bee50969-7b09-4b63-a8b0-f2441a869d12
3bd808e736712ea5d958e105aee5bbef362788e4
0d4c35bb96a6bec5a04b25d302ea5b47a4044e85
/Employee/src/com/ktds/jgu/dao/EmployeeDaoImpl.java
319e9ef4f7aa7616b948300a4f154cf8d1166a36
[]
no_license
geoul/src-source-repository
3e9e43742ca3ee2630bf083fdc18cb439f2980f5
9eef0ce700f5aa7388d9cd804101c095d2b07158
refs/heads/master
2021-01-11T19:48:18.809860
2017-02-28T07:45:39
2017-02-28T07:45:39
79,401,081
0
0
null
null
null
null
UTF-8
Java
false
false
909
java
package com.ktds.jgu.dao; import java.util.ArrayList; import java.util.List; import com.ktds.jgu.vo.EmployeeVO; import com.ktds.jgu.vo.PositionVO; public class EmployeeDaoImpl implements EmployeeDao{ private List<EmployeeVO> employeeList; public void EmployeeBizImpl() { employeeList = new ArrayList<EmployeeVO>(); } @Override public List<EmployeeVO> seachAllEmployee() { return employeeList; } @Override public void addEmployee(EmployeeVO newEmployee) { employeeList.add(newEmployee); } @Override public void deleteEmployee(int index) { employeeList.remove(index); } // @Override // public void updateEmployee(int employeeNumber, PositionVO newPosition) { // positionList.set(employeeNumber, newPosition); // } @Override public void updateEmployee(int index, EmployeeVO newEmployee) { } @Override public EmployeeVO findOneEmployee(int index) { return null; } }
[ "janggeoul59@gmail.com" ]
janggeoul59@gmail.com
1de13dc87c029c38b645d71c12d3361baca5e4fe
5a104a63c669837dd8b788f87e3f9caa415b66b3
/blfngl/fallout/model/ModelNightStalker.java
9b956eae17051cba72f4888fe9255f733bc4f256
[]
no_license
MaxFF/TheFalloutMod-1
456c93c3360f31d1775e6cf0c957ded100f21f77
debab914cbde6578f84c60c2a26dfc6bad062675
refs/heads/master
2021-01-22T11:58:26.525397
2013-06-09T08:35:34
2013-06-09T08:35:34
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,884
java
package blfngl.fallout.model; import net.minecraft.client.model.ModelBase; import net.minecraft.client.model.ModelRenderer; import net.minecraft.entity.Entity; import net.minecraft.util.MathHelper; public class ModelNightStalker extends ModelBase { //fields ModelRenderer WolfHead; ModelRenderer Body; ModelRenderer Mane; ModelRenderer Leg1; ModelRenderer Leg2; ModelRenderer Leg3; ModelRenderer Leg4; ModelRenderer Tail; ModelRenderer Ear1; ModelRenderer Ear2; ModelRenderer Nose; public ModelNightStalker() { textureWidth = 64; textureHeight = 32; WolfHead = new ModelRenderer(this, 0, 0); WolfHead.addBox(-3F, -3F, -2F, 6, 6, 4); WolfHead.setRotationPoint(-1F, 13.5F, -7F); WolfHead.setTextureSize(64, 32); WolfHead.mirror = true; setRotation(WolfHead, 0F, 0F, 0F); Body = new ModelRenderer(this, 18, 14); Body.addBox(-4F, -2F, -3F, 6, 9, 6); Body.setRotationPoint(0F, 14F, 2F); Body.setTextureSize(64, 32); Body.mirror = true; setRotation(Body, 1.570796F, 0F, 0F); Mane = new ModelRenderer(this, 21, 0); Mane.addBox(-4F, -3F, -3F, 8, 6, 7); Mane.setRotationPoint(-1F, 14F, -3F); Mane.setTextureSize(64, 32); Mane.mirror = true; setRotation(Mane, 1.570796F, 0F, 0F); Leg1 = new ModelRenderer(this, 0, 18); Leg1.addBox(-1F, 0F, -1F, 2, 8, 2); Leg1.setRotationPoint(-2.5F, 16F, 7F); Leg1.setTextureSize(64, 32); Leg1.mirror = true; setRotation(Leg1, 0F, 0F, 0F); Leg2 = new ModelRenderer(this, 0, 18); Leg2.addBox(-1F, 0F, -1F, 2, 8, 2); Leg2.setRotationPoint(0.5F, 16F, 7F); Leg2.setTextureSize(64, 32); Leg2.mirror = true; setRotation(Leg2, 0F, 0F, 0F); Leg3 = new ModelRenderer(this, 0, 18); Leg3.addBox(-1F, 0F, -1F, 2, 8, 2); Leg3.setRotationPoint(-2.5F, 16F, -4F); Leg3.setTextureSize(64, 32); Leg3.mirror = true; setRotation(Leg3, 0F, 0F, 0F); Leg4 = new ModelRenderer(this, 0, 18); Leg4.addBox(-1F, 0F, -1F, 2, 8, 2); Leg4.setRotationPoint(0.5F, 16F, -4F); Leg4.setTextureSize(64, 32); Leg4.mirror = true; setRotation(Leg4, 0F, 0F, 0F); Tail = new ModelRenderer(this, 9, 18); Tail.addBox(-1F, 0F, -1F, 2, 8, 2); Tail.setRotationPoint(-1F, 12F, 8F); Tail.setTextureSize(64, 32); Tail.mirror = true; setRotation(Tail, 1.836463F, 0F, 0F); Ear1 = new ModelRenderer(this, 16, 14); Ear1.addBox(-3F, -5F, 0F, 2, 2, 1); Ear1.setRotationPoint(-1F, 13.5F, -7F); Ear1.setTextureSize(64, 32); Ear1.mirror = true; setRotation(Ear1, 0F, 0F, 0F); Ear2 = new ModelRenderer(this, 16, 14); Ear2.addBox(1F, -5F, 0F, 2, 2, 1); Ear2.setRotationPoint(-1F, 13.5F, -7F); Ear2.setTextureSize(64, 32); Ear2.mirror = true; setRotation(Ear2, 0F, 0F, 0F); Nose = new ModelRenderer(this, 0, 10); Nose.addBox(-2F, 0F, -5F, 3, 3, 4); Nose.setRotationPoint(-0.5F, 13.5F, -7F); Nose.setTextureSize(64, 32); Nose.mirror = true; setRotation(Nose, 0F, 0F, 0F); } public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5) { super.render(entity, f, f1, f2, f3, f4, f5); setRotationAngles(f, f1, f2, f3, f4, f5, entity); WolfHead.render(f5); Body.render(f5); Mane.render(f5); Leg1.render(f5); Leg2.render(f5); Leg3.render(f5); Leg4.render(f5); Tail.render(f5); Ear1.render(f5); Ear2.render(f5); Nose.render(f5); } private void setRotation(ModelRenderer model, float x, float y, float z) { model.rotateAngleX = x; model.rotateAngleY = y; model.rotateAngleZ = z; } public void setRotationAngles(float f, float f1, float f2, float f3, float f4, float f5, Entity ent) { this.Leg1.rotateAngleX = MathHelper.cos(f2 * 0.6662F) * 1.4F * f3; this.Leg2.rotateAngleX = MathHelper.cos(f2 * 0.6662F + (float)Math.PI) * 1.4F * f3; this.Leg3.rotateAngleX = MathHelper.cos(f2 * 0.6662F + (float)Math.PI) * 1.4F * f3; this.Leg4.rotateAngleX = MathHelper.cos(f2 * 0.6662F) * 1.4F * f3; } }
[ "takutastrong@yahoo.com" ]
takutastrong@yahoo.com
782ff132339d7ba9b369c6d8f8dcd438a713c62a
7a8588e119c81e5dd8f574c61fe1b5892ad1899e
/market/src/main/java/com/mmohaule/market/MarketData.java
5b7f241de543e8cb303cdf2614a95888924e7268
[]
no_license
mmohaule/FixMe
30cabc5e3acc9f0826bf010d416a21c3d8aad399
95e4d41a7d058b5e4fa9782e883b41877fb019c0
refs/heads/master
2020-04-01T23:03:17.302116
2018-10-30T10:06:58
2018-10-30T10:06:58
153,738,797
0
0
null
null
null
null
UTF-8
Java
false
false
2,264
java
package com.mmohaule.market; import java.util.HashMap; public class MarketData { private static MarketData marketData = null; private static String marketId; private HashMap<String, Stock> stocks; private MarketData() { stocks = new HashMap<>(); initStocks(); } public static MarketData getInstance() { if (marketData == null) marketData = new MarketData(); return (marketData); } private void initStocks() { stocks.put("NVDA", new Stock("NVDA", 244.49f, 100)); stocks.put("AMZN", new Stock("AMZN", 1703.17f, 100)); stocks.put("GOOGL", new Stock("GOOGL", 1140.34f, 100)); stocks.put("FB", new Stock("FB", 199.27f, 100)); stocks.put("NFLX", new Stock("NFLX", 409.46f, 100)); stocks.put("MU", new Stock("MU", 54.85f, 100)); stocks.put("AAPL", new Stock("AAPL", 186.40f, 100)); stocks.put("MSFT", new Stock("MSFT", 99.53f, 100)); stocks.put("CRM", new Stock("CRM", 135.62f, 100)); stocks.put("TSLA", new Stock("TSLA", 260f, 100)); } @Override public String toString() { String marketDataStr; marketDataStr = ""; marketDataStr += "Market ID: "; marketDataStr += marketId + System.lineSeparator(); marketDataStr += "Instruments:" + System.lineSeparator(); for (HashMap.Entry<String, Stock> stock : stocks.entrySet() ) { String tickerSymbol; float price; int qty; tickerSymbol = stock.getKey(); price = stock.getValue().getPrice(); qty = stock.getValue().getQty(); marketDataStr += tickerSymbol + ": $" + price + " " + qty + System.lineSeparator(); } return (marketDataStr); } public static String getMarketId() { return marketId; } public static void setMarketId(String marketId) { MarketData.marketId = marketId; } public HashMap<String, Stock> getStocks() { return stocks; } public String getMarketData() { return (this.getMarketData()); } }
[ "mmohaule@e4r13p10.wethinkcode.co.za" ]
mmohaule@e4r13p10.wethinkcode.co.za
e9174c9f24d07f7588c61ccadebdee7e790f5e76
3303f8ef27cd98b9caeb18e9ef1bbc91eaa8304a
/app/src/main/java/com/atandi/smarttravel/AdminApp/AdminActivities/AdminAdapters/PendingUserAdapter.java
e7a76f83e5c790fd480cfdbd0af8931fb3eff3ea
[]
no_license
AtandiEdwin/Smart-Travel
8881bd62524ac4cea3a5ff56df4d0f4a133ee841
0f670acd74378eef595093a9e20ab52146efd214
refs/heads/master
2022-10-13T10:13:24.713641
2022-10-05T12:26:15
2022-10-05T12:26:15
237,014,747
0
0
null
2021-08-13T10:19:09
2020-01-29T15:23:53
Java
UTF-8
Java
false
false
7,633
java
package com.atandi.smarttravel.AdminApp.AdminActivities.AdminAdapters; import android.Manifest; import android.app.AlertDialog; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.content.pm.PackageManager; import android.net.Uri; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.CheckBox; import android.widget.ImageView; import android.widget.TextView; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.core.app.ActivityCompat; import androidx.core.content.ContextCompat; import androidx.recyclerview.widget.RecyclerView; import com.android.volley.AuthFailureError; import com.android.volley.Request; import com.android.volley.RequestQueue; import com.android.volley.Response; import com.android.volley.VolleyError; import com.android.volley.toolbox.StringRequest; import com.android.volley.toolbox.Volley; import com.atandi.smarttravel.Activities.RegisterActivity; import com.atandi.smarttravel.AdminApp.AdminActivities.AdminFragments.BookedCustomersFragment; import com.atandi.smarttravel.AdminApp.AdminActivities.AdminModels.PendingUserModel; import com.atandi.smarttravel.MainActivity; import com.atandi.smarttravel.R; import java.util.HashMap; import java.util.List; import java.util.Map; import static androidx.core.content.ContextCompat.checkSelfPermission; import static com.atandi.smarttravel.Constants.Links.SAVE_DETAILS; import static com.atandi.smarttravel.Constants.Links.UPDATE_USER_STATUS; public class PendingUserAdapter extends RecyclerView.Adapter<PendingUserAdapter.ViewHolder> { Context context; List<PendingUserModel> pUser; public PendingUserAdapter(Context context, List<PendingUserModel> pUser) { this.context = context; this.pUser = pUser; } interface OnClickLister { void onClick(BookedCustomersFragment clickediten); } private View.OnClickListener mcallback; public void setOnClickListener(View.OnClickListener callback) { mcallback = callback; } @NonNull @Override public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) { View view = LayoutInflater.from(context).inflate(R.layout.pending_user_item, parent, false); return new PendingUserAdapter.ViewHolder(view); } @Override public void onBindViewHolder(@NonNull final ViewHolder holder, int position) { PendingUserModel model = pUser.get(position); holder.pendUserPhone.setText(model.getUser_phone()); holder.pendUserPickPoint.setText(model.getPickpoint()); // // holder.customaercall.setOnClickListener(new View.OnClickListener() { // @Override // public void onClick(View v) { // String number = holder.pendUserPhone.getText().toString(); // Intent callIntent = new Intent(Intent.ACTION_CALL); // callIntent.setData(Uri.parse("tel:" + number)); // if (ContextCompat.checkSelfPermission(context.getApplicationContext(),Manifest.permission.CALL_PHONE) != PackageManager.PERMISSION_GRANTED) { // ActivityCompat.requestPermissions(context.getApplicationContext(),new String[]{Manifest.permission.CALL_PHONE},1); // return; // } // context.startActivity(callIntent); // } // }); holder.pendUserCheckBox.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if(holder.pendUserCheckBox.isChecked()){ final AlertDialog.Builder builder = new AlertDialog.Builder(context); builder.setTitle("Smart Travel"); builder.setMessage("Are you sure the customer as boarded ?"); builder.setCancelable(false); builder.setPositiveButton("YES", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { final String status = "booked"; final String uphone = holder.pendUserPhone.getText().toString(); StringRequest stringRequest = new StringRequest(Request.Method.POST, UPDATE_USER_STATUS, new Response.Listener<String>() { @Override public void onResponse(String response) { int pos = holder.getAdapterPosition(); if(pos!= RecyclerView.NO_POSITION){ holder.itemView.setVisibility(View.GONE); holder.itemView.getLayoutParams().height=0; } else{ holder.itemView.setVisibility(View.VISIBLE); holder.itemView.setLayoutParams(new RecyclerView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)); } } }, new Response.ErrorListener() { @Override public void onErrorResponse(VolleyError error) { } }){ @Override protected Map<String, String> getParams() { Map<String,String> map = new HashMap<>(); map.put("status",status); map.put("phone",uphone); return map; } }; RequestQueue mrequestQueue = Volley.newRequestQueue(context); mrequestQueue.add(stringRequest); } }); builder.setNegativeButton("CANCEL", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { builder.setCancelable(true); } }); builder.create().show(); } } }); } @Override public int getItemCount() { return pUser.size(); } class ViewHolder extends RecyclerView.ViewHolder{ TextView pendUserPhone,pendUserPickPoint; CheckBox pendUserCheckBox; ImageView customaercall; public ViewHolder(@NonNull View itemView) { super(itemView); pendUserPhone = itemView.findViewById(R.id.pendUserPhone); pendUserPickPoint = itemView.findViewById(R.id.pendUserPickPoint); pendUserCheckBox = itemView.findViewById(R.id.pendUserCheckBox); customaercall = itemView.findViewById(R.id.customaercall); itemView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { int pos = getAdapterPosition(); if(pos!= RecyclerView.NO_POSITION){ } } }); } } }
[ "developeredwin2016@gmail.com" ]
developeredwin2016@gmail.com
c0f4c334903531c7b2619dc49da63fad2a0f455b
aba60fdc27e6cc9f99166dbe17fffb7598eac7f5
/src/main/java/io/choerodon/devops/domain/application/entity/UserAttrE.java
e58dbbfecce624b545fca93c28de9cfd17a7b45a
[ "Apache-2.0" ]
permissive
mengtaovivi/devops-service
1f1f4118bd1d4ab72554a4f0aef96c31bfc881c6
7bcf9d2932239e4b7f4e8ed173938dc62f9457e3
refs/heads/master
2020-03-26T03:28:05.737363
2018-08-10T08:14:12
2018-08-10T08:14:12
144,457,340
0
0
Apache-2.0
2018-08-12T10:26:32
2018-08-12T10:26:32
null
UTF-8
Java
false
false
622
java
package io.choerodon.devops.domain.application.entity; /** * Created by Zenger on 2018/3/28. */ public class UserAttrE { private Long id; private Long gitlabUserId; public UserAttrE() { } public UserAttrE(Long id, Long gitlabUserId) { this.id = id; this.gitlabUserId = gitlabUserId; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getGitlabUserId() { return gitlabUserId; } public void setGitlabUserId(Long gitlabUserId) { this.gitlabUserId = gitlabUserId; } }
[ "792996942@qq.com" ]
792996942@qq.com
e6da58eae5a4d93b5b5cccaf3f2bf686d56eeb18
44ae99cc690a2ccd25e22b3dc71343ce3882eee7
/net/opengis/gml/x32/DynamicFeatureMemberType.java
d302b23badf3ac87264b44f2ceaa8b05f4e7d04b
[]
no_license
mcenirm/isotc211-src
0ee877ddcb0ff71191008311d3ee60d8c4263a70
c8d68f488500ed4815f1fa9875c0c24f3bda845b
refs/heads/master
2021-03-12T23:00:39.838690
2012-06-16T22:15:48
2012-06-16T22:15:48
null
0
0
null
null
null
null
UTF-8
Java
false
false
14,829
java
/* * XML Type: DynamicFeatureMemberType * Namespace: http://www.opengis.net/gml/3.2 * Java type: net.opengis.gml.x32.DynamicFeatureMemberType * * Automatically generated - do not modify. */ package net.opengis.gml.x32; /** * An XML DynamicFeatureMemberType(@http://www.opengis.net/gml/3.2). * * This is a complex type. */ public interface DynamicFeatureMemberType extends net.opengis.gml.x32.AbstractFeatureMemberType { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(DynamicFeatureMemberType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sC7E4D2BA29F77ED4AC7E57B2D3FDB5C1").resolveHandle("dynamicfeaturemembertypef658type"); /** * Gets array of all "DynamicFeature" elements */ net.opengis.gml.x32.DynamicFeatureType[] getDynamicFeatureArray(); /** * Gets ith "DynamicFeature" element */ net.opengis.gml.x32.DynamicFeatureType getDynamicFeatureArray(int i); /** * Returns number of "DynamicFeature" element */ int sizeOfDynamicFeatureArray(); /** * Sets array of all "DynamicFeature" element */ void setDynamicFeatureArray(net.opengis.gml.x32.DynamicFeatureType[] dynamicFeatureArray); /** * Sets ith "DynamicFeature" element */ void setDynamicFeatureArray(int i, net.opengis.gml.x32.DynamicFeatureType dynamicFeature); /** * Inserts and returns a new empty value (as xml) as the ith "DynamicFeature" element */ net.opengis.gml.x32.DynamicFeatureType insertNewDynamicFeature(int i); /** * Appends and returns a new empty value (as xml) as the last "DynamicFeature" element */ net.opengis.gml.x32.DynamicFeatureType addNewDynamicFeature(); /** * Removes the ith "DynamicFeature" element */ void removeDynamicFeature(int i); /** * Gets the "type" attribute */ java.lang.String getType(); /** * Gets (as xml) the "type" attribute */ org.apache.xmlbeans.XmlString xgetType(); /** * True if has "type" attribute */ boolean isSetType(); /** * Sets the "type" attribute */ void setType(java.lang.String type); /** * Sets (as xml) the "type" attribute */ void xsetType(org.apache.xmlbeans.XmlString type); /** * Unsets the "type" attribute */ void unsetType(); /** * Gets the "href" attribute */ java.lang.String getHref(); /** * Gets (as xml) the "href" attribute */ org.apache.xmlbeans.XmlAnyURI xgetHref(); /** * True if has "href" attribute */ boolean isSetHref(); /** * Sets the "href" attribute */ void setHref(java.lang.String href); /** * Sets (as xml) the "href" attribute */ void xsetHref(org.apache.xmlbeans.XmlAnyURI href); /** * Unsets the "href" attribute */ void unsetHref(); /** * Gets the "role" attribute */ java.lang.String getRole(); /** * Gets (as xml) the "role" attribute */ org.apache.xmlbeans.XmlAnyURI xgetRole(); /** * True if has "role" attribute */ boolean isSetRole(); /** * Sets the "role" attribute */ void setRole(java.lang.String role); /** * Sets (as xml) the "role" attribute */ void xsetRole(org.apache.xmlbeans.XmlAnyURI role); /** * Unsets the "role" attribute */ void unsetRole(); /** * Gets the "arcrole" attribute */ java.lang.String getArcrole(); /** * Gets (as xml) the "arcrole" attribute */ org.apache.xmlbeans.XmlAnyURI xgetArcrole(); /** * True if has "arcrole" attribute */ boolean isSetArcrole(); /** * Sets the "arcrole" attribute */ void setArcrole(java.lang.String arcrole); /** * Sets (as xml) the "arcrole" attribute */ void xsetArcrole(org.apache.xmlbeans.XmlAnyURI arcrole); /** * Unsets the "arcrole" attribute */ void unsetArcrole(); /** * Gets the "title" attribute */ java.lang.String getTitle(); /** * Gets (as xml) the "title" attribute */ org.apache.xmlbeans.XmlString xgetTitle(); /** * True if has "title" attribute */ boolean isSetTitle(); /** * Sets the "title" attribute */ void setTitle(java.lang.String title); /** * Sets (as xml) the "title" attribute */ void xsetTitle(org.apache.xmlbeans.XmlString title); /** * Unsets the "title" attribute */ void unsetTitle(); /** * Gets the "show" attribute */ org.w3.x1999.xlink.ShowAttribute.Show.Enum getShow(); /** * Gets (as xml) the "show" attribute */ org.w3.x1999.xlink.ShowAttribute.Show xgetShow(); /** * True if has "show" attribute */ boolean isSetShow(); /** * Sets the "show" attribute */ void setShow(org.w3.x1999.xlink.ShowAttribute.Show.Enum show); /** * Sets (as xml) the "show" attribute */ void xsetShow(org.w3.x1999.xlink.ShowAttribute.Show show); /** * Unsets the "show" attribute */ void unsetShow(); /** * Gets the "actuate" attribute */ org.w3.x1999.xlink.ActuateAttribute.Actuate.Enum getActuate(); /** * Gets (as xml) the "actuate" attribute */ org.w3.x1999.xlink.ActuateAttribute.Actuate xgetActuate(); /** * True if has "actuate" attribute */ boolean isSetActuate(); /** * Sets the "actuate" attribute */ void setActuate(org.w3.x1999.xlink.ActuateAttribute.Actuate.Enum actuate); /** * Sets (as xml) the "actuate" attribute */ void xsetActuate(org.w3.x1999.xlink.ActuateAttribute.Actuate actuate); /** * Unsets the "actuate" attribute */ void unsetActuate(); /** * Gets the "nilReason" attribute */ java.lang.Object getNilReason(); /** * Gets (as xml) the "nilReason" attribute */ net.opengis.gml.x32.NilReasonType xgetNilReason(); /** * True if has "nilReason" attribute */ boolean isSetNilReason(); /** * Sets the "nilReason" attribute */ void setNilReason(java.lang.Object nilReason); /** * Sets (as xml) the "nilReason" attribute */ void xsetNilReason(net.opengis.gml.x32.NilReasonType nilReason); /** * Unsets the "nilReason" attribute */ void unsetNilReason(); /** * Gets the "remoteSchema" attribute */ java.lang.String getRemoteSchema(); /** * Gets (as xml) the "remoteSchema" attribute */ org.apache.xmlbeans.XmlAnyURI xgetRemoteSchema(); /** * True if has "remoteSchema" attribute */ boolean isSetRemoteSchema(); /** * Sets the "remoteSchema" attribute */ void setRemoteSchema(java.lang.String remoteSchema); /** * Sets (as xml) the "remoteSchema" attribute */ void xsetRemoteSchema(org.apache.xmlbeans.XmlAnyURI remoteSchema); /** * Unsets the "remoteSchema" attribute */ void unsetRemoteSchema(); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static net.opengis.gml.x32.DynamicFeatureMemberType newInstance() { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static net.opengis.gml.x32.DynamicFeatureMemberType newInstance(org.apache.xmlbeans.XmlOptions options) { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static net.opengis.gml.x32.DynamicFeatureMemberType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static net.opengis.gml.x32.DynamicFeatureMemberType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static net.opengis.gml.x32.DynamicFeatureMemberType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static net.opengis.gml.x32.DynamicFeatureMemberType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static net.opengis.gml.x32.DynamicFeatureMemberType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static net.opengis.gml.x32.DynamicFeatureMemberType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static net.opengis.gml.x32.DynamicFeatureMemberType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static net.opengis.gml.x32.DynamicFeatureMemberType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static net.opengis.gml.x32.DynamicFeatureMemberType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static net.opengis.gml.x32.DynamicFeatureMemberType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static net.opengis.gml.x32.DynamicFeatureMemberType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static net.opengis.gml.x32.DynamicFeatureMemberType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static net.opengis.gml.x32.DynamicFeatureMemberType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static net.opengis.gml.x32.DynamicFeatureMemberType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static net.opengis.gml.x32.DynamicFeatureMemberType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static net.opengis.gml.x32.DynamicFeatureMemberType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (net.opengis.gml.x32.DynamicFeatureMemberType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } }
[ "mmceniry@hawkeye.itsc.uah.edu" ]
mmceniry@hawkeye.itsc.uah.edu
96521bbe9cdeb6380d8bf34bf80af6202d32a724
f2af4b51f8c8c39bdf38b83a60959003a113effb
/test5EXam.java
bb2903fbb55a32412e39f71d73485d23c94c8dae
[]
no_license
QoyuC/201810
673d6baadb3135b33cff5815ce8b947e5aead2e5
fc94197c0fb0780a1f2fd09844698c7e0ad839cb
refs/heads/master
2021-09-25T02:41:25.075168
2018-10-17T09:56:06
2018-10-17T09:56:06
null
0
0
null
null
null
null
UTF-8
Java
false
false
329
java
import java.util.*; //單位換算:身高及體重 (1磅0.454kg;1吋2.54cm) public class test5EXam { public static void main(String[] args){ Scanner s = new Scanner(System.in); int h = s.nextInt(),w = s.nextInt(); System.out.println(h/2.54d); System.out.println(w/0.454d); } }
[ "noreply@github.com" ]
QoyuC.noreply@github.com
be5f3b70c295b9515afe452095a6dce0b67f1e25
055697d148f0d740565bf906a9c7b22b6b1f6d36
/mqtt-sn-gateway-console/src/main/java/org/slj/mqtt/sn/console/impl/TopicHandler.java
b4cb93f25129d334f72c52bb046e52045b5fbd90
[ "Apache-2.0" ]
permissive
simon622/mqtt-sn
b6449b531d7e6d553ad37ea3b71873553e4d16bc
f53bd8dfc5815bd90a2816d8381a2dff6d6dcb5f
refs/heads/master
2023-06-24T17:30:18.594164
2023-06-14T22:37:32
2023-06-22T07:22:24
429,001,714
25
5
Apache-2.0
2023-06-22T07:26:00
2021-11-17T10:30:11
Java
UTF-8
Java
false
false
6,530
java
/* * Copyright (c) 2021 Simon Johnson <simon622 AT gmail DOT com> * * Find me on GitHub: * https://github.com/simon622 * * 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.slj.mqtt.sn.console.impl; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.databind.ObjectMapper; import org.slj.mqtt.sn.MqttsnSpecificationValidator; import org.slj.mqtt.sn.console.http.HttpConstants; import org.slj.mqtt.sn.console.http.HttpException; import org.slj.mqtt.sn.console.http.HttpInternalServerError; import org.slj.mqtt.sn.console.http.IHttpRequestResponse; import org.slj.mqtt.sn.model.MqttsnClientCredentials; import org.slj.mqtt.sn.model.MqttsnOptions; import org.slj.mqtt.sn.spi.IMqttsnRuntimeRegistry; import org.slj.mqtt.sn.spi.MqttsnException; import org.slj.mqtt.sn.spi.MqttsnIllegalFormatException; import java.io.IOException; import java.util.*; public class TopicHandler extends MqttsnConsoleAjaxRealmHandler { public TopicHandler(ObjectMapper mapper, IMqttsnRuntimeRegistry registry) { super(mapper, registry); } @Override protected void handleHttpPost(IHttpRequestResponse request) throws HttpException, IOException { try { boolean modified = false; if("predefined".equals(getMandatoryParameter(request, "type"))){ Map<String, Integer> aliass = registry.getOptions().getPredefinedTopics(); TopicForm form = readRequestBody(request, TopicForm.class); String topic = form.topic; int topicAlias = Integer.valueOf(form.topicAlias); if(MqttsnSpecificationValidator.isValidSubscriptionTopic(topic, 1024)){ if(aliass.values().contains(topicAlias) || aliass.containsKey(topic)){ writeMessageBeanResponse(request, HttpConstants.SC_OK, new Message("Topic already existed", false)); } else { aliass.put(topic, topicAlias); writeMessageBeanResponse(request, HttpConstants.SC_OK, new Message("New Predefined Topic Alias added", true)); modified = true; } } else { writeMessageBeanResponse(request, HttpConstants.SC_OK, new Message("Topic was incorrect format '"+topic+"'", false)); } } if(modified){ registry.getStorageService().writeRuntimeOptions(registry.getOptions()); } } catch(MqttsnException e){ throw new HttpInternalServerError("error creating client Id", e); } } @Override protected void handleHttpGet(IHttpRequestResponse request) throws HttpException, IOException { try { if(null != getParameter(request, "remove")){ boolean modified = false; String topicPath = getParameter(request, "remove"); Map<String, Integer> aliass = registry.getOptions().getPredefinedTopics(); if(aliass.remove(topicPath) != null){ modified = true; } writeMessageBeanResponse(request, HttpConstants.SC_OK, new Message("Removed Client Identifier from runtime (if existed)", modified)); if(modified){ registry.getStorageService().writeRuntimeOptions(registry.getOptions()); } } else { TopicsBean bean = populateBean(); writeJSONBeanResponse(request, HttpConstants.SC_OK, bean); } } catch(Exception e){ throw new HttpInternalServerError("error populating bean;", e); } } protected TopicsBean populateBean() throws MqttsnException { TopicsBean bean = new TopicsBean(); MqttsnOptions options = registry.getOptions(); Map<String, Integer> map = options.getPredefinedTopics(); if(map != null) map.forEach((s, integer) -> bean.addPredefined(s, integer, null)); //-- FIX ME - this is not good for large datasets Set<String> paths = registry.getSubscriptionRegistry().readAllSubscribedTopicPaths(); if(paths != null) paths.forEach((s) -> { try { int count = registry.getSubscriptionRegistry().matches(s).size(); bean.addNormalTopic(s, count, null); } catch (MqttsnException | MqttsnIllegalFormatException e) { } } ); return bean; } class TopicsBean { @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = HttpConstants.DEFAULT_DATE_FORMAT) public Date generatedAt; public List<TopicBean> predefinedTopics = new ArrayList<>(); public List<TopicBean> normalTopics = new ArrayList<>(); public void addPredefined(String topicPath, int alias, String description){ TopicBean bean = new TopicBean(); bean.topicPath = topicPath; bean.alias = alias; bean.description = description; predefinedTopics.add(bean); } public void addNormalTopic(String topicPath, int subscriptionCount, String description){ TopicBean bean = new TopicBean(); bean.topicPath = topicPath; bean.subscriptionCount = subscriptionCount; bean.description = description; normalTopics.add(bean); } } class TopicBean { public String topicPath; public int subscriptionCount; public String description = ""; public int alias; } } class TopicForm { public TopicForm() { } public String topic; public int topicAlias; }
[ "2924684+simon622@users.noreply.github.com" ]
2924684+simon622@users.noreply.github.com
a6f84fa339bd8b3fc2d04f746d51934fdf3cc019
cd9c6b2a7bb8fa64a6bd4cf71373170f2514d791
/AndroidAppMarket/googlemarket/src/main/java/com/lt/googlemarket/widget/LoadingPage.java
c9f688484db9d29dd1ef5e15a3d85255207f0379
[]
no_license
heihei101/MyFisrtProject
bff8435b74712d66ba4aeeb20e148fa351e9de01
04ee722e2fee1b24d17107a1529913871e513b72
refs/heads/master
2020-03-28T20:42:49.921336
2017-06-18T16:23:47
2017-06-18T16:23:47
94,614,584
0
0
null
null
null
null
UTF-8
Java
false
false
6,118
java
package com.lt.googlemarket.widget; import android.content.Context; import android.util.AttributeSet; import android.view.View; import android.widget.FrameLayout; import com.lt.googlemarket.R; import com.lt.googlemarket.utils.ConstantUtil; import com.lt.googlemarket.utils.Utils; /** * Created by Administrator on 2017/6/11. */ public abstract class LoadingPage extends FrameLayout { private View loadingView;//加载过程中的视图 private View errorView;//加载失败的视图 private View emptyView;//服务器没有返回数据的视图 private View successedView;//请求服务器成功,也有数据时候展示的视图 //提供一个变量用于记录本次请求网络的所处状态值 //static在内存中只会保留一个变量 //非static在内存中可以保留多个变量,因为项目中每一个页面都需要记录此页面的网络请求状态,所以页面有几个,变量就有几个 private int current_state = ConstantUtil.STATE_NONE; public LoadingPage(Context context) { this(context,null); } public LoadingPage(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); //最后都会执行这个方法,所以在这个方法中调用initview方法 //System.out.println("success1"); initview(); } public LoadingPage(Context context, AttributeSet attrs) { this(context, attrs,-1); } private void initview() { /** * 将在此帧布局中可能会展示的界面添加进来 * 加载过程中的view对象 * 加载失败view对象 * 加载为空view对象 */ //将控件加载进fragment loadingView= Utils.inflact(R.layout.layout_loading); addView(loadingView); errorView= Utils.inflact(R.layout.layout_error); addView(errorView); emptyView= Utils.inflact(R.layout.layout_empty); addView(emptyView); //在什么情况下展示何种视图效果 //1.(正在加载,初始状态------->进度条转圈) //2.(请求失败------------->错误wifi符号) //3.(请求成功,数据为空------------->空篮子) //4.(请求成功------------->由具体的Fragment决定页面效果) // System.out.println("success"); showPage(); } private void showPage() { if(loadingView!=null){ if(current_state==ConstantUtil.STATE_NONE || current_state==ConstantUtil.STATE_LOADING){ //此时显示进度条,current_state=0or1; loadingView.setVisibility(View.VISIBLE); }else{ loadingView.setVisibility(View.GONE); } } if(errorView!=null){ if(current_state==ConstantUtil.STATE_ERROR){ errorView.setVisibility(View.VISIBLE); }else{ errorView.setVisibility(View.GONE); } } if(emptyView!=null){ if(current_state==ConstantUtil.STATE_EMPTY ){ emptyView.setVisibility(View.VISIBLE); }else{ emptyView.setVisibility(View.GONE); } } //如果请求网络的状态,请求成功,服务器也提供了数据 if(current_state==ConstantUtil.STATE_SUCCESSED){ //由于当获取网络成功后,会产生不同的布局,所以要根据不同的情况进行设置 //设置抽象类 successedView=onCreateSuccessedView(); if(successedView!=null){ addView(successedView); successedView.setVisibility(View.VISIBLE); } } } protected abstract View onCreateSuccessedView(); //写一个方法来访问网络 public void Internet(){ //当current_state处于非loading状态时可以访问网络,将current_state状态归位 if (current_state == ConstantUtil.STATE_SUCCESSED || current_state == ConstantUtil.STATE_EMPTY || current_state == ConstantUtil.STATE_ERROR){ current_state = ConstantUtil.STATE_NONE; } //2.如果状态为STATE_NONE就可以发送下一次请求 if(current_state==ConstantUtil.STATE_NONE){ new Thread(new Runnable() { @Override public void run() { //针对不同的Fragment和不同的activity发送网络请求 //知道url地址?,请求参数?,请求方式?,请求结果json串? //(失败,为空,成功) //1.获取一个枚举的对象 final ResultState resultState=onload(); //由于要根据网络结果返回ui,所以以下代码在主线程执行 Utils.runOnUIThread(new Runnable() { @Override public void run() { //2.获取在创建枚举的时候,传递进来的参数(请求网络的状态码) if(resultState!=null){ current_state=resultState.getState(); showPage();//回调showPage方法刷新界面 } } }); } }).start(); } } // 枚举(限定类型,限定onLoad方法的结果的类型,限定了onLoad方法返回的对象,只可能是以下3个对象中的某一个 /*RESULTSTATE_ERROR(2), RESULTSTATE_EMPTY(3), RESULTSTATE_SUCCESSED(4);*/ protected abstract ResultState onload(); public enum ResultState{ //共同的状态有三种 RESULTSTATE_ERROR(ConstantUtil.STATE_ERROR), RESULTSTATE_EMPTY(ConstantUtil.STATE_EMPTY), RESULTSTATE_SUCCESSED(ConstantUtil.STATE_SUCCESSED); private int state; private ResultState(int state){ this.state=state; } public int getState(){ return state; } } }
[ "1017306894@qq.com" ]
1017306894@qq.com
5c7e20c962a5136056c245c443e967bcd5b05ae6
ccbcf0a449b744dd1c832245ddfdd2d27a88068c
/src/com/rc/components/Colors.java
45d11407f69b01fe7ecb91ca20eee3ad8af57b8a
[]
no_license
Max0705/MiddlewareChatNew
3009e3df3e70fd6cc2bd589d225669c0386b9cc2
381d4672f5be9d2f32ebe3571bb0312ab919a7df
refs/heads/master
2020-03-19T00:56:18.154102
2018-06-03T09:42:56
2018-06-03T09:42:56
135,510,891
1
0
null
null
null
null
UTF-8
Java
false
false
1,668
java
package com.rc.components; import java.awt.*; /** * Created by song on 17-5-29. */ public class Colors { public static final Color RED = new Color(228, 74, 47); public static final Color FONT_BLACK = new Color(0,0,0); public static final Color SHADOW = new Color(221, 221, 221); public static final Color GROUP_AVATAR_BACKGROUND = new Color(221, 221, 221); public static Color DARK = new Color(121, 136, 139); //public static Color WINDOW_BACKGROUND = new Color(245, 245, 245); public static Color WINDOW_BACKGROUND = new Color(190, 197, 201); public static final Color WINDOW_BACKGROUND_LIGHT = new Color(250, 250, 250); public static Color SCROLL_BAR_TRACK_LIGHT = new Color(214, 214, 214); public static Color FONT_WHITE = new Color(255, 255, 255); public static Color FONT_GRAY = new Color(152, 152, 152); public static Color FONT_GRAY_DARKER = new Color(152, 152, 152); public static Color DARKER = new Color(106, 105, 129); public static Color ITEM_SELECTED_DARK = new Color(57, 63, 68); public static Color ITEM_SELECTED = new Color(65, 71, 78); public static Color ITEM_SELECTED_LIGHT = new Color(228, 228, 228); public static Color LIGHT_GRAY = new Color(222, 222, 222); public static Color DIALOG_BORDER = new Color(204, 204, 204); public static Color PROGRESS_BAR_START = new Color(178, 226, 129); public static Color PROGRESS_BAR_END = new Color(133, 194, 97); public static Color MAIN_COLOR = new Color(121, 136, 139); public static Color MAIN_COLOR_DARKER = new Color(106, 105, 129); public static final Color SCROLL_BAR_THUMB = new Color(122, 122, 122); }
[ "569736866@qq.com" ]
569736866@qq.com
24b349920e70e9fe47ed6e7a83aabf1e08e8f52c
b6bfcd599f48107c977787ce201d2bbd089e6618
/app/src/main/java/com/kuycoding/moviecatalogue3/provider/MoviesProvider.java
770c407488466a6506ba289589549ee6dc6d4fcb
[]
no_license
kuycoding/MADE5-Final-Project-Movie-Catalogue
f0ec92a6b47eaddffc185b18ba07dcf7683ead5c
60d8e14bcf74d631d6eb6579cb2dd540b46e645d
refs/heads/master
2020-09-17T00:42:47.252693
2019-11-25T11:47:34
2019-11-25T11:47:34
223,935,927
1
0
null
null
null
null
UTF-8
Java
false
false
3,974
java
package com.kuycoding.moviecatalogue3.provider; import android.content.ContentProvider; import android.content.ContentValues; import android.content.UriMatcher; import android.database.Cursor; import android.net.Uri; import android.os.Handler; import com.kuycoding.moviecatalogue3.db.MovieHelper; import com.kuycoding.moviecatalogue3.fragment.FavMoviesFragment; import org.jetbrains.annotations.NotNull; import java.util.Objects; import static com.kuycoding.moviecatalogue3.db.DatabaseContract.AUTHORITY; import static com.kuycoding.moviecatalogue3.db.DatabaseContract.CONTENT_URI; import static com.kuycoding.moviecatalogue3.db.DatabaseContract.TABLE_FAV_MOVIE; public class MoviesProvider extends ContentProvider { private static final int MOVIE = 1; private static final int MOVIE_ID = 2; private MovieHelper movieHelper; private static final UriMatcher sUriMatcher = new UriMatcher(UriMatcher.NO_MATCH); static { sUriMatcher.addURI(AUTHORITY, TABLE_FAV_MOVIE, MOVIE); sUriMatcher.addURI(AUTHORITY, TABLE_FAV_MOVIE + "/#", MOVIE_ID); } @Override public boolean onCreate() { movieHelper = MovieHelper.getInstance(getContext()); movieHelper.open(); return true; } @Override public Cursor query(@NotNull Uri uri, String[] strings, String s, String[] strings1, String s1) { movieHelper.open(); Cursor cursor; switch (sUriMatcher.match(uri)) { case MOVIE: cursor = movieHelper.queryProviderAll(); break; case MOVIE_ID: cursor = movieHelper.queryById(uri.getLastPathSegment()); break; default: cursor = null; break; } return cursor; } @Override public String getType(@NotNull Uri uri) { return null; } @Override public Uri insert(@NotNull Uri uri, ContentValues contentValues) { movieHelper.open(); long added; switch (sUriMatcher.match(uri)) { case MOVIE: added = movieHelper.insertProviderMovie(contentValues); break; default: added = 0; break; } Objects.requireNonNull(getContext()).getContentResolver().notifyChange(CONTENT_URI, new FavMoviesFragment.DataObserver(new Handler(), getContext())); //getContext().getContentResolver().notifyChange(CONTENT_URI, null); return Uri.parse(CONTENT_URI + "/" +added); } @Override public int update(@NotNull Uri uri, ContentValues contentValues, String selection, String[] selectionArgs) { movieHelper.open(); int updated; switch (sUriMatcher.match(uri)) { case MOVIE: updated = movieHelper.updateProviderMovie(uri.getLastPathSegment(), contentValues); break; default: updated = 0; break; } Objects.requireNonNull(getContext()).getContentResolver().notifyChange(CONTENT_URI, new FavMoviesFragment.DataObserver(new Handler(), getContext())); //getContext().getContentResolver().notifyChange(CONTENT_URI, null); return updated; } @Override public int delete(@NotNull Uri uri, String selection, String[] selectionArgs) { movieHelper.open(); int deleted; switch (sUriMatcher.match(uri)) { case MOVIE_ID: deleted = movieHelper.deleteProviderMovie(uri.getLastPathSegment()); break; default: deleted = 0; break; } Objects.requireNonNull(getContext()).getContentResolver().notifyChange(CONTENT_URI, new FavMoviesFragment.DataObserver(new Handler(), getContext())); //getContext().getContentResolver().notifyChange(CONTENT_URI, null); return deleted; } }
[ "kuycoding@gmail.com" ]
kuycoding@gmail.com
6885c9ad11897f8f3e291b8120abcdd629647ea0
da347026528ace4b9fc8e90a468bd28707cfee5e
/src/java/Controller/Auxiliarr.java
b87d124aad3ef985aa35a854b526ad1b16272e58
[]
no_license
anfegave98/ProyectoDBFinal
8060243a38a0c9ac8176bc7f88e53c79368504dc
22dc12c30a0d762241450ddeefe421ba580c5802
refs/heads/master
2021-07-20T23:57:07.575627
2017-10-30T07:03:58
2017-10-30T07:03:58
108,324,822
0
0
null
null
null
null
UTF-8
Java
false
false
3,951
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 Controller; import DAO.AuxiliarDAO; import Model.Auxiliar; import java.io.IOException; import java.io.PrintWriter; import java.sql.SQLException; import java.util.ArrayList; import java.util.logging.Level; import java.util.logging.Logger; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * * @author anfeg */ public class Auxiliarr extends HttpServlet { /** * Processes requests for both HTTP <code>GET</code> and <code>POST</code> * methods. * * @param request servlet request * @param response servlet response * @throws ServletException if a servlet-specific error occurs * @throws IOException if an I/O error occurs */ protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html;charset=UTF-8"); try (PrintWriter out = response.getWriter()) { /* TODO output your page here. You may use following sample code. */ out.println("<!DOCTYPE html>"); out.println("<html>"); out.println("<head>"); out.println("<title>Servlet Auxiliarr</title>"); out.println("</head>"); out.println("<body>"); out.println("<h1>Servlet Auxiliarr at " + request.getContextPath() + "</h1>"); out.println("</body>"); out.println("</html>"); } } // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code."> /** * Handles the HTTP <code>GET</code> method. * * @param request servlet request * @param response servlet response * @throws ServletException if a servlet-specific error occurs * @throws IOException if an I/O error occurs */ @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { try { AuxiliarDAO obj = new AuxiliarDAO(); ArrayList<Auxiliar> lista = (ArrayList<Auxiliar>) obj.getAllAuxiliar(); request.setAttribute("listaAuxiliares", lista); request.getRequestDispatcher("Auxiliar.jsp").forward(request, response); } catch (SQLException ex) { Logger.getLogger(Auxiliarr.class.getName()).log(Level.SEVERE, null, ex); } } @Override protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { try { int id_auxiliar = Integer.parseInt(request.getParameter("idAuxiliar")); String nombre = (String) request.getParameter("nombre"); String apellido = (String) request.getParameter("apellido"); String fecha_entrada = (String) request.getParameter("fechaE"); String turno = (String) request.getParameter("turno"); int id_supervisor = Integer.parseInt(request.getParameter("idSupervisor")); AuxiliarDAO dao = new AuxiliarDAO(); Auxiliar tab = new Auxiliar(id_auxiliar, nombre, apellido, fecha_entrada, turno, id_supervisor); dao.addAuxiliar(tab); response.sendRedirect("Auxiliarr"); } catch (SQLException ex) { Logger.getLogger(Auxiliarr.class.getName()).log(Level.SEVERE, null, ex); } } @Override public String getServletInfo() { return "Short description"; }// </editor-fold> }
[ "anfeg@DESKTOP-M4T1740" ]
anfeg@DESKTOP-M4T1740
b268856bec98d483640c6f39b893137e40b65dee
88ce8d511b10c939e40ad8b0c03043a1ab6a79e8
/app/src/main/java/com/yidiankeyan/science/information/adapter/ClassAudiosAdapter.java
6230091c26cf691c34a341c80c369c579bd4ee58
[]
no_license
dengjiaping/branch_lessons
73c123f300c8c5490cb759e893077c85876c6339
9bb5a2b7588b9c6b6b874d71a1e7ca1fe30b01fc
refs/heads/master
2021-08-14T16:56:27.296167
2017-11-16T07:30:05
2017-11-16T07:30:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
14,535
java
package com.yidiankeyan.science.information.adapter; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.graphics.Color; import android.graphics.drawable.BitmapDrawable; import android.view.Gravity; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.view.WindowManager; import android.widget.BaseAdapter; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.PopupWindow; import android.widget.TextView; import android.widget.Toast; import com.bumptech.glide.Glide; import com.yidiankeyan.science.R; import com.yidiankeyan.science.app.entity.EventMsg; import com.yidiankeyan.science.information.acitivity.ClassAudioActivity; import com.yidiankeyan.science.information.entity.BookedAlbumBean; import com.yidiankeyan.science.subscribe.activity.AlbumDetailsActivity; import com.yidiankeyan.science.utils.SystemConstant; import com.yidiankeyan.science.utils.TimeUtils; import com.yidiankeyan.science.utils.Util; import com.yidiankeyan.science.utils.net.HttpUtil; import com.yidiankeyan.science.utils.net.ResultEntity; import com.zhy.autolayout.AutoLinearLayout; import org.greenrobot.eventbus.EventBus; import org.json.JSONException; import java.util.HashMap; import java.util.List; import java.util.Map; /** * 分类 * -音频已订专辑Adapter */ public class ClassAudiosAdapter extends BaseAdapter implements View.OnClickListener { private List<BookedAlbumBean> mDatas; private Context context; private AutoLinearLayout llClassTxt; private PopupWindow mPopupWindow; private AutoLinearLayout ll_zhiding; private AutoLinearLayout ll_bottom; //定义hashMap 用来存放之前创建的每一项item HashMap<Integer, View> lmap = new HashMap<Integer, View>(); public ClassAudiosAdapter(Context context, List<BookedAlbumBean> mDatas) { this.context = context; this.mDatas = mDatas; } @Override public int getCount() { return mDatas.size(); } @Override public Object getItem(int position) { return mDatas.get(position); } @Override public long getItemId(int position) { return position; } public AutoLinearLayout getLlClassTxt() { return llClassTxt; } public void setLlClassTxt(AutoLinearLayout llClassTxt) { this.llClassTxt = llClassTxt; } @Override public View getView(final int position, View convertView, ViewGroup parent) { ViewHolder viewHolder; if (lmap.get(position) == null) { convertView = LayoutInflater.from(context).inflate(R.layout.item_classbooked, parent, false); viewHolder = new ViewHolder(convertView); convertView.setTag(viewHolder); lmap.put(position, convertView); } else { convertView = lmap.get(position); viewHolder = (ViewHolder) convertView.getTag(); } viewHolder.position = position; viewHolder.btnXiala.setTag(viewHolder); viewHolder.btnXiala.setOnClickListener(this); final BookedAlbumBean allBean = mDatas.get(position); switch (allBean.getAlbumtype()) { case 1: viewHolder.imgNameType.setImageResource(R.drawable.imgtxt); break; case 2: viewHolder.imgNameType.setImageResource(R.drawable.animation_column_three); break; case 3: viewHolder.imgNameType.setImageResource(R.drawable.jc_play_normal); break; } viewHolder.txtContent.setText(allBean.getRecenttitle()); viewHolder.txtTitle.setText(allBean.getAlbumname()); viewHolder.txtName.setText("by " + allBean.getAuthorname()); viewHolder.txtNumber.setText(allBean.getContentnum() + "篇"); Glide.with(context).load(Util.getImgUrl(allBean.getCoverimgurl())) .error(R.drawable.icon_hotload_failed) .placeholder(R.drawable.icon_hotload_failed) .into(viewHolder.imgAdd); viewHolder.txtTou.setText(allBean.getReadnum() + ""); viewHolder.txtUpTime.setText(TimeUtils.questionCreateDuration(allBean.getRecentupdatetime())); convertView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { ViewHolder viewHolder = (ViewHolder) v.getTag(); viewHolder.txtUpTime.setText(TimeUtils.questionCreateDuration(allBean.getRecentupdatetime())); viewHolder.txtUpTime.setTextColor(Color.parseColor("#b9b9b9")); Intent intent = new Intent(context, AlbumDetailsActivity.class); intent.putExtra("albumId", mDatas.get(position).getAlbumid()); intent.putExtra("albumName", mDatas.get(position).getAlbumname()); intent.putExtra("albumAvatar", mDatas.get(position).getCoverimgurl()); context.startActivity(intent); } }); if (mDatas.get(position).getIstop() == 1) { viewHolder.imgSubscribeTop.setVisibility(View.VISIBLE); } else { viewHolder.imgSubscribeTop.setVisibility(View.GONE); } return convertView; } // private void showPop(final int position) { // if (mPopupWindow == null) { // View view = View.inflate(context, R.layout.alert_dialog, null); // mPopupWindow = new PopupWindow(view, ViewGroup.LayoutParams.MATCH_PARENT, // ViewGroup.LayoutParams.WRAP_CONTENT); // mPopupWindow.setContentView(view); // mPopupWindow.setAnimationStyle(R.style.AnimBottom); // WindowManager.LayoutParams lp = ((Activity) context).getWindow().getAttributes(); // lp.alpha = 0.6f; // ((Activity) context).getWindow().setAttributes(lp); // mPopupWindow.setFocusable(true); // mPopupWindow.setOutsideTouchable(true); // mPopupWindow.setBackgroundDrawable(new BitmapDrawable()); // mPopupWindow.showAtLocation(((Activity) context).findViewById(R.id.ll_all), Gravity.BOTTOM, 0, 0); // mPopupWindow.setOnDismissListener(new PopupWindow.OnDismissListener() { // @Override // public void onDismiss() { // Util.finishPop((Activity) context, mPopupWindow); // } // }); // } else { // WindowManager.LayoutParams lp = ((Activity) context).getWindow().getAttributes(); // lp.alpha = 0.6f; // ((Activity) context).getWindow().setAttributes(lp); // mPopupWindow.showAtLocation(((Activity) context).findViewById(R.id.ll_all), Gravity.BOTTOM, 0, 0); // } // //取消弹出框 // LinearLayout ll_cancel = (LinearLayout) mPopupWindow.getContentView().findViewById(R.id.ll_sub_cancel); // ll_cancel.setOnClickListener(new View.OnClickListener() { // @Override // public void onClick(View v) { // Util.finishPop((Activity) context, mPopupWindow); // } // }); // mPopupWindow.getContentView().findViewById(R.id.ll_cancelsub).setOnClickListener(new View.OnClickListener() { // @Override // public void onClick(View v) { // Util.finishPop((Activity) context, mPopupWindow); // ((ClassImaTxtActivity) context).showLoadingDialog("正在操作"); // toHttpAbolishOrder(position); // } // }); // } @Override public void onClick(View v) { switch (v.getId()) { case R.id.btn_xiala: final ViewHolder viewHolder = (ViewHolder) v.getTag(); if (mPopupWindow == null) { View view = View.inflate(context, R.layout.alert_dialog, null); //item置顶 ll_zhiding = (AutoLinearLayout) view.findViewById(R.id.ll_top); ll_bottom = (AutoLinearLayout) view.findViewById(R.id.ll_bottom); mPopupWindow = new PopupWindow(view, ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT); mPopupWindow.setContentView(view); mPopupWindow.setAnimationStyle(R.style.AnimBottom); WindowManager.LayoutParams lp = ((Activity) context).getWindow().getAttributes(); lp.alpha = 0.6f; ((Activity) context).getWindow().setAttributes(lp); mPopupWindow.setFocusable(true); mPopupWindow.setOutsideTouchable(true); mPopupWindow.setBackgroundDrawable(new BitmapDrawable()); mPopupWindow.showAtLocation(((Activity) context).findViewById(R.id.ll_class_audio), Gravity.BOTTOM, 0, 0); mPopupWindow.setOnDismissListener(new PopupWindow.OnDismissListener() { @Override public void onDismiss() { Util.finishPop((Activity) context, mPopupWindow); } }); } else { WindowManager.LayoutParams lp = ((Activity) context).getWindow().getAttributes(); lp.alpha = 0.6f; ((Activity) context).getWindow().setAttributes(lp); mPopupWindow.showAtLocation(((Activity) context).findViewById(R.id.ll_class_audio), Gravity.BOTTOM, 0, 0); } if (mDatas.get(viewHolder.position).getIstop() == 0) { ll_bottom.setVisibility(View.GONE); ll_zhiding.setVisibility(View.VISIBLE); } else { ll_zhiding.setVisibility(View.GONE); ll_bottom.setVisibility(View.VISIBLE); } // if (mDatas.get(viewHolder.position).getIstop() == 1) ll_zhiding.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { EventMsg msg = EventMsg.obtain(SystemConstant.ON_CLICK_TOP); msg.setBody(mDatas.get(viewHolder.position).getOrderid()); EventBus.getDefault().post(msg); //数组置顶 // BusinessAllBean s = mDatas.get(viewHolder.position); // mDatas.remove(viewHolder.position); // mDatas.add(0, s); // notifyDataSetChanged(); finishPop(mPopupWindow); } }); ll_bottom.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { EventMsg msg = EventMsg.obtain(SystemConstant.ON_CLICK_BOTTOM); msg.setBody(mDatas.get(viewHolder.position).getOrderid()); EventBus.getDefault().post(msg); finishPop(mPopupWindow); } }); //取消弹出框 LinearLayout ll_cancel = (LinearLayout) mPopupWindow.getContentView().findViewById(R.id.ll_sub_cancel); ll_cancel.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { finishPop(mPopupWindow); } }); mPopupWindow.getContentView().findViewById(R.id.ll_cancelsub).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { finishPop(mPopupWindow); ((ClassAudioActivity) context).showLoadingDialog("正在操作"); toHttpAbolishOrder(viewHolder); } }); break; } } private void toHttpAbolishOrder(final ViewHolder viewHolder) { Map<String, Object> map = new HashMap<>(); map.put("albumid", mDatas.get(viewHolder.position).getAlbumid()); HttpUtil.post(context, SystemConstant.URL + SystemConstant.ORDER_ABOLISH_ALBUM, map, new HttpUtil.HttpCallBack() { @Override public void successResult(ResultEntity result) throws JSONException { if (200 == result.getCode()) { mDatas.remove(viewHolder.position); notifyDataSetChanged(); ((ClassAudioActivity) context).loadingDismiss(); } } @Override public void errorResult(Throwable ex, boolean isOnCallback) { Toast.makeText(context, "操作失败,请检查网络", Toast.LENGTH_SHORT); ((ClassAudioActivity) context).loadingDismiss(); } }); } private void finishPop(PopupWindow popupWindow) { if (popupWindow != null && popupWindow.isShowing()) { popupWindow.dismiss(); } WindowManager.LayoutParams lp = ((Activity) context).getWindow().getAttributes(); lp.alpha = 1.0f; ((Activity) context).getWindow().setAttributes(lp); } class ViewHolder { ImageView imgAdd, btnXiala, imgSubscribeTop, imgNameType; TextView txtUpTime, txtTou, txtNumber, txtName, txtContent, txtTitle; int position; public ViewHolder(View convertView) { txtTitle = (TextView) convertView.findViewById(R.id.sub_title); btnXiala = (ImageView) convertView.findViewById(R.id.btn_xiala); imgAdd = (ImageView) convertView.findViewById(R.id.sub_item_button); txtContent = (TextView) convertView.findViewById(R.id.title_sub); txtName = (TextView) convertView.findViewById(R.id.txt_zhuname); txtNumber = (TextView) convertView.findViewById(R.id.txt_neirong); txtTou = (TextView) convertView.findViewById(R.id.yuedu); txtUpTime = (TextView) convertView.findViewById(R.id.txt_gengxin); imgSubscribeTop = (ImageView) convertView.findViewById(R.id.img_subscribe_Top); imgNameType = (ImageView) convertView.findViewById(R.id.sub_nametype); } } }
[ "you@example.com" ]
you@example.com
e4c2c379cf165514a6d2ca094849b342f72947cf
3af8735800566fcfc3e234c8ea13803f53002989
/J2EE/SpringIoC/src/main/java/com/mercury/stereotype/beans/Person.java
3a3c1b17a3fcd17ebe94c8127e685be8b1077ceb
[]
no_license
SzLizarrrr/js-spring-simple
e627be97089bbc8f0ffb91bb4fe243a4fdc4100e
c3b428f7f3bb64265d556f5f1feeee5824fd015d
refs/heads/master
2020-03-24T12:50:35.123186
2018-07-29T03:06:04
2018-07-29T03:06:04
142,726,246
0
0
null
null
null
null
UTF-8
Java
false
false
912
java
package com.mercury.stereotype.beans; import java.util.Set; import javax.annotation.Resource; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; @Component public class Person { @Value("Bob") private String name; @Autowired private Address address; @Override public String toString() { return "Person [name=" + name + ", address=" + address + ", emails=" + emails + "]"; } @Resource private Set<String> emails; public String getName() { return name; } public void setName(String name) { this.name = name; } public Address getAddress() { return address; } public void setAddress(Address address) { this.address = address; } public Set<String> getEmails() { return emails; } public void setEmails(Set<String> emails) { this.emails = emails; } }
[ "victor.zhou@walmart.com" ]
victor.zhou@walmart.com
5263635ef5cc196aa3ac2a45b7233481a2760a5c
ee9aa986a053e32c38d443d475d364858db86edc
/src/main/java/com/springrain/erp/common/persistence/proxy/PaginationMapperProxy.java
31a96c421c472ff9173c0811855cc235cb958096
[ "Apache-2.0" ]
permissive
modelccc/springarin_erp
304db18614f69ccfd182ab90514fc1c3a678aaa8
42eeb70ee6989b4b985cfe20472240652ec49ab8
refs/heads/master
2020-05-15T13:10:21.874684
2018-05-24T15:39:20
2018-05-24T15:39:20
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,740
java
/** * Copyright &copy; 2012-2013 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); */ package com.springrain.erp.common.persistence.proxy; import org.apache.ibatis.binding.BindingException; import org.apache.ibatis.binding.MapperMethod; import org.apache.ibatis.session.SqlSession; import com.springrain.erp.common.persistence.Page; import com.springrain.erp.common.utils.Reflections; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; import java.util.HashSet; import java.util.Set; /** * <p> * . * </p> * * @author poplar.yfyang * @version 1.0 2012-05-13 上午10:07 * @since JDK 1.5 */ public class PaginationMapperProxy implements InvocationHandler { private static final Set<String> OBJECT_METHODS = new HashSet<String>() { private static final long serialVersionUID = -1782950882770203583L; { add("toString"); add("getClass"); add("hashCode"); add("equals"); add("wait"); add("notify"); add("notifyAll"); } }; private boolean isObjectMethod(Method method) { return OBJECT_METHODS.contains(method.getName()); } private final SqlSession sqlSession; private PaginationMapperProxy(final SqlSession sqlSession) { this.sqlSession = sqlSession; } @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { if (isObjectMethod(method)) { return null; } final Class<?> declaringInterface = findDeclaringInterface(proxy, method); if (Page.class.isAssignableFrom(method.getReturnType())) { // 分页处理 return new PaginationMapperMethod(declaringInterface, method, sqlSession).execute(args); } // 原处理方式 final MapperMethod mapperMethod = new MapperMethod(declaringInterface, method, sqlSession.getConfiguration()); final Object result = mapperMethod.execute(sqlSession, args); if (result == null && method.getReturnType().isPrimitive()) { throw new BindingException( "Mapper method '" + method.getName() + "' (" + method.getDeclaringClass() + ") attempted to return null from a method with a primitive return type (" + method.getReturnType() + ")."); } return result; } private Class<?> findDeclaringInterface(Object proxy, Method method) { Class<?> declaringInterface = null; for (Class<?> mapperFaces : proxy.getClass().getInterfaces()) { Method m = Reflections.getAccessibleMethod(mapperFaces, method.getName(), method.getParameterTypes()); if (m != null) { declaringInterface = mapperFaces; } } if (declaringInterface == null) { throw new BindingException( "Could not find interface with the given method " + method); } return declaringInterface; } @SuppressWarnings("unchecked") public static <T> T newMapperProxy(Class<T> mapperInterface, SqlSession sqlSession) { ClassLoader classLoader = mapperInterface.getClassLoader(); Class<?>[] interfaces = new Class[]{mapperInterface}; PaginationMapperProxy proxy = new PaginationMapperProxy(sqlSession); return (T) Proxy.newProxyInstance(classLoader, interfaces, proxy); } }
[ "601906911@qq.com" ]
601906911@qq.com
8e8fe126f41d02a50b1448e1101d63a6d78cd222
ba83a7ecd97d06cdf00057d3bf6df261cde5775d
/app/src/main/java/id/ac/unsyiah/elektro/mobile/testbutawarna/PenjelasanSingkat.java
b252619851271d8e82bf23dc1051a1e80db951b0
[]
no_license
LinaMarlina25/TestButaWarna
343b96d8e3f3755de8fa8953e18e36f2019e3e49
c5b9ae3464909399bf9c7432c75fd5fcf4ac46ca
refs/heads/master
2021-01-10T16:57:27.490037
2015-05-24T17:09:04
2015-05-24T17:09:04
36,183,117
0
0
null
null
null
null
UTF-8
Java
false
false
1,174
java
package id.ac.unsyiah.elektro.mobile.testbutawarna; import android.support.v7.app.ActionBarActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; public class PenjelasanSingkat extends ActionBarActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_penjelasan_singkat); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.menu_penjelasan_singkat, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); //noinspection SimplifiableIfStatement if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } }
[ "lina_xtg@yahoo.co.id" ]
lina_xtg@yahoo.co.id
c99f9c8b3c7bafca9272f5f798180bda05963465
26eac66b6cdd2183f47790a2f6ecad931b7a4bac
/td GUI/tdGui/src/tdGui/Exc.java
9337d13995a8165ddf325b60ee0d7dfbec11e3ab
[]
no_license
enzomasson25/Info641POO
1eb4349e2df33f6969106fc9f5699166a8c2cc4b
54f82eab4728025f23f796deb9178cdcdefaa708
refs/heads/master
2021-03-18T01:57:21.433503
2020-03-20T14:02:57
2020-03-20T14:02:57
247,037,116
0
0
null
null
null
null
ISO-8859-1
Java
false
false
2,257
java
package tdGui; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.ButtonGroup; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JRadioButton; public class Exc extends JFrame implements ActionListener{ private JPanel pan = new JPanel(); private JButton bouton = new JButton("+1"); private int compteur = 0; private boolean whichEx = true; private JLabel label = new JLabel("Le JLabel"); private ButtonGroup bg = new ButtonGroup(); private JRadioButton rouge = new JRadioButton("Rouge"); private JRadioButton jaune = new JRadioButton("Jaune"); private JRadioButton vert = new JRadioButton("Vert"); private ButtonGroup bgSelect = new ButtonGroup(); private JRadioButton exa = new JRadioButton("Exercice A"); private JRadioButton exb = new JRadioButton("Exercice B"); public Exc(){ this.setTitle("Exercice C"); this.setSize(500, 150); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setLocationRelativeTo(null); bg.add(rouge); bg.add(jaune); bg.add(vert); bgSelect.add(exa); bgSelect.add(exb); exa.addActionListener(this); exb.addActionListener(this); rouge.addActionListener(this); jaune.addActionListener(this); vert.addActionListener(this); pan.add(exa); pan.add(exb); pan.add(rouge); pan.add(jaune); pan.add(vert); pan.add(label); pan.add(bouton); bouton.addActionListener(this); this.setContentPane(pan); this.setVisible(true); } public static void main(String[] args) { Exc fen = new Exc(); } @Override public void actionPerformed(ActionEvent e) { if(e.getActionCommand()=="Exercice A") { whichEx = true; } else if(e.getActionCommand()=="Exercice B") { whichEx = false; } else if ((e.getActionCommand()=="+1")&(whichEx == true)) { this.compteur++; label.setText("Vous avez cliqué " + this.compteur + " fois"); } else if (((e.getActionCommand()=="Rouge")|(e.getActionCommand()=="Jaune")|(e.getActionCommand()=="Vert"))&(whichEx == false)){ this.label.setText("Vous avez sélectionné le " + e.getActionCommand()); } } }
[ "noreply@github.com" ]
enzomasson25.noreply@github.com
95fa195aa04a1f1cf548d85c388080d3f1593376
28213562144a74368509a1f0d159067f077cbc8b
/app/src/main/java/com/daimac/easyswitcher/api/ApiRetrofit.java
7e36802d0d99abbf875a09b07eeff7f2c72207d9
[]
no_license
lzx8589561/EasySwitcher
60dc988d09bac0159a8b050297ea04c7e27175ae
5226102df2e3be6b63324e018ba2df4817140f9f
refs/heads/master
2021-05-16T10:04:49.106996
2017-09-25T01:31:33
2017-09-25T01:31:33
104,634,279
0
1
null
null
null
null
UTF-8
Java
false
false
2,091
java
package com.daimac.easyswitcher.api; import com.daimac.easyswitcher.api.base.BaseApiRetrofit; import com.daimac.easyswitcher.model.request.LoginRequest; import com.daimac.easyswitcher.model.response.LoginResponse; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import java.util.List; import okhttp3.RequestBody; import retrofit2.Retrofit; import retrofit2.adapter.rxjava.RxJavaCallAdapterFactory; import retrofit2.converter.gson.GsonConverterFactory; import rx.Observable; /** * @描述 使用Retrofit对网络请求进行配置 */ public class ApiRetrofit extends BaseApiRetrofit { public MyApi mApi; public static ApiRetrofit mInstance; private ApiRetrofit() { super(); Gson gson = new GsonBuilder() .setLenient() .create(); //在构造方法中完成对Retrofit接口的初始化 mApi = new Retrofit.Builder() .baseUrl(MyApi.BASE_URL) .client(getClient()) .addConverterFactory(GsonConverterFactory.create(gson)) .addCallAdapterFactory(RxJavaCallAdapterFactory.create()) .build() .create(MyApi.class); } public static ApiRetrofit getInstance() { if (mInstance == null) { synchronized (ApiRetrofit.class) { if (mInstance == null) { mInstance = new ApiRetrofit(); } } } return mInstance; } //登录 public Observable<LoginResponse> login(String phone, String password) { return mApi.login(getRequestBody(new LoginRequest(phone, password))); } public MyApi getApi(){ return mApi; } private RequestBody getRequestBody(Object obj) { String route = new Gson().toJson(obj); RequestBody body=RequestBody.create(okhttp3.MediaType.parse("application/json; charset=utf-8"),route); // RequestBody body = RequestBody.create(okhttp3.MediaType.parse("application/json; charset=utf-8"), route); return body; } }
[ "8589561@qq.com" ]
8589561@qq.com
8e788abb03426bd595211d6bfe4fe65f075fadca
3af21709e4f6a6eaa087ec4e55d2cc2b028f2140
/AP_MART/src/java/AssignServicerServlet.java
69e8a6dd8238a1076a97f86e822e2c5bb2c0e1b0
[]
no_license
imparthgalani/AP_MART
f89956b41dc407d33b5cab73ba939358b0fdb3df
2a449f6b75fbd0a959ef6874cb84c802b6592e99
refs/heads/main
2023-06-03T19:26:22.391339
2021-06-24T04:30:18
2021-06-24T04:30:18
363,718,558
4
0
null
null
null
null
UTF-8
Java
false
false
3,472
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ import DAO.OrederDAO; import java.io.IOException; import java.io.PrintWriter; import java.sql.SQLException; import java.util.logging.Level; import java.util.logging.Logger; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * * @author Ankit Chauhan */ @WebServlet(urlPatterns = {"/AssignServicerServlet"}) public class AssignServicerServlet extends HttpServlet { /** * Processes requests for both HTTP <code>GET</code> and <code>POST</code> * methods. * * @param request servlet request * @param response servlet response * @throws ServletException if a servlet-specific error occurs * @throws IOException if an I/O error occurs */ protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException, SQLException { response.setContentType("text/html;charset=UTF-8"); try (PrintWriter out = response.getWriter()) { /* TODO output your page here. You may use following sample code. */ String order_list_id1 = request.getParameter("order_list_id"); String servicer_id1 = request.getParameter("user_id"); int order_list_id = Integer.parseInt(order_list_id1); int servicer_id = Integer.parseInt(servicer_id1); OrederDAO.AssignServicer(order_list_id, servicer_id); response.sendRedirect("./ap-serviser/pending_orders.jsp"); } } // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code."> /** * Handles the HTTP <code>GET</code> method. * * @param request servlet request * @param response servlet response * @throws ServletException if a servlet-specific error occurs * @throws IOException if an I/O error occurs */ @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { try { processRequest(request, response); } catch (SQLException ex) { Logger.getLogger(AssignServicerServlet.class.getName()).log(Level.SEVERE, null, ex); } } /** * Handles the HTTP <code>POST</code> method. * * @param request servlet request * @param response servlet response * @throws ServletException if a servlet-specific error occurs * @throws IOException if an I/O error occurs */ @Override protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { try { processRequest(request, response); } catch (SQLException ex) { Logger.getLogger(AssignServicerServlet.class.getName()).log(Level.SEVERE, null, ex); } } /** * Returns a short description of the servlet. * * @return a String containing servlet description */ @Override public String getServletInfo() { return "Short description"; }// </editor-fold> }
[ "pgalani193@rku.ac.in" ]
pgalani193@rku.ac.in
9248267bd358e781fac8cc073f99d3566d5d7426
ac2e9bc55e328865e3247bdf0233efe80c5396de
/BankingApp/src/main/java/com/revature/bankapp/repo/CustDaoImpl.java
5a7081db5d37718d33ed4f8c27bd75908ab9ac34
[]
no_license
2004javausf/Project_0_Elliott_Zach
d263d0001037e72bccf4f72e57f1f0a4fc0639b8
4f99cfc104bbce9a9a02f098377319c70017d1ec
refs/heads/master
2022-04-26T01:29:07.494289
2020-05-01T20:39:02
2020-05-01T20:39:02
258,226,988
0
0
null
2020-05-01T20:39:04
2020-04-23T14:10:32
Java
UTF-8
Java
false
false
719
java
package com.revature.bankapp.repo; import java.util.Map; import java.util.TreeMap; import com.revature.bankapp.Customer; public class CustDaoImpl implements CustDao { @Override public TreeMap<String, Customer> viewCust() { TreeMap<String, Customer> custMap = (TreeMap<String, Customer>) CustAccess.readObject(filename); return custMap; } @Override public void updateCust(TreeMap<String, Customer> custMap) { CustAccess.writeObject(filename, custMap); } @Override public Customer getUsername(String name) { TreeMap<String, Customer> custMap = viewCust(); for(String i:custMap.keySet()) { if(custMap.get(i).getuName().equals(name)) { return custMap.get(i); } } return null; } }
[ "elliottdrakebw@gmail.com" ]
elliottdrakebw@gmail.com
974634e29c0c44dc79cf13d6d640700921e598ea
90e469d9c166ca3b39b972689410d429defc852d
/app/build/generated/source/r/debug/com/example/b/b_app/R.java
29945877d5e354183bb10b6a35df19520ad1f775
[]
no_license
Narakap/info4041_schrimpf_kpakpabia
d9464deac1375aa1ca969b226c8b9488a109f57c
fbd3dbc4d0ad1994a0f890b204eea34d84077468
refs/heads/master
2021-01-12T07:02:38.250265
2016-12-19T22:04:00
2016-12-19T22:04:00
null
0
0
null
null
null
null
UTF-8
Java
false
false
418,852
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.example.b.b_app; public final class R { public static final class anim { public static final int abc_fade_in=0x7f050000; public static final int abc_fade_out=0x7f050001; public static final int abc_grow_fade_in_from_bottom=0x7f050002; public static final int abc_popup_enter=0x7f050003; public static final int abc_popup_exit=0x7f050004; public static final int abc_shrink_fade_out_from_bottom=0x7f050005; public static final int abc_slide_in_bottom=0x7f050006; public static final int abc_slide_in_top=0x7f050007; public static final int abc_slide_out_bottom=0x7f050008; public static final int abc_slide_out_top=0x7f050009; } public static final class attr { /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarDivider=0x7f010040; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarItemBackground=0x7f010041; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f01003a; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> */ public static final int actionBarSize=0x7f01003f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarSplitStyle=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 final int actionBarStyle=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 final int actionBarTabBarStyle=0x7f010036; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f010035; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f010037; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTheme=0x7f01003d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarWidgetTheme=0x7f01003e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionButtonStyle=0x7f01005b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionDropDownStyle=0x7f010057; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionLayout=0x7f0100ac; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionMenuTextAppearance=0x7f010042; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int actionMenuTextColor=0x7f010043; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeBackground=0x7f010046; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseButtonStyle=0x7f010045; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseDrawable=0x7f010048; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCopyDrawable=0x7f01004a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCutDrawable=0x7f010049; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeFindDrawable=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 final int actionModePasteDrawable=0x7f01004b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePopupWindowStyle=0x7f010050; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSelectAllDrawable=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 final int actionModeShareDrawable=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 final int actionModeSplitBackground=0x7f010047; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeStyle=0x7f010044; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeWebSearchDrawable=0x7f01004f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowButtonStyle=0x7f010038; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f010039; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actionProviderClass=0x7f0100ae; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actionViewClass=0x7f0100ad; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int activityChooserViewStyle=0x7f010063; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f010087; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int alertDialogCenterButtons=0x7f010088; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogStyle=0x7f010086; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogTheme=0x7f010089; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int allowStacking=0x7f01009c; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int alpha=0x7f01009d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowHeadLength=0x7f0100a4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowShaftLength=0x7f0100a5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=0x7f01008e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int background=0x7f01000c; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundSplit=0x7f01000e; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundStacked=0x7f01000d; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int backgroundTint=0x7f0100e3; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int backgroundTintMode=0x7f0100e4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int barLength=0x7f0100a6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int borderlessButtonStyle=0x7f010060; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarButtonStyle=0x7f01005d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=0x7f01008c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNeutralButtonStyle=0x7f01008d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarPositiveButtonStyle=0x7f01008b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarStyle=0x7f01005c; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> */ public static final int buttonGravity=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 final int buttonPanelSideLayout=0x7f010021; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyle=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 final int buttonStyleSmall=0x7f010090; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int buttonTint=0x7f01009e; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int buttonTintMode=0x7f01009f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkboxStyle=0x7f010091; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkedTextViewStyle=0x7f010092; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeIcon=0x7f0100bb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeItemLayout=0x7f01001e; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int collapseContentDescription=0x7f0100da; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int collapseIcon=0x7f0100d9; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int color=0x7f0100a0; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorAccent=0x7f01007e; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorBackgroundFloating=0x7f010085; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorButtonNormal=0x7f010082; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlActivated=0x7f010080; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlHighlight=0x7f010081; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlNormal=0x7f01007f; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimary=0x7f01007c; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimaryDark=0x7f01007d; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorSwitchThumbNormal=0x7f010083; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int commitIcon=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 final int contentInsetEnd=0x7f010017; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetEndWithActions=0x7f01001b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetLeft=0x7f010018; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetRight=0x7f010019; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetStart=0x7f010016; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetStartWithNavigation=0x7f01001a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int controlBackground=0x7f010084; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int customNavigationLayout=0x7f01000f; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int defaultQueryHint=0x7f0100ba; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dialogPreferredPadding=0x7f010055; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dialogTheme=0x7f010054; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> */ public static final int displayOptions=0x7f010005; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int divider=0x7f01000b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerHorizontal=0x7f010062; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dividerPadding=0x7f0100aa; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerVertical=0x7f010061; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int drawableSize=0x7f0100a2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int drawerArrowStyle=0x7f010000; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dropDownListViewStyle=0x7f010074; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dropdownListPreferredItemHeight=0x7f010058; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextBackground=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 final int editTextColor=0x7f010068; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextStyle=0x7f010093; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int elevation=0x7f01001c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int expandActivityOverflowButtonDrawable=0x7f010020; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int gapBetweenBars=0x7f0100a3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int goIcon=0x7f0100bc; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int height=0x7f010001; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hideOnContentScroll=0x7f010015; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f01005a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeLayout=0x7f010010; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int icon=0x7f010009; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconifiedByDefault=0x7f0100b8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int imageButtonStyle=0x7f01006a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f010012; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int initialActivityCount=0x7f01001f; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int isLightTheme=0x7f010002; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemPadding=0x7f010014; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout=0x7f0100b7; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layoutManager=0x7f0100b3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f01007b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listDividerAlertDialog=0x7f010056; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listItemLayout=0x7f010025; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listLayout=0x7f010022; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listMenuViewStyle=0x7f01009b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listPopupWindowStyle=0x7f010075; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeight=0x7f01006f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightLarge=0x7f010071; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightSmall=0x7f010070; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingLeft=0x7f010072; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingRight=0x7f010073; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int logo=0x7f01000a; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int logoDescription=0x7f0100dd; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxButtonHeight=0x7f0100d7; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int measureWithLargestChild=0x7f0100a8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int multiChoiceItemLayout=0x7f010023; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int navigationContentDescription=0x7f0100dc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int navigationIcon=0x7f0100db; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> */ public static final int navigationMode=0x7f010004; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int overlapAnchor=0x7f0100b1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingEnd=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 final int paddingStart=0x7f0100e0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelBackground=0x7f010078; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f01007a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int panelMenuListWidth=0x7f010079; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupMenuStyle=0x7f010066; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupTheme=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 final int popupWindowStyle=0x7f010067; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int preserveIconSpacing=0x7f0100af; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int progressBarPadding=0x7f010013; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int progressBarStyle=0x7f010011; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int queryBackground=0x7f0100c2; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int queryHint=0x7f0100b9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int radioButtonStyle=0x7f010094; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyle=0x7f010095; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyleIndicator=0x7f010096; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyleSmall=0x7f010097; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int reverseLayout=0x7f0100b5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchHintIcon=0x7f0100be; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchIcon=0x7f0100bd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchViewStyle=0x7f01006e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int seekBarStyle=0x7f010098; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackground=0x7f01005e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f01005f; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> */ public static final int showAsAction=0x7f0100ab; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> */ public static final int showDividers=0x7f0100a9; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int showText=0x7f0100ce; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f010024; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int spanCount=0x7f0100b4; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int spinBars=0x7f0100a1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=0x7f010059; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerStyle=0x7f010099; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int splitTrack=0x7f0100cd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int srcCompat=0x7f010026; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int stackFromEnd=0x7f0100b6; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_above_anchor=0x7f0100b2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subMenuArrow=0x7f0100b0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int submitBackground=0x7f0100c3; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int subtitle=0x7f010006; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextAppearance=0x7f0100d0; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int subtitleTextColor=0x7f0100df; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextStyle=0x7f010008; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int suggestionRowLayout=0x7f0100c1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int switchMinWidth=0x7f0100cb; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int switchPadding=0x7f0100cc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchStyle=0x7f01009a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchTextAppearance=0x7f0100ca; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". */ public static final int textAllCaps=0x7f01002a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=0x7f010051; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItem=0x7f010076; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItemSmall=0x7f010077; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearancePopupMenuHeader=0x7f010053; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultSubtitle=0x7f01006c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f01006b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f010052; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int textColorAlertDialogListItem=0x7f01008a; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int textColorSearchUrl=0x7f01006d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int theme=0x7f0100e2; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thickness=0x7f0100a7; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thumbTextPadding=0x7f0100c9; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thumbTint=0x7f0100c4; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int thumbTintMode=0x7f0100c5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tickMark=0x7f010027; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tickMarkTint=0x7f010028; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int tickMarkTintMode=0x7f010029; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int title=0x7f010003; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMargin=0x7f0100d1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginBottom=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 final int titleMarginEnd=0x7f0100d3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginStart=0x7f0100d2; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginTop=0x7f0100d4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMargins=0x7f0100d6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextAppearance=0x7f0100cf; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleTextColor=0x7f0100de; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextStyle=0x7f010007; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarNavigationButtonStyle=0x7f010065; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarStyle=0x7f010064; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int track=0x7f0100c6; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int trackTint=0x7f0100c7; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int trackTintMode=0x7f0100c8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int voiceIcon=0x7f0100bf; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBar=0x7f01002b; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBarOverlay=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 final int windowActionModeOverlay=0x7f01002e; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedHeightMajor=0x7f010032; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedHeightMinor=0x7f010030; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedWidthMajor=0x7f01002f; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedWidthMinor=0x7f010031; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowMinWidthMajor=0x7f010033; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowMinWidthMinor=0x7f010034; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowNoTitle=0x7f01002c; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f090000; public static final int abc_allow_stacked_button_bar=0x7f090001; public static final int abc_config_actionMenuItemAllCaps=0x7f090002; public static final int abc_config_closeDialogWhenTouchOutside=0x7f090003; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f090004; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f0a003d; public static final int abc_background_cache_hint_selector_material_light=0x7f0a003e; public static final int abc_btn_colored_borderless_text_material=0x7f0a003f; public static final int abc_color_highlight_material=0x7f0a0040; public static final int abc_input_method_navigation_guard=0x7f0a0000; public static final int abc_primary_text_disable_only_material_dark=0x7f0a0041; public static final int abc_primary_text_disable_only_material_light=0x7f0a0042; public static final int abc_primary_text_material_dark=0x7f0a0043; public static final int abc_primary_text_material_light=0x7f0a0044; public static final int abc_search_url_text=0x7f0a0045; public static final int abc_search_url_text_normal=0x7f0a0001; public static final int abc_search_url_text_pressed=0x7f0a0002; public static final int abc_search_url_text_selected=0x7f0a0003; public static final int abc_secondary_text_material_dark=0x7f0a0046; public static final int abc_secondary_text_material_light=0x7f0a0047; public static final int abc_tint_btn_checkable=0x7f0a0048; public static final int abc_tint_default=0x7f0a0049; public static final int abc_tint_edittext=0x7f0a004a; public static final int abc_tint_seek_thumb=0x7f0a004b; public static final int abc_tint_spinner=0x7f0a004c; public static final int abc_tint_switch_thumb=0x7f0a004d; public static final int abc_tint_switch_track=0x7f0a004e; public static final int accent_material_dark=0x7f0a0004; public static final int accent_material_light=0x7f0a0005; public static final int background_floating_material_dark=0x7f0a0006; public static final int background_floating_material_light=0x7f0a0007; public static final int background_material_dark=0x7f0a0008; public static final int background_material_light=0x7f0a0009; public static final int bright_foreground_disabled_material_dark=0x7f0a000a; public static final int bright_foreground_disabled_material_light=0x7f0a000b; public static final int bright_foreground_inverse_material_dark=0x7f0a000c; public static final int bright_foreground_inverse_material_light=0x7f0a000d; public static final int bright_foreground_material_dark=0x7f0a000e; public static final int bright_foreground_material_light=0x7f0a000f; public static final int button_material_dark=0x7f0a0010; public static final int button_material_light=0x7f0a0011; public static final int colorAccent=0x7f0a0012; public static final int colorPrimary=0x7f0a0013; public static final int colorPrimaryDark=0x7f0a0014; public static final int dim_foreground_disabled_material_dark=0x7f0a0015; public static final int dim_foreground_disabled_material_light=0x7f0a0016; public static final int dim_foreground_material_dark=0x7f0a0017; public static final int dim_foreground_material_light=0x7f0a0018; public static final int foreground_material_dark=0x7f0a0019; public static final int foreground_material_light=0x7f0a001a; public static final int highlighted_text_material_dark=0x7f0a001b; public static final int highlighted_text_material_light=0x7f0a001c; public static final int hint_foreground_material_dark=0x7f0a001d; public static final int hint_foreground_material_light=0x7f0a001e; public static final int material_blue_grey_800=0x7f0a001f; public static final int material_blue_grey_900=0x7f0a0020; public static final int material_blue_grey_950=0x7f0a0021; public static final int material_deep_teal_200=0x7f0a0022; public static final int material_deep_teal_500=0x7f0a0023; public static final int material_grey_100=0x7f0a0024; public static final int material_grey_300=0x7f0a0025; public static final int material_grey_50=0x7f0a0026; public static final int material_grey_600=0x7f0a0027; public static final int material_grey_800=0x7f0a0028; public static final int material_grey_850=0x7f0a0029; public static final int material_grey_900=0x7f0a002a; public static final int primary_dark_material_dark=0x7f0a002b; public static final int primary_dark_material_light=0x7f0a002c; public static final int primary_material_dark=0x7f0a002d; public static final int primary_material_light=0x7f0a002e; public static final int primary_text_default_material_dark=0x7f0a002f; public static final int primary_text_default_material_light=0x7f0a0030; public static final int primary_text_disabled_material_dark=0x7f0a0031; public static final int primary_text_disabled_material_light=0x7f0a0032; public static final int ripple_material_dark=0x7f0a0033; public static final int ripple_material_light=0x7f0a0034; public static final int secondary_text_default_material_dark=0x7f0a0035; public static final int secondary_text_default_material_light=0x7f0a0036; public static final int secondary_text_disabled_material_dark=0x7f0a0037; public static final int secondary_text_disabled_material_light=0x7f0a0038; public static final int switch_thumb_disabled_material_dark=0x7f0a0039; public static final int switch_thumb_disabled_material_light=0x7f0a003a; public static final int switch_thumb_material_dark=0x7f0a004f; public static final int switch_thumb_material_light=0x7f0a0050; public static final int switch_thumb_normal_material_dark=0x7f0a003b; public static final int switch_thumb_normal_material_light=0x7f0a003c; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f07000c; public static final int abc_action_bar_content_inset_with_nav=0x7f07000d; public static final int abc_action_bar_default_height_material=0x7f070001; public static final int abc_action_bar_default_padding_end_material=0x7f07000e; public static final int abc_action_bar_default_padding_start_material=0x7f07000f; public static final int abc_action_bar_elevation_material=0x7f070012; public static final int abc_action_bar_icon_vertical_padding_material=0x7f070013; public static final int abc_action_bar_overflow_padding_end_material=0x7f070014; public static final int abc_action_bar_overflow_padding_start_material=0x7f070015; public static final int abc_action_bar_progress_bar_size=0x7f070002; public static final int abc_action_bar_stacked_max_height=0x7f070016; public static final int abc_action_bar_stacked_tab_max_width=0x7f070017; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070018; public static final int abc_action_bar_subtitle_top_margin_material=0x7f070019; public static final int abc_action_button_min_height_material=0x7f07001a; public static final int abc_action_button_min_width_material=0x7f07001b; public static final int abc_action_button_min_width_overflow_material=0x7f07001c; public static final int abc_alert_dialog_button_bar_height=0x7f070000; public static final int abc_button_inset_horizontal_material=0x7f07001d; public static final int abc_button_inset_vertical_material=0x7f07001e; public static final int abc_button_padding_horizontal_material=0x7f07001f; public static final int abc_button_padding_vertical_material=0x7f070020; public static final int abc_cascading_menus_min_smallest_width=0x7f070021; public static final int abc_config_prefDialogWidth=0x7f070005; public static final int abc_control_corner_material=0x7f070022; public static final int abc_control_inset_material=0x7f070023; public static final int abc_control_padding_material=0x7f070024; public static final int abc_dialog_fixed_height_major=0x7f070006; public static final int abc_dialog_fixed_height_minor=0x7f070007; public static final int abc_dialog_fixed_width_major=0x7f070008; public static final int abc_dialog_fixed_width_minor=0x7f070009; public static final int abc_dialog_list_padding_vertical_material=0x7f070025; public static final int abc_dialog_min_width_major=0x7f07000a; public static final int abc_dialog_min_width_minor=0x7f07000b; public static final int abc_dialog_padding_material=0x7f070026; public static final int abc_dialog_padding_top_material=0x7f070027; public static final int abc_disabled_alpha_material_dark=0x7f070028; public static final int abc_disabled_alpha_material_light=0x7f070029; public static final int abc_dropdownitem_icon_width=0x7f07002a; public static final int abc_dropdownitem_text_padding_left=0x7f07002b; public static final int abc_dropdownitem_text_padding_right=0x7f07002c; public static final int abc_edit_text_inset_bottom_material=0x7f07002d; public static final int abc_edit_text_inset_horizontal_material=0x7f07002e; public static final int abc_edit_text_inset_top_material=0x7f07002f; public static final int abc_floating_window_z=0x7f070030; public static final int abc_list_item_padding_horizontal_material=0x7f070031; public static final int abc_panel_menu_list_width=0x7f070032; public static final int abc_progress_bar_height_material=0x7f070033; public static final int abc_search_view_preferred_height=0x7f070034; public static final int abc_search_view_preferred_width=0x7f070035; public static final int abc_seekbar_track_background_height_material=0x7f070036; public static final int abc_seekbar_track_progress_height_material=0x7f070037; public static final int abc_select_dialog_padding_start_material=0x7f070038; public static final int abc_switch_padding=0x7f070010; public static final int abc_text_size_body_1_material=0x7f070039; public static final int abc_text_size_body_2_material=0x7f07003a; public static final int abc_text_size_button_material=0x7f07003b; public static final int abc_text_size_caption_material=0x7f07003c; public static final int abc_text_size_display_1_material=0x7f07003d; public static final int abc_text_size_display_2_material=0x7f07003e; public static final int abc_text_size_display_3_material=0x7f07003f; public static final int abc_text_size_display_4_material=0x7f070040; public static final int abc_text_size_headline_material=0x7f070041; public static final int abc_text_size_large_material=0x7f070042; public static final int abc_text_size_medium_material=0x7f070043; public static final int abc_text_size_menu_header_material=0x7f070044; public static final int abc_text_size_menu_material=0x7f070045; public static final int abc_text_size_small_material=0x7f070046; public static final int abc_text_size_subhead_material=0x7f070047; public static final int abc_text_size_subtitle_material_toolbar=0x7f070003; public static final int abc_text_size_title_material=0x7f070048; public static final int abc_text_size_title_material_toolbar=0x7f070004; public static final int activity_horizontal_margin=0x7f070011; public static final int activity_vertical_margin=0x7f070049; public static final int disabled_alpha_material_dark=0x7f07004a; public static final int disabled_alpha_material_light=0x7f07004b; public static final int highlight_alpha_material_colored=0x7f07004c; public static final int highlight_alpha_material_dark=0x7f07004d; public static final int highlight_alpha_material_light=0x7f07004e; public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f07004f; public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070050; public static final int item_touch_helper_swipe_escape_velocity=0x7f070051; public static final int notification_large_icon_height=0x7f070052; public static final int notification_large_icon_width=0x7f070053; public static final int notification_subtext_size=0x7f070054; } 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 no=0x7f020053; public static final int notif1=0x7f020054; public static final int notification_template_icon_bg=0x7f020055; } public static final class id { public static final int action0=0x7f0b005e; public static final int action_bar=0x7f0b0046; public static final int action_bar_activity_content=0x7f0b0000; public static final int action_bar_container=0x7f0b0045; public static final int action_bar_root=0x7f0b0041; public static final int action_bar_spinner=0x7f0b0001; public static final int action_bar_subtitle=0x7f0b0026; public static final int action_bar_title=0x7f0b0025; public static final int action_context_bar=0x7f0b0047; public static final int action_divider=0x7f0b0062; public static final int action_menu_divider=0x7f0b0002; public static final int action_menu_presenter=0x7f0b0003; public static final int action_mode_bar=0x7f0b0043; public static final int action_mode_bar_stub=0x7f0b0042; public static final int action_mode_close_button=0x7f0b0027; public static final int activity_chooser_view_content=0x7f0b0028; public static final int activity_main=0x7f0b0055; public static final int activity_seconde=0x7f0b005b; public static final int add=0x7f0b0014; public static final int alertTitle=0x7f0b0034; public static final int always=0x7f0b001e; public static final int beginning=0x7f0b001b; public static final int bottom=0x7f0b0023; public static final int btn_hello_world=0x7f0b0057; public static final int btn_notif=0x7f0b0058; public static final int btn_sa=0x7f0b0059; public static final int btn_start=0x7f0b005a; public static final int buttonPanel=0x7f0b002f; public static final int cancel_action=0x7f0b005f; public static final int checkbox=0x7f0b003d; public static final int chronometer=0x7f0b0065; public static final int collapseActionView=0x7f0b001f; public static final int contentPanel=0x7f0b0035; public static final int custom=0x7f0b003b; public static final int customPanel=0x7f0b003a; public static final int decor_content_parent=0x7f0b0044; public static final int default_activity_button=0x7f0b002b; public static final int disableHome=0x7f0b000d; public static final int edit_query=0x7f0b0048; public static final int end=0x7f0b001c; public static final int end_padder=0x7f0b006a; public static final int expand_activities_button=0x7f0b0029; public static final int expanded_menu=0x7f0b003c; public static final int home=0x7f0b0004; public static final int homeAsUp=0x7f0b000e; public static final int icon=0x7f0b002d; public static final int ifRoom=0x7f0b0020; public static final int image=0x7f0b002a; public static final int info=0x7f0b0069; public static final int item_touch_helper_previous_elevation=0x7f0b0005; public static final int line1=0x7f0b0063; public static final int line3=0x7f0b0067; public static final int listMode=0x7f0b000a; public static final int list_item=0x7f0b002c; public static final int media_actions=0x7f0b0061; public static final int middle=0x7f0b001d; public static final int multiply=0x7f0b0015; public static final int never=0x7f0b0021; public static final int none=0x7f0b000f; public static final int normal=0x7f0b000b; public static final int parentPanel=0x7f0b0031; public static final int progress_circular=0x7f0b0006; public static final int progress_horizontal=0x7f0b0007; public static final int radio=0x7f0b003f; public static final int rv_match=0x7f0b005c; public static final int rv_match_element=0x7f0b005d; public static final int screen=0x7f0b0016; public static final int scrollIndicatorDown=0x7f0b0039; public static final int scrollIndicatorUp=0x7f0b0036; public static final int scrollView=0x7f0b0037; public static final int search_badge=0x7f0b004a; public static final int search_bar=0x7f0b0049; public static final int search_button=0x7f0b004b; public static final int search_close_btn=0x7f0b0050; public static final int search_edit_frame=0x7f0b004c; public static final int search_go_btn=0x7f0b0052; public static final int search_mag_icon=0x7f0b004d; public static final int search_plate=0x7f0b004e; public static final int search_src_text=0x7f0b004f; public static final int search_voice_btn=0x7f0b0053; public static final int select_dialog_listview=0x7f0b0054; public static final int shortcut=0x7f0b003e; public static final int showCustom=0x7f0b0010; public static final int showHome=0x7f0b0011; public static final int showTitle=0x7f0b0012; public static final int spacer=0x7f0b0030; public static final int split_action_bar=0x7f0b0008; public static final int src_atop=0x7f0b0017; public static final int src_in=0x7f0b0018; public static final int src_over=0x7f0b0019; public static final int status_bar_latest_event_content=0x7f0b0060; public static final int submenuarrow=0x7f0b0040; public static final int submit_area=0x7f0b0051; public static final int tabMode=0x7f0b000c; public static final int text=0x7f0b0068; public static final int text2=0x7f0b0066; public static final int textSpacerNoButtons=0x7f0b0038; public static final int time=0x7f0b0064; public static final int title=0x7f0b002e; public static final int title_template=0x7f0b0033; public static final int toast=0x7f0b006b; public static final int top=0x7f0b0024; public static final int topPanel=0x7f0b0032; public static final int tv_hello_world=0x7f0b0056; public static final int up=0x7f0b0009; public static final int useLogo=0x7f0b0013; public static final int withText=0x7f0b0022; public static final int wrap_content=0x7f0b001a; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f0c0000; public static final int abc_config_activityShortDur=0x7f0c0001; public static final int cancel_button_image_alpha=0x7f0c0002; public static final int status_bar_notification_info_maxnum=0x7f0c0003; } public static final class layout { public static final int abc_action_bar_title_item=0x7f040000; public static final int abc_action_bar_up_container=0x7f040001; public static final int abc_action_bar_view_list_nav_layout=0x7f040002; public static final int abc_action_menu_item_layout=0x7f040003; public static final int abc_action_menu_layout=0x7f040004; public static final int abc_action_mode_bar=0x7f040005; public static final int abc_action_mode_close_item_material=0x7f040006; public static final int abc_activity_chooser_view=0x7f040007; public static final int abc_activity_chooser_view_list_item=0x7f040008; public static final int abc_alert_dialog_button_bar_material=0x7f040009; public static final int abc_alert_dialog_material=0x7f04000a; public static final int abc_dialog_title_material=0x7f04000b; public static final int abc_expanded_menu_layout=0x7f04000c; public static final int abc_list_menu_item_checkbox=0x7f04000d; public static final int abc_list_menu_item_icon=0x7f04000e; public static final int abc_list_menu_item_layout=0x7f04000f; public static final int abc_list_menu_item_radio=0x7f040010; public static final int abc_popup_menu_header_item_layout=0x7f040011; public static final int abc_popup_menu_item_layout=0x7f040012; public static final int abc_screen_content_include=0x7f040013; public static final int abc_screen_simple=0x7f040014; public static final int abc_screen_simple_overlay_action_mode=0x7f040015; public static final int abc_screen_toolbar=0x7f040016; public static final int abc_search_dropdown_item_icons_2line=0x7f040017; public static final int abc_search_view=0x7f040018; public static final int abc_select_dialog_material=0x7f040019; public static final int activity_main=0x7f04001a; public static final int activity_seconde=0x7f04001b; public static final int notification_media_action=0x7f04001c; public static final int notification_media_cancel_action=0x7f04001d; public static final int notification_template_big_media=0x7f04001e; public static final int notification_template_big_media_narrow=0x7f04001f; public static final int notification_template_lines=0x7f040020; public static final int notification_template_media=0x7f040021; public static final int notification_template_part_chronometer=0x7f040022; public static final int notification_template_part_time=0x7f040023; public static final int select_dialog_item_material=0x7f040024; public static final int select_dialog_multichoice_material=0x7f040025; public static final int select_dialog_singlechoice_material=0x7f040026; public static final int support_simple_spinner_dropdown_item=0x7f040027; } public static final class menu { public static final int menu_main=0x7f0d0000; } public static final class mipmap { public static final int ic_launcher=0x7f030000; } public static final class string { public static final int abc_action_bar_home_description=0x7f060000; public static final int abc_action_bar_home_description_format=0x7f060001; public static final int abc_action_bar_home_subtitle_description_format=0x7f060002; public static final int abc_action_bar_up_description=0x7f060003; public static final int abc_action_menu_overflow_description=0x7f060004; public static final int abc_action_mode_done=0x7f060005; public static final int abc_activity_chooser_view_see_all=0x7f060006; public static final int abc_activitychooserview_choose_application=0x7f060007; public static final int abc_capital_off=0x7f060008; public static final int abc_capital_on=0x7f060009; public static final int abc_font_family_body_1_material=0x7f060018; public static final int abc_font_family_body_2_material=0x7f060019; public static final int abc_font_family_button_material=0x7f06001a; public static final int abc_font_family_caption_material=0x7f06001b; public static final int abc_font_family_display_1_material=0x7f06001c; public static final int abc_font_family_display_2_material=0x7f06001d; public static final int abc_font_family_display_3_material=0x7f06001e; public static final int abc_font_family_display_4_material=0x7f06001f; public static final int abc_font_family_headline_material=0x7f060020; public static final int abc_font_family_menu_material=0x7f060021; public static final int abc_font_family_subhead_material=0x7f060022; public static final int abc_font_family_title_material=0x7f060023; public static final int abc_search_hint=0x7f06000a; public static final int abc_searchview_description_clear=0x7f06000b; public static final int abc_searchview_description_query=0x7f06000c; public static final int abc_searchview_description_search=0x7f06000d; public static final int abc_searchview_description_submit=0x7f06000e; public static final int abc_searchview_description_voice=0x7f06000f; public static final int abc_shareactionprovider_share_with=0x7f060010; public static final int abc_shareactionprovider_share_with_application=0x7f060011; public static final int abc_toolbar_collapse_description=0x7f060012; public static final int app_name=0x7f060015; public static final int button_text=0x7f060016; public static final int search_menu_title=0x7f060013; public static final int status_bar_notification_info_overflow=0x7f060014; public static final int text_view=0x7f060017; } public static final class style { public static final int AlertDialog_AppCompat=0x7f08008a; public static final int AlertDialog_AppCompat_Light=0x7f08008b; public static final int Animation_AppCompat_Dialog=0x7f08008c; public static final int Animation_AppCompat_DropDownUp=0x7f08008d; public static final int AppTheme=0x7f08008e; public static final int Base_AlertDialog_AppCompat=0x7f08008f; public static final int Base_AlertDialog_AppCompat_Light=0x7f080090; public static final int Base_Animation_AppCompat_Dialog=0x7f080091; public static final int Base_Animation_AppCompat_DropDownUp=0x7f080092; public static final int Base_DialogWindowTitle_AppCompat=0x7f080093; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f080094; public static final int Base_TextAppearance_AppCompat=0x7f080038; public static final int Base_TextAppearance_AppCompat_Body1=0x7f080039; public static final int Base_TextAppearance_AppCompat_Body2=0x7f08003a; public static final int Base_TextAppearance_AppCompat_Button=0x7f080022; public static final int Base_TextAppearance_AppCompat_Caption=0x7f08003b; public static final int Base_TextAppearance_AppCompat_Display1=0x7f08003c; public static final int Base_TextAppearance_AppCompat_Display2=0x7f08003d; public static final int Base_TextAppearance_AppCompat_Display3=0x7f08003e; public static final int Base_TextAppearance_AppCompat_Display4=0x7f08003f; public static final int Base_TextAppearance_AppCompat_Headline=0x7f080040; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f08000b; public static final int Base_TextAppearance_AppCompat_Large=0x7f080041; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08000c; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080042; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080043; public static final int Base_TextAppearance_AppCompat_Medium=0x7f080044; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08000d; public static final int Base_TextAppearance_AppCompat_Menu=0x7f080045; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f080095; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080046; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080047; public static final int Base_TextAppearance_AppCompat_Small=0x7f080048; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08000e; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080049; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08000f; public static final int Base_TextAppearance_AppCompat_Title=0x7f08004a; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f080010; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f080083; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08004b; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08004c; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08004d; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08004e; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08004f; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080050; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080051; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080084; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f080096; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080052; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080053; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080054; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080055; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080056; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080097; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080057; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080058; public static final int Base_Theme_AppCompat=0x7f080059; public static final int Base_Theme_AppCompat_CompactMenu=0x7f080098; public static final int Base_Theme_AppCompat_Dialog=0x7f080011; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080099; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f08009a; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f08009b; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f080001; public static final int Base_Theme_AppCompat_Light=0x7f08005a; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f08009c; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080012; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f08009d; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f08009e; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f08009f; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080002; public static final int Base_ThemeOverlay_AppCompat=0x7f0800a0; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800a1; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800a2; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800a3; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080013; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0800a4; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800a5; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080014; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080015; public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f080016; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f08001e; public static final int Base_V12_Widget_AppCompat_EditText=0x7f08001f; public static final int Base_V21_Theme_AppCompat=0x7f08005b; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08005c; public static final int Base_V21_Theme_AppCompat_Light=0x7f08005d; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08005e; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08005f; public static final int Base_V22_Theme_AppCompat=0x7f080081; public static final int Base_V22_Theme_AppCompat_Light=0x7f080082; public static final int Base_V23_Theme_AppCompat=0x7f080085; public static final int Base_V23_Theme_AppCompat_Light=0x7f080086; public static final int Base_V7_Theme_AppCompat=0x7f0800a6; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800a7; public static final int Base_V7_Theme_AppCompat_Light=0x7f0800a8; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800a9; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800aa; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800ab; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800ac; public static final int Base_Widget_AppCompat_ActionBar=0x7f0800ad; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800ae; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800af; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f080060; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080061; public static final int Base_Widget_AppCompat_ActionButton=0x7f080062; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080063; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080064; public static final int Base_Widget_AppCompat_ActionMode=0x7f0800b0; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800b1; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080020; public static final int Base_Widget_AppCompat_Button=0x7f080065; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080066; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080067; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800b2; public static final int Base_Widget_AppCompat_Button_Colored=0x7f080087; public static final int Base_Widget_AppCompat_Button_Small=0x7f080068; public static final int Base_Widget_AppCompat_ButtonBar=0x7f080069; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800b3; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f08006a; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08006b; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800b4; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080000; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800b5; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08006c; public static final int Base_Widget_AppCompat_EditText=0x7f080021; public static final int Base_Widget_AppCompat_ImageButton=0x7f08006d; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800b6; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800b7; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800b8; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08006e; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08006f; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f080070; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080071; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080072; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800b9; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080073; public static final int Base_Widget_AppCompat_ListView=0x7f080074; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080075; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080076; public static final int Base_Widget_AppCompat_PopupMenu=0x7f080077; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080078; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800ba; public static final int Base_Widget_AppCompat_ProgressBar=0x7f080017; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f080018; public static final int Base_Widget_AppCompat_RatingBar=0x7f080079; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f080088; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f080089; public static final int Base_Widget_AppCompat_SearchView=0x7f0800bb; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800bc; public static final int Base_Widget_AppCompat_SeekBar=0x7f08007a; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800bd; public static final int Base_Widget_AppCompat_Spinner=0x7f08007b; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080003; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08007c; public static final int Base_Widget_AppCompat_Toolbar=0x7f0800be; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08007d; public static final int Platform_AppCompat=0x7f080019; public static final int Platform_AppCompat_Light=0x7f08001a; public static final int Platform_ThemeOverlay_AppCompat=0x7f08007e; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08007f; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f080080; public static final int Platform_V11_AppCompat=0x7f08001b; public static final int Platform_V11_AppCompat_Light=0x7f08001c; public static final int Platform_V14_AppCompat=0x7f080023; public static final int Platform_V14_AppCompat_Light=0x7f080024; public static final int Platform_Widget_AppCompat_Spinner=0x7f08001d; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f08002a; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08002b; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08002c; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08002d; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08002e; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08002f; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f080030; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080031; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080032; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080033; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080034; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080035; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080036; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080037; public static final int TextAppearance_AppCompat=0x7f0800bf; public static final int TextAppearance_AppCompat_Body1=0x7f0800c0; public static final int TextAppearance_AppCompat_Body2=0x7f0800c1; public static final int TextAppearance_AppCompat_Button=0x7f0800c2; public static final int TextAppearance_AppCompat_Caption=0x7f0800c3; public static final int TextAppearance_AppCompat_Display1=0x7f0800c4; public static final int TextAppearance_AppCompat_Display2=0x7f0800c5; public static final int TextAppearance_AppCompat_Display3=0x7f0800c6; public static final int TextAppearance_AppCompat_Display4=0x7f0800c7; public static final int TextAppearance_AppCompat_Headline=0x7f0800c8; public static final int TextAppearance_AppCompat_Inverse=0x7f0800c9; public static final int TextAppearance_AppCompat_Large=0x7f0800ca; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800cb; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800cc; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800cd; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800ce; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800cf; public static final int TextAppearance_AppCompat_Medium=0x7f0800d0; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800d1; public static final int TextAppearance_AppCompat_Menu=0x7f0800d2; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0800d3; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0800d4; public static final int TextAppearance_AppCompat_Small=0x7f0800d5; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0800d6; public static final int TextAppearance_AppCompat_Subhead=0x7f0800d7; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0800d8; public static final int TextAppearance_AppCompat_Title=0x7f0800d9; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0800da; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800db; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0800dc; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0800dd; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0800de; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0800df; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0800e0; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0800e1; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0800e2; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0800e3; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0800e4; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800e5; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800e6; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0800e7; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0800e8; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0800e9; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0800ea; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0800eb; public static final int TextAppearance_StatusBar_EventContent=0x7f080025; public static final int TextAppearance_StatusBar_EventContent_Info=0x7f080026; public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f080027; public static final int TextAppearance_StatusBar_EventContent_Time=0x7f080028; public static final int TextAppearance_StatusBar_EventContent_Title=0x7f080029; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ec; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0800ed; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0800ee; public static final int Theme_AppCompat=0x7f0800ef; public static final int Theme_AppCompat_CompactMenu=0x7f0800f0; public static final int Theme_AppCompat_DayNight=0x7f080004; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080005; public static final int Theme_AppCompat_DayNight_Dialog=0x7f080006; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080007; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080008; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080009; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f08000a; public static final int Theme_AppCompat_Dialog=0x7f0800f1; public static final int Theme_AppCompat_Dialog_Alert=0x7f0800f2; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0800f3; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0800f4; public static final int Theme_AppCompat_Light=0x7f0800f5; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0800f6; public static final int Theme_AppCompat_Light_Dialog=0x7f0800f7; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0800f8; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0800f9; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0800fa; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0800fb; public static final int Theme_AppCompat_NoActionBar=0x7f0800fc; public static final int ThemeOverlay_AppCompat=0x7f0800fd; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0800fe; public static final int ThemeOverlay_AppCompat_Dark=0x7f0800ff; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080100; public static final int ThemeOverlay_AppCompat_Dialog=0x7f080101; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080102; public static final int ThemeOverlay_AppCompat_Light=0x7f080103; public static final int Widget_AppCompat_ActionBar=0x7f080104; public static final int Widget_AppCompat_ActionBar_Solid=0x7f080105; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f080106; public static final int Widget_AppCompat_ActionBar_TabText=0x7f080107; public static final int Widget_AppCompat_ActionBar_TabView=0x7f080108; public static final int Widget_AppCompat_ActionButton=0x7f080109; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08010a; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08010b; public static final int Widget_AppCompat_ActionMode=0x7f08010c; public static final int Widget_AppCompat_ActivityChooserView=0x7f08010d; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f08010e; public static final int Widget_AppCompat_Button=0x7f08010f; public static final int Widget_AppCompat_Button_Borderless=0x7f080110; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080111; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080112; public static final int Widget_AppCompat_Button_Colored=0x7f080113; public static final int Widget_AppCompat_Button_Small=0x7f080114; public static final int Widget_AppCompat_ButtonBar=0x7f080115; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080116; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080117; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f080118; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f080119; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08011a; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08011b; public static final int Widget_AppCompat_EditText=0x7f08011c; public static final int Widget_AppCompat_ImageButton=0x7f08011d; public static final int Widget_AppCompat_Light_ActionBar=0x7f08011e; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f08011f; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080120; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080121; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080122; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080123; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080124; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080125; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080126; public static final int Widget_AppCompat_Light_ActionButton=0x7f080127; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f080128; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f080129; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08012a; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08012b; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08012c; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08012d; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f08012e; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f08012f; public static final int Widget_AppCompat_Light_PopupMenu=0x7f080130; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080131; public static final int Widget_AppCompat_Light_SearchView=0x7f080132; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080133; public static final int Widget_AppCompat_ListMenuView=0x7f080134; public static final int Widget_AppCompat_ListPopupWindow=0x7f080135; public static final int Widget_AppCompat_ListView=0x7f080136; public static final int Widget_AppCompat_ListView_DropDown=0x7f080137; public static final int Widget_AppCompat_ListView_Menu=0x7f080138; public static final int Widget_AppCompat_PopupMenu=0x7f080139; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08013a; public static final int Widget_AppCompat_PopupWindow=0x7f08013b; public static final int Widget_AppCompat_ProgressBar=0x7f08013c; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f08013d; public static final int Widget_AppCompat_RatingBar=0x7f08013e; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f08013f; public static final int Widget_AppCompat_RatingBar_Small=0x7f080140; public static final int Widget_AppCompat_SearchView=0x7f080141; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080142; public static final int Widget_AppCompat_SeekBar=0x7f080143; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080144; public static final int Widget_AppCompat_Spinner=0x7f080145; public static final int Widget_AppCompat_Spinner_DropDown=0x7f080146; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080147; public static final int Widget_AppCompat_Spinner_Underlined=0x7f080148; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f080149; public static final int Widget_AppCompat_Toolbar=0x7f08014a; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08014b; } public static final class styleable { /** Attributes that can be used with a ActionBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBar_background com.example.b.b_app:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit com.example.b.b_app:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked com.example.b.b_app:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd com.example.b.b_app:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.example.b.b_app:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft com.example.b.b_app:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight com.example.b.b_app:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart com.example.b.b_app:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.example.b.b_app:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout com.example.b.b_app:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions com.example.b.b_app:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider com.example.b.b_app:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation com.example.b.b_app:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height com.example.b.b_app:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll com.example.b.b_app:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.example.b.b_app:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout com.example.b.b_app:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon com.example.b.b_app:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.example.b.b_app:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding com.example.b.b_app:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo com.example.b.b_app:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode com.example.b.b_app:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme com.example.b.b_app:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding com.example.b.b_app:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle com.example.b.b_app:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle com.example.b.b_app:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle com.example.b.b_app:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title com.example.b.b_app:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle com.example.b.b_app: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 = { 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, 0x7f01005a }; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#background} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:background */ public static final int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.b.b_app:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#backgroundStacked} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.b.b_app:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#contentInsetEnd} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions = 25; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#contentInsetLeft} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#contentInsetRight} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#contentInsetStart} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation = 24; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#customNavigationLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#displayOptions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> @attr name com.example.b.b_app:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#divider} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:divider */ public static final int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#elevation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:elevation */ public static final int ActionBar_elevation = 26; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#height} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:height */ public static final int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#hideOnContentScroll} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 28; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#homeLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#icon} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:icon */ public static final int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#indeterminateProgressStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#itemPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#logo} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:logo */ public static final int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#navigationMode} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> @attr name com.example.b.b_app:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#popupTheme} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:popupTheme */ public static final int ActionBar_popupTheme = 27; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#progressBarPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#progressBarStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#subtitle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:subtitle */ public static final int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#title} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:title */ public static final int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:titleTextStyle */ public static final int ActionBar_titleTextStyle = 5; /** Attributes that can be used with a ActionBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> </table> @see #ActionBarLayout_android_layout_gravity */ public static final int[] ActionBarLayout = { 0x010100b3 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #ActionBarLayout} array. @attr name android:layout_gravity */ public static final int ActionBarLayout_android_layout_gravity = 0; /** Attributes that can be used with a ActionMenuItemView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr> </table> @see #ActionMenuItemView_android_minWidth */ public static final int[] ActionMenuItemView = { 0x0101013f }; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #ActionMenuItemView} array. @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth = 0; /** Attributes that can be used with a ActionMenuView. */ public static final int[] ActionMenuView = { }; /** Attributes that can be used with a ActionMode. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMode_background com.example.b.b_app:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit com.example.b.b_app:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout com.example.b.b_app:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height com.example.b.b_app:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle com.example.b.b_app:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle com.example.b.b_app: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 = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001e }; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#background} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:background */ public static final int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionMode} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.b.b_app:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#closeItemLayout} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#height} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:height */ public static final int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:titleTextStyle */ public static final int ActionMode_titleTextStyle = 1; /** Attributes that can be used with a ActivityChooserView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.example.b.b_app:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.example.b.b_app:initialActivityCount}</code></td><td></td></tr> </table> @see #ActivityChooserView_expandActivityOverflowButtonDrawable @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { 0x7f01001f, 0x7f010020 }; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#expandActivityOverflowButtonDrawable} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#initialActivityCount} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount = 0; /** Attributes that can be used with a AlertDialog. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.example.b.b_app:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout com.example.b.b_app:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout com.example.b.b_app:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.example.b.b_app:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.example.b.b_app:singleChoiceItemLayout}</code></td><td></td></tr> </table> @see #AlertDialog_android_layout @see #AlertDialog_buttonPanelSideLayout @see #AlertDialog_listItemLayout @see #AlertDialog_listLayout @see #AlertDialog_multiChoiceItemLayout @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog = { 0x010100f2, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #AlertDialog} array. @attr name android:layout */ public static final int AlertDialog_android_layout = 0; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#buttonPanelSideLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#listItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:listItemLayout */ public static final int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#listLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:listLayout */ public static final int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#multiChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#singleChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout = 4; /** Attributes that can be used with a AppCompatImageView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_srcCompat com.example.b.b_app:srcCompat}</code></td><td></td></tr> </table> @see #AppCompatImageView_android_src @see #AppCompatImageView_srcCompat */ public static final int[] AppCompatImageView = { 0x01010119, 0x7f010026 }; /** <p>This symbol is the offset where the {@link android.R.attr#src} attribute's value can be found in the {@link #AppCompatImageView} array. @attr name android:src */ public static final int AppCompatImageView_android_src = 0; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#srcCompat} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:srcCompat */ public static final int AppCompatImageView_srcCompat = 1; /** Attributes that can be used with a AppCompatSeekBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMark com.example.b.b_app:tickMark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.example.b.b_app:tickMarkTint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.example.b.b_app: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, 0x7f010027, 0x7f010028, 0x7f010029 }; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #AppCompatSeekBar} array. @attr name android:thumb */ public static final int AppCompatSeekBar_android_thumb = 0; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#tickMark} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:tickMark */ public static final int AppCompatSeekBar_tickMark = 1; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#tickMarkTint} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint = 2; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#tickMarkTintMode} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.example.b.b_app:tickMarkTintMode */ public static final int AppCompatSeekBar_tickMarkTintMode = 3; /** Attributes that can be used with a AppCompatTextHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr> </table> @see #AppCompatTextHelper_android_drawableBottom @see #AppCompatTextHelper_android_drawableEnd @see #AppCompatTextHelper_android_drawableLeft @see #AppCompatTextHelper_android_drawableRight @see #AppCompatTextHelper_android_drawableStart @see #AppCompatTextHelper_android_drawableTop @see #AppCompatTextHelper_android_textAppearance */ public static final int[] AppCompatTextHelper = { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; /** <p>This symbol is the offset where the {@link android.R.attr#drawableBottom} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableBottom */ public static final int AppCompatTextHelper_android_drawableBottom = 2; /** <p>This symbol is the offset where the {@link android.R.attr#drawableEnd} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableEnd */ public static final int AppCompatTextHelper_android_drawableEnd = 6; /** <p>This symbol is the offset where the {@link android.R.attr#drawableLeft} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableLeft */ public static final int AppCompatTextHelper_android_drawableLeft = 3; /** <p>This symbol is the offset where the {@link android.R.attr#drawableRight} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableRight */ public static final int AppCompatTextHelper_android_drawableRight = 4; /** <p>This symbol is the offset where the {@link android.R.attr#drawableStart} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableStart */ public static final int AppCompatTextHelper_android_drawableStart = 5; /** <p>This symbol is the offset where the {@link android.R.attr#drawableTop} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableTop */ public static final int AppCompatTextHelper_android_drawableTop = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:textAppearance */ public static final int AppCompatTextHelper_android_textAppearance = 0; /** Attributes that can be used with a AppCompatTextView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_textAllCaps com.example.b.b_app:textAllCaps}</code></td><td></td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f01002a }; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextView} array. @attr name android:textAppearance */ public static final int AppCompatTextView_android_textAppearance = 0; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#textAllCaps} attribute's value can be found in the {@link #AppCompatTextView} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name com.example.b.b_app:textAllCaps */ public static final int AppCompatTextView_textAllCaps = 1; /** Attributes that can be used with a AppCompatTheme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTheme_actionBarDivider com.example.b.b_app:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.example.b.b_app:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.example.b.b_app:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSize com.example.b.b_app:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.example.b.b_app:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.example.b.b_app:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.example.b.b_app:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.example.b.b_app:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.example.b.b_app:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.example.b.b_app:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.example.b.b_app:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.example.b.b_app:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.example.b.b_app:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.example.b.b_app:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.example.b.b_app:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.example.b.b_app:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.example.b.b_app:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.example.b.b_app:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.example.b.b_app:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.example.b.b_app:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.example.b.b_app:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.example.b.b_app:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.example.b.b_app:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.example.b.b_app:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.example.b.b_app:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.example.b.b_app:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.example.b.b_app:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.example.b.b_app:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.example.b.b_app:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.example.b.b_app:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.example.b.b_app:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.example.b.b_app:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.example.b.b_app:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.example.b.b_app:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.example.b.b_app:alertDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.example.b.b_app:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.example.b.b_app:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.example.b.b_app:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.example.b.b_app:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.example.b.b_app:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.example.b.b_app:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.example.b.b_app:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyle com.example.b.b_app:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.example.b.b_app:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.example.b.b_app:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.example.b.b_app:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorAccent com.example.b.b_app:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.example.b.b_app:colorBackgroundFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.example.b.b_app:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.example.b.b_app:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.example.b.b_app:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.example.b.b_app:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimary com.example.b.b_app:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.example.b.b_app:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.example.b.b_app:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_controlBackground com.example.b.b_app:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.example.b.b_app:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogTheme com.example.b.b_app:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.example.b.b_app:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerVertical com.example.b.b_app:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.example.b.b_app:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.example.b.b_app:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextBackground com.example.b.b_app:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextColor com.example.b.b_app:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextStyle com.example.b.b_app:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.example.b.b_app:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.example.b.b_app:imageButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.example.b.b_app:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.example.b.b_app:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.example.b.b_app:listMenuViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.example.b.b_app:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.example.b.b_app:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.example.b.b_app:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.example.b.b_app:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.example.b.b_app:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.example.b.b_app:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelBackground com.example.b.b_app:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.example.b.b_app:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.example.b.b_app:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.example.b.b_app:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.example.b.b_app:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.example.b.b_app:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.example.b.b_app:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.example.b.b_app:ratingBarStyleIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.example.b.b_app:ratingBarStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.example.b.b_app:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.example.b.b_app:seekBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.example.b.b_app:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.example.b.b_app:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.example.b.b_app:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.example.b.b_app:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_switchStyle com.example.b.b_app:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.example.b.b_app:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.example.b.b_app:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.example.b.b_app:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.example.b.b_app:textAppearancePopupMenuHeader}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.example.b.b_app:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.example.b.b_app:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.example.b.b_app:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.example.b.b_app:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.example.b.b_app:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.example.b.b_app:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.example.b.b_app:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBar com.example.b.b_app:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.example.b.b_app:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.example.b.b_app:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.example.b.b_app:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.example.b.b_app:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.example.b.b_app:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.example.b.b_app:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.example.b.b_app:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.example.b.b_app:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.example.b.b_app:windowNoTitle}</code></td><td></td></tr> </table> @see #AppCompatTheme_actionBarDivider @see #AppCompatTheme_actionBarItemBackground @see #AppCompatTheme_actionBarPopupTheme @see #AppCompatTheme_actionBarSize @see #AppCompatTheme_actionBarSplitStyle @see #AppCompatTheme_actionBarStyle @see #AppCompatTheme_actionBarTabBarStyle @see #AppCompatTheme_actionBarTabStyle @see #AppCompatTheme_actionBarTabTextStyle @see #AppCompatTheme_actionBarTheme @see #AppCompatTheme_actionBarWidgetTheme @see #AppCompatTheme_actionButtonStyle @see #AppCompatTheme_actionDropDownStyle @see #AppCompatTheme_actionMenuTextAppearance @see #AppCompatTheme_actionMenuTextColor @see #AppCompatTheme_actionModeBackground @see #AppCompatTheme_actionModeCloseButtonStyle @see #AppCompatTheme_actionModeCloseDrawable @see #AppCompatTheme_actionModeCopyDrawable @see #AppCompatTheme_actionModeCutDrawable @see #AppCompatTheme_actionModeFindDrawable @see #AppCompatTheme_actionModePasteDrawable @see #AppCompatTheme_actionModePopupWindowStyle @see #AppCompatTheme_actionModeSelectAllDrawable @see #AppCompatTheme_actionModeShareDrawable @see #AppCompatTheme_actionModeSplitBackground @see #AppCompatTheme_actionModeStyle @see #AppCompatTheme_actionModeWebSearchDrawable @see #AppCompatTheme_actionOverflowButtonStyle @see #AppCompatTheme_actionOverflowMenuStyle @see #AppCompatTheme_activityChooserViewStyle @see #AppCompatTheme_alertDialogButtonGroupStyle @see #AppCompatTheme_alertDialogCenterButtons @see #AppCompatTheme_alertDialogStyle @see #AppCompatTheme_alertDialogTheme @see #AppCompatTheme_android_windowAnimationStyle @see #AppCompatTheme_android_windowIsFloating @see #AppCompatTheme_autoCompleteTextViewStyle @see #AppCompatTheme_borderlessButtonStyle @see #AppCompatTheme_buttonBarButtonStyle @see #AppCompatTheme_buttonBarNegativeButtonStyle @see #AppCompatTheme_buttonBarNeutralButtonStyle @see #AppCompatTheme_buttonBarPositiveButtonStyle @see #AppCompatTheme_buttonBarStyle @see #AppCompatTheme_buttonStyle @see #AppCompatTheme_buttonStyleSmall @see #AppCompatTheme_checkboxStyle @see #AppCompatTheme_checkedTextViewStyle @see #AppCompatTheme_colorAccent @see #AppCompatTheme_colorBackgroundFloating @see #AppCompatTheme_colorButtonNormal @see #AppCompatTheme_colorControlActivated @see #AppCompatTheme_colorControlHighlight @see #AppCompatTheme_colorControlNormal @see #AppCompatTheme_colorPrimary @see #AppCompatTheme_colorPrimaryDark @see #AppCompatTheme_colorSwitchThumbNormal @see #AppCompatTheme_controlBackground @see #AppCompatTheme_dialogPreferredPadding @see #AppCompatTheme_dialogTheme @see #AppCompatTheme_dividerHorizontal @see #AppCompatTheme_dividerVertical @see #AppCompatTheme_dropDownListViewStyle @see #AppCompatTheme_dropdownListPreferredItemHeight @see #AppCompatTheme_editTextBackground @see #AppCompatTheme_editTextColor @see #AppCompatTheme_editTextStyle @see #AppCompatTheme_homeAsUpIndicator @see #AppCompatTheme_imageButtonStyle @see #AppCompatTheme_listChoiceBackgroundIndicator @see #AppCompatTheme_listDividerAlertDialog @see #AppCompatTheme_listMenuViewStyle @see #AppCompatTheme_listPopupWindowStyle @see #AppCompatTheme_listPreferredItemHeight @see #AppCompatTheme_listPreferredItemHeightLarge @see #AppCompatTheme_listPreferredItemHeightSmall @see #AppCompatTheme_listPreferredItemPaddingLeft @see #AppCompatTheme_listPreferredItemPaddingRight @see #AppCompatTheme_panelBackground @see #AppCompatTheme_panelMenuListTheme @see #AppCompatTheme_panelMenuListWidth @see #AppCompatTheme_popupMenuStyle @see #AppCompatTheme_popupWindowStyle @see #AppCompatTheme_radioButtonStyle @see #AppCompatTheme_ratingBarStyle @see #AppCompatTheme_ratingBarStyleIndicator @see #AppCompatTheme_ratingBarStyleSmall @see #AppCompatTheme_searchViewStyle @see #AppCompatTheme_seekBarStyle @see #AppCompatTheme_selectableItemBackground @see #AppCompatTheme_selectableItemBackgroundBorderless @see #AppCompatTheme_spinnerDropDownItemStyle @see #AppCompatTheme_spinnerStyle @see #AppCompatTheme_switchStyle @see #AppCompatTheme_textAppearanceLargePopupMenu @see #AppCompatTheme_textAppearanceListItem @see #AppCompatTheme_textAppearanceListItemSmall @see #AppCompatTheme_textAppearancePopupMenuHeader @see #AppCompatTheme_textAppearanceSearchResultSubtitle @see #AppCompatTheme_textAppearanceSearchResultTitle @see #AppCompatTheme_textAppearanceSmallPopupMenu @see #AppCompatTheme_textColorAlertDialogListItem @see #AppCompatTheme_textColorSearchUrl @see #AppCompatTheme_toolbarNavigationButtonStyle @see #AppCompatTheme_toolbarStyle @see #AppCompatTheme_windowActionBar @see #AppCompatTheme_windowActionBarOverlay @see #AppCompatTheme_windowActionModeOverlay @see #AppCompatTheme_windowFixedHeightMajor @see #AppCompatTheme_windowFixedHeightMinor @see #AppCompatTheme_windowFixedWidthMajor @see #AppCompatTheme_windowFixedWidthMinor @see #AppCompatTheme_windowMinWidthMajor @see #AppCompatTheme_windowMinWidthMinor @see #AppCompatTheme_windowNoTitle */ public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f01002b, 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 }; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionBarDivider} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionBarItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionBarPopupTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionBarSize} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> @attr name com.example.b.b_app:actionBarSize */ public static final int AppCompatTheme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionBarSplitStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionBarTabBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionBarTabStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionBarTabTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionBarTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionBarWidgetTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle = 50; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionDropDownStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle = 46; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionMenuTextAppearance} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionMenuTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.b.b_app:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionModeBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionModeCloseButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionModeCloseDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionModeCopyDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionModeCutDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionModeFindDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionModePasteDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionModePopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionModeSelectAllDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionModeShareDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionModeSplitBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionModeStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionModeWebSearchDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionOverflowButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionOverflowMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#activityChooserViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle = 58; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#alertDialogButtonGroupStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle = 94; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#alertDialogCenterButtons} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons = 95; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#alertDialogStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle = 93; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#alertDialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme = 96; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowAnimationStyle */ public static final int AppCompatTheme_android_windowAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowIsFloating */ public static final int AppCompatTheme_android_windowIsFloating = 0; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#autoCompleteTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle = 101; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#borderlessButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle = 55; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#buttonBarButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle = 52; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#buttonBarNegativeButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 99; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#buttonBarNeutralButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 100; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#buttonBarPositiveButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 98; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#buttonBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle = 51; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#buttonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:buttonStyle */ public static final int AppCompatTheme_buttonStyle = 102; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#buttonStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall = 103; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#checkboxStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle = 104; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#checkedTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle = 105; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#colorAccent} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:colorAccent */ public static final int AppCompatTheme_colorAccent = 85; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#colorBackgroundFloating} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating = 92; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#colorButtonNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal = 89; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#colorControlActivated} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated = 87; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#colorControlHighlight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight = 88; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#colorControlNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal = 86; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#colorPrimary} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:colorPrimary */ public static final int AppCompatTheme_colorPrimary = 83; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#colorPrimaryDark} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark = 84; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#colorSwitchThumbNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal = 90; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#controlBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:controlBackground */ public static final int AppCompatTheme_controlBackground = 91; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#dialogPreferredPadding} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding = 44; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#dialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:dialogTheme */ public static final int AppCompatTheme_dialogTheme = 43; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#dividerHorizontal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal = 57; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#dividerVertical} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:dividerVertical */ public static final int AppCompatTheme_dividerVertical = 56; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#dropDownListViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle = 75; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#dropdownListPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#editTextBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:editTextBackground */ public static final int AppCompatTheme_editTextBackground = 64; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#editTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.b.b_app:editTextColor */ public static final int AppCompatTheme_editTextColor = 63; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#editTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:editTextStyle */ public static final int AppCompatTheme_editTextStyle = 106; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator = 49; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#imageButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle = 65; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#listChoiceBackgroundIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator = 82; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#listDividerAlertDialog} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog = 45; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#listMenuViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle = 114; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#listPopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle = 76; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#listPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight = 70; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#listPreferredItemHeightLarge} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#listPreferredItemHeightSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#listPreferredItemPaddingLeft} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#listPreferredItemPaddingRight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#panelBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:panelBackground */ public static final int AppCompatTheme_panelBackground = 79; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#panelMenuListTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme = 81; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#panelMenuListWidth} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth = 80; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#popupMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle = 61; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#popupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle = 62; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#radioButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle = 107; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#ratingBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle = 108; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#ratingBarStyleIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator = 109; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#ratingBarStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall = 110; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#searchViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle = 69; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#seekBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle = 111; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#selectableItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground = 53; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#selectableItemBackgroundBorderless} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#spinnerDropDownItemStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#spinnerStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle = 112; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#switchStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:switchStyle */ public static final int AppCompatTheme_switchStyle = 113; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#textAppearanceLargePopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#textAppearanceListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem = 77; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#textAppearanceListItemSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall = 78; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#textAppearancePopupMenuHeader} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#textAppearanceSearchResultSubtitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#textAppearanceSearchResultTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#textAppearanceSmallPopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#textColorAlertDialogListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.b.b_app:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem = 97; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#textColorSearchUrl} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.b.b_app:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl = 68; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#toolbarNavigationButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#toolbarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle = 59; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#windowActionBar} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:windowActionBar */ public static final int AppCompatTheme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#windowActionBarOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#windowActionModeOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#windowFixedHeightMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#windowFixedHeightMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#windowFixedWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#windowFixedWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#windowMinWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#windowMinWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#windowNoTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle = 3; /** Attributes that can be used with a ButtonBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ButtonBarLayout_allowStacking com.example.b.b_app:allowStacking}</code></td><td></td></tr> </table> @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout = { 0x7f01009c }; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#allowStacking} attribute's value can be found in the {@link #ButtonBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:allowStacking */ public static final int ButtonBarLayout_allowStacking = 0; /** Attributes that can be used with a ColorStateListItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ColorStateListItem_alpha com.example.b.b_app: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, 0x7f01009d }; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:alpha */ public static final int ColorStateListItem_alpha = 2; /** <p>This symbol is the offset where the {@link android.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:alpha */ public static final int ColorStateListItem_android_alpha = 1; /** <p>This symbol is the offset where the {@link android.R.attr#color} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:color */ public static final int ColorStateListItem_android_color = 0; /** Attributes that can be used with a CompoundButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTint com.example.b.b_app:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode com.example.b.b_app:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f01009e, 0x7f01009f }; /** <p>This symbol is the offset where the {@link android.R.attr#button} attribute's value can be found in the {@link #CompoundButton} array. @attr name android:button */ public static final int CompoundButton_android_button = 0; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#buttonTint} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:buttonTint */ public static final int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#buttonTintMode} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.example.b.b_app:buttonTintMode */ public static final int CompoundButton_buttonTintMode = 2; /** Attributes that can be used with a DrawerArrowToggle. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.example.b.b_app:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.example.b.b_app:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength com.example.b.b_app:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color com.example.b.b_app:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.example.b.b_app:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.example.b.b_app:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars com.example.b.b_app:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness com.example.b.b_app: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 = { 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7 }; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#arrowHeadLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#arrowShaftLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#barLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:barLength */ public static final int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#color} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:color */ public static final int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#drawableSize} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#gapBetweenBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#spinBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#thickness} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:thickness */ public static final int DrawerArrowToggle_thickness = 7; /** Attributes that can be used with a LinearLayoutCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_divider com.example.b.b_app:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.example.b.b_app:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.example.b.b_app:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers com.example.b.b_app: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, 0x7f01000b, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa }; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAligned} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAligned */ public static final int LinearLayoutCompat_android_baselineAligned = 2; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAlignedChildIndex */ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:gravity */ public static final int LinearLayoutCompat_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:orientation */ public static final int LinearLayoutCompat_android_orientation = 1; /** <p>This symbol is the offset where the {@link android.R.attr#weightSum} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum = 4; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#divider} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#dividerPadding} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#measureWithLargestChild} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#showDividers} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> @attr name com.example.b.b_app:showDividers */ public static final int LinearLayoutCompat_showDividers = 7; /** Attributes that can be used with a LinearLayoutCompat_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_Layout_android_layout_gravity @see #LinearLayoutCompat_Layout_android_layout_height @see #LinearLayoutCompat_Layout_android_layout_weight @see #LinearLayoutCompat_Layout_android_layout_width */ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_gravity */ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#layout_height} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_height */ public static final int LinearLayoutCompat_Layout_android_layout_height = 2; /** <p>This symbol is the offset where the {@link android.R.attr#layout_weight} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_weight */ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; /** <p>This symbol is the offset where the {@link android.R.attr#layout_width} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_width */ public static final int LinearLayoutCompat_Layout_android_layout_width = 1; /** Attributes that can be used with a ListPopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr> </table> @see #ListPopupWindow_android_dropDownHorizontalOffset @see #ListPopupWindow_android_dropDownVerticalOffset */ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownHorizontalOffset */ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; /** Attributes that can be used with a MenuGroup. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr> </table> @see #MenuGroup_android_checkableBehavior @see #MenuGroup_android_enabled @see #MenuGroup_android_id @see #MenuGroup_android_menuCategory @see #MenuGroup_android_orderInCategory @see #MenuGroup_android_visible */ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; /** <p>This symbol is the offset where the {@link android.R.attr#checkableBehavior} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior = 5; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:enabled */ public static final int MenuGroup_android_enabled = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:id */ public static final int MenuGroup_android_id = 1; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:menuCategory */ public static final int MenuGroup_android_menuCategory = 3; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory = 4; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:visible */ public static final int MenuGroup_android_visible = 2; /** Attributes that can be used with a MenuItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuItem_actionLayout com.example.b.b_app:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass com.example.b.b_app:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass com.example.b.b_app:actionViewClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_showAsAction com.example.b.b_app:showAsAction}</code></td><td></td></tr> </table> @see #MenuItem_actionLayout @see #MenuItem_actionProviderClass @see #MenuItem_actionViewClass @see #MenuItem_android_alphabeticShortcut @see #MenuItem_android_checkable @see #MenuItem_android_checked @see #MenuItem_android_enabled @see #MenuItem_android_icon @see #MenuItem_android_id @see #MenuItem_android_menuCategory @see #MenuItem_android_numericShortcut @see #MenuItem_android_onClick @see #MenuItem_android_orderInCategory @see #MenuItem_android_title @see #MenuItem_android_titleCondensed @see #MenuItem_android_visible @see #MenuItem_showAsAction */ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae }; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionLayout} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:actionLayout */ public static final int MenuItem_actionLayout = 14; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionProviderClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:actionProviderClass */ public static final int MenuItem_actionProviderClass = 16; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#actionViewClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:actionViewClass */ public static final int MenuItem_actionViewClass = 15; /** <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut = 9; /** <p>This symbol is the offset where the {@link android.R.attr#checkable} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checkable */ public static final int MenuItem_android_checkable = 11; /** <p>This symbol is the offset where the {@link android.R.attr#checked} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checked */ public static final int MenuItem_android_checked = 3; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuItem} array. @attr name android:enabled */ public static final int MenuItem_android_enabled = 1; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #MenuItem} array. @attr name android:icon */ public static final int MenuItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuItem} array. @attr name android:id */ public static final int MenuItem_android_id = 2; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory = 5; /** <p>This symbol is the offset where the {@link android.R.attr#numericShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut = 10; /** <p>This symbol is the offset where the {@link android.R.attr#onClick} attribute's value can be found in the {@link #MenuItem} array. @attr name android:onClick */ public static final int MenuItem_android_onClick = 12; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory = 6; /** <p>This symbol is the offset where the {@link android.R.attr#title} attribute's value can be found in the {@link #MenuItem} array. @attr name android:title */ public static final int MenuItem_android_title = 7; /** <p>This symbol is the offset where the {@link android.R.attr#titleCondensed} attribute's value can be found in the {@link #MenuItem} array. @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed = 8; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuItem} array. @attr name android:visible */ public static final int MenuItem_android_visible = 4; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#showAsAction} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> @attr name com.example.b.b_app:showAsAction */ public static final int MenuItem_showAsAction = 13; /** Attributes that can be used with a MenuView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_preserveIconSpacing com.example.b.b_app:preserveIconSpacing}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_subMenuArrow com.example.b.b_app: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, 0x7f0100af, 0x7f0100b0 }; /** <p>This symbol is the offset where the {@link android.R.attr#headerBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:headerBackground */ public static final int MenuView_android_headerBackground = 4; /** <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider = 2; /** <p>This symbol is the offset where the {@link android.R.attr#itemBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemBackground */ public static final int MenuView_android_itemBackground = 5; /** <p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha = 6; /** <p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance = 1; /** <p>This symbol is the offset where the {@link android.R.attr#verticalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider = 3; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #MenuView} array. @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle = 0; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#preserveIconSpacing} attribute's value can be found in the {@link #MenuView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#subMenuArrow} attribute's value can be found in the {@link #MenuView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:subMenuArrow */ public static final int MenuView_subMenuArrow = 8; /** Attributes that can be used with a PopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_overlapAnchor com.example.b.b_app: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, 0x7f0100b1 }; /** <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupAnimationStyle */ public static final int PopupWindow_android_popupAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupBackground */ public static final int PopupWindow_android_popupBackground = 0; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#overlapAnchor} attribute's value can be found in the {@link #PopupWindow} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:overlapAnchor */ public static final int PopupWindow_overlapAnchor = 2; /** Attributes that can be used with a PopupWindowBackgroundState. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.example.b.b_app:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f0100b2 }; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#state_above_anchor} attribute's value can be found in the {@link #PopupWindowBackgroundState} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor = 0; /** Attributes that can be used with a RecyclerView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_layoutManager com.example.b.b_app:layoutManager}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_reverseLayout com.example.b.b_app:reverseLayout}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_spanCount com.example.b.b_app:spanCount}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_stackFromEnd com.example.b.b_app:stackFromEnd}</code></td><td></td></tr> </table> @see #RecyclerView_android_descendantFocusability @see #RecyclerView_android_orientation @see #RecyclerView_layoutManager @see #RecyclerView_reverseLayout @see #RecyclerView_spanCount @see #RecyclerView_stackFromEnd */ public static final int[] RecyclerView = { 0x010100c4, 0x010100f1, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6 }; /** <p>This symbol is the offset where the {@link android.R.attr#descendantFocusability} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:descendantFocusability */ public static final int RecyclerView_android_descendantFocusability = 1; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:orientation */ public static final int RecyclerView_android_orientation = 0; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#layoutManager} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:layoutManager */ public static final int RecyclerView_layoutManager = 2; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#reverseLayout} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:reverseLayout */ public static final int RecyclerView_reverseLayout = 4; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#spanCount} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:spanCount */ public static final int RecyclerView_spanCount = 3; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#stackFromEnd} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:stackFromEnd */ public static final int RecyclerView_stackFromEnd = 5; /** Attributes that can be used with a SearchView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_closeIcon com.example.b.b_app:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon com.example.b.b_app:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint com.example.b.b_app:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon com.example.b.b_app:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault com.example.b.b_app:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout com.example.b.b_app:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground com.example.b.b_app:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint com.example.b.b_app:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon com.example.b.b_app:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon com.example.b.b_app:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground com.example.b.b_app:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout com.example.b.b_app:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon com.example.b.b_app: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, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3 }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #SearchView} array. @attr name android:focusable */ public static final int SearchView_android_focusable = 0; /** <p>This symbol is the offset where the {@link android.R.attr#imeOptions} attribute's value can be found in the {@link #SearchView} array. @attr name android:imeOptions */ public static final int SearchView_android_imeOptions = 3; /** <p>This symbol is the offset where the {@link android.R.attr#inputType} attribute's value can be found in the {@link #SearchView} array. @attr name android:inputType */ public static final int SearchView_android_inputType = 2; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SearchView} array. @attr name android:maxWidth */ public static final int SearchView_android_maxWidth = 1; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#closeIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:closeIcon */ public static final int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#commitIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:commitIcon */ public static final int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#defaultQueryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:defaultQueryHint */ public static final int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#goIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:goIcon */ public static final int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#iconifiedByDefault} attribute's value can be found in the {@link #SearchView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#layout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:layout */ public static final int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#queryBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:queryBackground */ public static final int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#queryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:queryHint */ public static final int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#searchHintIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:searchHintIcon */ public static final int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#searchIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:searchIcon */ public static final int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#submitBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:submitBackground */ public static final int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#suggestionRowLayout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#voiceIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:voiceIcon */ public static final int SearchView_voiceIcon = 12; /** Attributes that can be used with a Spinner. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_popupTheme com.example.b.b_app: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, 0x7f01001d }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth} attribute's value can be found in the {@link #Spinner} array. @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth = 3; /** <p>This symbol is the offset where the {@link android.R.attr#entries} attribute's value can be found in the {@link #Spinner} array. @attr name android:entries */ public static final int Spinner_android_entries = 0; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #Spinner} array. @attr name android:popupBackground */ public static final int Spinner_android_popupBackground = 1; /** <p>This symbol is the offset where the {@link android.R.attr#prompt} attribute's value can be found in the {@link #Spinner} array. @attr name android:prompt */ public static final int Spinner_android_prompt = 2; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#popupTheme} attribute's value can be found in the {@link #Spinner} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:popupTheme */ public static final int Spinner_popupTheme = 4; /** Attributes that can be used with a SwitchCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_showText com.example.b.b_app:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack com.example.b.b_app:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth com.example.b.b_app:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding com.example.b.b_app:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.example.b.b_app:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.example.b.b_app:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTint com.example.b.b_app:thumbTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTintMode com.example.b.b_app:thumbTintMode}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track com.example.b.b_app:track}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTint com.example.b.b_app:trackTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTintMode com.example.b.b_app: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, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce }; /** <p>This symbol is the offset where the {@link android.R.attr#textOff} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOff */ public static final int SwitchCompat_android_textOff = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textOn} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOn */ public static final int SwitchCompat_android_textOn = 0; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:thumb */ public static final int SwitchCompat_android_thumb = 2; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#showText} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:showText */ public static final int SwitchCompat_showText = 13; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#splitTrack} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:splitTrack */ public static final int SwitchCompat_splitTrack = 12; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#switchMinWidth} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 10; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#switchPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:switchPadding */ public static final int SwitchCompat_switchPadding = 11; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#switchTextAppearance} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 9; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#thumbTextPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 8; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#thumbTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:thumbTint */ public static final int SwitchCompat_thumbTint = 3; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#thumbTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.example.b.b_app:thumbTintMode */ public static final int SwitchCompat_thumbTintMode = 4; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#track} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:track */ public static final int SwitchCompat_track = 5; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#trackTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:trackTint */ public static final int SwitchCompat_trackTint = 6; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#trackTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.example.b.b_app:trackTintMode */ public static final int SwitchCompat_trackTintMode = 7; /** Attributes that can be used with a TextAppearance. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_textAllCaps com.example.b.b_app:textAllCaps}</code></td><td></td></tr> </table> @see #TextAppearance_android_shadowColor @see #TextAppearance_android_shadowDx @see #TextAppearance_android_shadowDy @see #TextAppearance_android_shadowRadius @see #TextAppearance_android_textColor @see #TextAppearance_android_textSize @see #TextAppearance_android_textStyle @see #TextAppearance_android_typeface @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f01002a }; /** <p>This symbol is the offset where the {@link android.R.attr#shadowColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowColor */ public static final int TextAppearance_android_shadowColor = 4; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDx} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDx */ public static final int TextAppearance_android_shadowDx = 5; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDy} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDy */ public static final int TextAppearance_android_shadowDy = 6; /** <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowRadius */ public static final int TextAppearance_android_shadowRadius = 7; /** <p>This symbol is the offset where the {@link android.R.attr#textColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColor */ public static final int TextAppearance_android_textColor = 3; /** <p>This symbol is the offset where the {@link android.R.attr#textSize} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textSize */ public static final int TextAppearance_android_textSize = 0; /** <p>This symbol is the offset where the {@link android.R.attr#textStyle} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textStyle */ public static final int TextAppearance_android_textStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#typeface} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:typeface */ public static final int TextAppearance_android_typeface = 1; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#textAllCaps} attribute's value can be found in the {@link #TextAppearance} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name com.example.b.b_app:textAllCaps */ public static final int TextAppearance_textAllCaps = 8; /** Attributes that can be used with a Toolbar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_buttonGravity com.example.b.b_app:buttonGravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseContentDescription com.example.b.b_app:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon com.example.b.b_app:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd com.example.b.b_app:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.example.b.b_app:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft com.example.b.b_app:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight com.example.b.b_app:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart com.example.b.b_app:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.example.b.b_app:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo com.example.b.b_app:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription com.example.b.b_app:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight com.example.b.b_app:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription com.example.b.b_app:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon com.example.b.b_app:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme com.example.b.b_app:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle com.example.b.b_app:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.example.b.b_app:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor com.example.b.b_app:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title com.example.b.b_app:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargin com.example.b.b_app:titleMargin}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom com.example.b.b_app:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd com.example.b.b_app:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart com.example.b.b_app:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop com.example.b.b_app:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins com.example.b.b_app:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance com.example.b.b_app:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor com.example.b.b_app: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, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001d, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df }; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #Toolbar} array. @attr name android:gravity */ public static final int Toolbar_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #Toolbar} array. @attr name android:minHeight */ public static final int Toolbar_android_minHeight = 1; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#buttonGravity} attribute's value can be found in the {@link #Toolbar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> @attr name com.example.b.b_app:buttonGravity */ public static final int Toolbar_buttonGravity = 21; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#collapseContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 23; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#collapseIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:collapseIcon */ public static final int Toolbar_collapseIcon = 22; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#contentInsetEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions = 10; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#contentInsetLeft} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#contentInsetRight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:contentInsetRight */ public static final int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#contentInsetStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:contentInsetStart */ public static final int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation = 9; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#logo} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:logo */ public static final int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#logoDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:logoDescription */ public static final int Toolbar_logoDescription = 26; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#maxButtonHeight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 20; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#navigationContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 25; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#navigationIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:navigationIcon */ public static final int Toolbar_navigationIcon = 24; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#popupTheme} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:popupTheme */ public static final int Toolbar_popupTheme = 11; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#subtitle} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#subtitleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 13; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#subtitleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:subtitleTextColor */ public static final int Toolbar_subtitleTextColor = 28; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#title} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:title */ public static final int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#titleMargin} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:titleMargin */ public static final int Toolbar_titleMargin = 14; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#titleMarginBottom} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 18; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#titleMarginEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 16; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#titleMarginStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:titleMarginStart */ public static final int Toolbar_titleMarginStart = 15; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#titleMarginTop} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:titleMarginTop */ public static final int Toolbar_titleMarginTop = 17; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#titleMargins} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:titleMargins */ public static final int Toolbar_titleMargins = 19; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#titleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 12; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#titleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:titleTextColor */ public static final int Toolbar_titleTextColor = 27; /** Attributes that can be used with a View. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingEnd com.example.b.b_app:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart com.example.b.b_app:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme com.example.b.b_app: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, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2 }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #View} array. @attr name android:focusable */ public static final int View_android_focusable = 1; /** <p>This symbol is the offset where the {@link android.R.attr#theme} attribute's value can be found in the {@link #View} array. @attr name android:theme */ public static final int View_android_theme = 0; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#paddingEnd} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:paddingEnd */ public static final int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#paddingStart} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:paddingStart */ public static final int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#theme} attribute's value can be found in the {@link #View} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.b.b_app:theme */ public static final int View_theme = 4; /** Attributes that can be used with a ViewBackgroundHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.example.b.b_app:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.example.b.b_app:backgroundTintMode}</code></td><td></td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f0100e3, 0x7f0100e4 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #ViewBackgroundHelper} array. @attr name android:background */ public static final int ViewBackgroundHelper_android_background = 0; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#backgroundTint} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.b.b_app:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link com.example.b.b_app.R.attr#backgroundTintMode} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.example.b.b_app:backgroundTintMode */ public static final int ViewBackgroundHelper_backgroundTintMode = 2; /** Attributes that can be used with a ViewStubCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr> <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr> </table> @see #ViewStubCompat_android_id @see #ViewStubCompat_android_inflatedId @see #ViewStubCompat_android_layout */ public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 }; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:id */ public static final int ViewStubCompat_android_id = 0; /** <p>This symbol is the offset where the {@link android.R.attr#inflatedId} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:inflatedId */ public static final int ViewStubCompat_android_inflatedId = 2; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:layout */ public static final int ViewStubCompat_android_layout = 1; }; }
[ "narakpabia@yaho.fr" ]
narakpabia@yaho.fr
e5dd7430e5356d781408123aae75d0861a491096
013e83b707fe5cd48f58af61e392e3820d370c36
/spring-webmvc/src/main/java/org/springframework/web/servlet/resource/ResourceTransformerSupport.java
7939ca08efa10b4b215cd26dad7c36a5fb0dda3a
[]
no_license
yuexiaoguang/spring4
8376f551fefd33206adc3e04bc58d6d32a825c37
95ea25bbf46ee7bad48307e41dcd027f1a0c67ae
refs/heads/master
2020-05-27T20:27:54.768860
2019-09-02T03:39:57
2019-09-02T03:39:57
188,770,867
0
1
null
null
null
null
UTF-8
Java
false
false
2,761
java
package org.springframework.web.servlet.resource; import java.util.Collections; import javax.servlet.http.HttpServletRequest; import org.springframework.core.io.Resource; /** * {@code ResourceTransformer}的基类, 带有可选的帮助方法, 用于解析转换后的资源中的公共链接. */ public abstract class ResourceTransformerSupport implements ResourceTransformer { private ResourceUrlProvider resourceUrlProvider; /** * 配置{@link ResourceUrlProvider}以在解析转换后的资源中的链接的公共URL时使用 (e.g. CSS文件中的import链接). * 这仅对表示为完整路径的链接是必需的, i.e. 包括上下文和servlet路径, 而不是相对链接. * <p>默认未设置此属性. * 在这种情况下, 如果需要{@code ResourceUrlProvider}, 则尝试查找通过 * {@link org.springframework.web.servlet.resource.ResourceUrlProviderExposingInterceptor * ResourceUrlProviderExposingInterceptor}公开的{@code ResourceUrlProvider} (默认情况下在MVC Java配置和XML命名空间中配置). * 因此, 在大多数情况下, 不需要显式配置此属性. * * @param resourceUrlProvider 要使用的URL提供器 */ public void setResourceUrlProvider(ResourceUrlProvider resourceUrlProvider) { this.resourceUrlProvider = resourceUrlProvider; } /** * 返回配置的{@code ResourceUrlProvider}. */ public ResourceUrlProvider getResourceUrlProvider() { return this.resourceUrlProvider; } /** * 当转换的资源包含指向其他资源的链接时, 转换器可以使用此方法. * 这些链接需要由资源解析器链确定的公共的链接替换 (e.g. 公共URL可能插入了版本). * * @param resourcePath 需要重写的资源的路径 * @param request 当前的请求 * @param resource 要转换的资源 * @param transformerChain 转换器链 * * @return 转换后的URL, 或{@code null} */ protected String resolveUrlPath(String resourcePath, HttpServletRequest request, Resource resource, ResourceTransformerChain transformerChain) { if (resourcePath.startsWith("/")) { // 完整的资源路径 ResourceUrlProvider urlProvider = findResourceUrlProvider(request); return (urlProvider != null ? urlProvider.getForRequestUrl(request, resourcePath) : null); } else { // 尝试解析为相对路径 return transformerChain.getResolverChain().resolveUrlPath( resourcePath, Collections.singletonList(resource)); } } private ResourceUrlProvider findResourceUrlProvider(HttpServletRequest request) { if (this.resourceUrlProvider != null) { return this.resourceUrlProvider; } return (ResourceUrlProvider) request.getAttribute( ResourceUrlProviderExposingInterceptor.RESOURCE_URL_PROVIDER_ATTR); } }
[ "yuexiaoguang@vortexinfo.cn" ]
yuexiaoguang@vortexinfo.cn
7ae3b3732ad69794417508de815764f3b4bc0fc1
ea6f587e6033dac316bb3c49b2ba9a57422838b9
/src/main/java/fr/insalyon/creatis/vip/cli/action/KillExecutionAction.java
0d5779ede4bb89addfec90a9449b822ba0e8892b
[]
no_license
qifanz/vip_client
a3cac5a10cb660abcd3b19f3c934ab83d3933449
5947cecebd05df16a45d367f09b3e8c35aa1fd37
refs/heads/master
2021-01-25T04:49:54.101264
2017-07-06T09:29:21
2017-07-06T09:29:21
93,489,435
0
0
null
null
null
null
UTF-8
Java
false
false
1,261
java
package fr.insalyon.creatis.vip.cli.action; import fr.insalyon.creatis.vip.cli.control.Arguments; import fr.insalyon.creatis.vip.cli.dao.InfoExecutionDAO; import fr.insalyon.creatis.vip.java_client.ApiException; import fr.insalyon.creatis.vip.java_client.api.DefaultApi; import fr.insalyon.creatis.vip.java_client.model.DeleteExecutionConfiguration; /** * Created by qifan on 2017/6/15. */ public class KillExecutionAction implements Action<Object> { private DefaultApi api; private Arguments args; private String executionId; public KillExecutionAction (DefaultApi api, Arguments args) { this.api = api; this.args = args; setExecutionIdentifier(); } private void setExecutionIdentifier() { try{ executionId=args.getArgsWithoutFlag().get(0); } catch (IndexOutOfBoundsException e) { InfoExecutionDAO infoDao=new InfoExecutionDAO(); executionId=infoDao.getLastExecution().getExecutionIdentifier(); } } @Override public Object execute() throws ApiException { DeleteExecutionConfiguration d=new DeleteExecutionConfiguration(); d.setDeleteFiles(true); api.deleteExecution(executionId,d); return 1; } }
[ "qifan.zhang@insa-lyon.fr" ]
qifan.zhang@insa-lyon.fr
034f601f27f7e3235c31e0675cbe8e8a5538eb4b
9be72c1db2a921fcfe2a3a6d4963b7a1a5b478c8
/cat-model/src/main/java/com/rci/cat/model/TravelWindowBean.java
223a099f4cd957e3d6a571b55ac8a4d34d54db5c
[]
no_license
AnikDutta/testjdbc
8bdc916608f23c950641e2cbc22a2441b84a1045
fe8f6e6aa4bb0a8a8353a3e14b21034ec71001ba
refs/heads/master
2020-03-23T15:15:42.449664
2018-08-03T16:34:30
2018-08-03T16:34:30
141,734,111
0
0
null
null
null
null
UTF-8
Java
false
false
740
java
package com.rci.cat.model; import com.fasterxml.jackson.annotation.JsonInclude; @JsonInclude(JsonInclude.Include.NON_EMPTY) public class TravelWindowBean { String travelStartDate; String travelEndDate; String advanceDays; public String getTravelStartDate() { return travelStartDate; } public void setTravelStartDate(String travelStartDate) { this.travelStartDate = travelStartDate; } public String getTravelEndDate() { return travelEndDate; } public void setTravelEndDate(String travelEndDate) { this.travelEndDate = travelEndDate; } public String getAdvanceDays() { return advanceDays; } public void setAdvanceDays(String advanceDays) { this.advanceDays = advanceDays; } }
[ "anik.dutta@rci.com" ]
anik.dutta@rci.com
d2dc48ecc21ce12a179ca134fb8c2ed28b74d08b
db35aac5aba876d6245c1d370d067cf88fe372f9
/app/src/main/java/com/example/pedro/carcollection/models/Car.java
c76119a5fb52c6e0a4d42c6facb1a4a363dfad4b
[]
no_license
PCarrascoDev/CarCollection
1f23a64cce732d06858050a9744794aa36e0616b
badc6b56659bc7b6dcb99f4a02680abb00c6ff4b
refs/heads/master
2021-06-18T22:00:58.787582
2017-06-02T06:35:34
2017-06-02T06:35:34
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,713
java
package com.example.pedro.carcollection.models; import com.orm.SugarRecord; /** * Created by Pedro on 30-05-2017. */ public class Car extends SugarRecord { private String brand, model, body; private int year; private boolean abs; public Car(){ } public Car(String brand, String model, String body, int year, boolean abs) { this.brand = brand; this.model = model; this.body = body; this.year = year; this.abs = abs; } public String getBrand() { return brand; } public void setBrand(String brand) { this.brand = brand; } public String getModel() { return model; } public void setModel(String model) { this.model = model; } public String getBody() { return body; } public int getBodyPos(){ switch (body){ case "SUV": return 0; case "HB": return 1; case "SEDAN": return 2; case "COUPE": return 3; case "PICKUP": return 4; default: return 0; } } public void setBody(String body) { this.body = body; } public int getYear() { return year; } public int getYearPos(){ int pos = year; pos -= 2010; if (pos < 0 || pos > 7){ return 0; } else { return pos; } } public void setYear(int year) { this.year = year; } public boolean isAbs() { return abs; } public void setAbs(boolean abs) { this.abs = abs; } }
[ "pedro.carrascoc@mail.udp.cl" ]
pedro.carrascoc@mail.udp.cl
50cdcaacc7afbe047dee0e33222d4bd95837e0e7
43c0e12a5c536f2b48a12362594e0ab71749c70f
/app/src/main/java/com/example/myapplication/dao/BangGiaoDichDAO.java
392c5d80c9cb5e157d0410568d2b45e13e9922fe
[]
no_license
duc96/QLThuChi_GiaoDich_CoBan
e7e6775a77e745b1704802859b59611bfb418c51
527875ed9955de94a2a57d8926ad27f9242dc421
refs/heads/master
2022-11-27T19:31:34.682636
2020-08-03T08:39:03
2020-08-03T08:39:03
284,647,178
0
0
null
null
null
null
UTF-8
Java
false
false
3,764
java
package com.example.myapplication.dao; import android.content.ContentValues; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import com.example.myapplication.model.BangGiaoDich; import java.util.ArrayList; import java.util.List; public class BangGiaoDichDAO { private SQLiteDatabase db; private static final String TABLE_NAME = "bang_giao_dich"; public static final String MA_GD = "ma_gd"; public static final String NGAY_GD = "ngay_gd"; public static final String SO_TIEN_GD = "so_tien_gd"; public static final String MA_KHOAN = "ma_khoan"; public static final String MO_TA = "mo_ta"; public static final String CREATE_TABLE = "CREATE TABLE " + TABLE_NAME + " ( " + MA_GD + " INTEGER PRIMARY KEY AUTOINCREMENT , " + NGAY_GD + " VARCHAR NOT NULL, " + SO_TIEN_GD + " REAL NOT NULL, " + MA_KHOAN + " INTEGER ," + MO_TA + " VARCHAR ," + " FOREIGN KEY (" + MA_KHOAN + ") REFERENCES khoan_thu_chi (" + MA_KHOAN + ") " + " );"; public static final String DROP_TABLE = "DROP TABLE IF EXISTS " + TABLE_NAME; public BangGiaoDichDAO(SQLiteDatabase db) { this.db = db; } public long createBangGD(BangGiaoDich bangGiaoDich){ ContentValues values = new ContentValues(); values.put(NGAY_GD,bangGiaoDich.getNgayGiaoDich()); values.put(SO_TIEN_GD,bangGiaoDich.getSoTienGiaoDich()); values.put(MA_KHOAN,bangGiaoDich.getMaKhoan()); values.put(MO_TA,bangGiaoDich.getMoTa()); return db.insert(TABLE_NAME,null,values); } public BangGiaoDich readBangGiaoDich(int maGD){ String[] columns = {MA_GD,NGAY_GD,SO_TIEN_GD,MA_KHOAN,MO_TA}; String selection = MA_GD + " = ?"; String[] selectionArgs = {maGD+""}; Cursor cursor = db.query(TABLE_NAME,columns,selection,selectionArgs,null,null,null); if(cursor.moveToNext()){ return new BangGiaoDich(cursor.getInt(cursor.getColumnIndex(MA_GD)), cursor.getString(cursor.getColumnIndex(NGAY_GD)), cursor.getFloat(cursor.getColumnIndex(SO_TIEN_GD)), cursor.getInt(cursor.getColumnIndex(MA_KHOAN)), cursor.getString(cursor.getColumnIndex(MO_TA))); } return null; } public List readAll(){ List listbangthuchi = new ArrayList(); String[] columns = {MA_GD,NGAY_GD,SO_TIEN_GD,MA_KHOAN,MO_TA}; Cursor cursor = db.query(TABLE_NAME,columns,null,null,null,null,null); while (cursor.moveToNext()){ listbangthuchi.add(new BangGiaoDich(cursor.getInt(cursor.getColumnIndex(MA_GD)), cursor.getString(cursor.getColumnIndex(NGAY_GD)), cursor.getFloat(cursor.getColumnIndex(SO_TIEN_GD)), cursor.getInt(cursor.getColumnIndex(MA_KHOAN)), cursor.getString(cursor.getColumnIndex(MO_TA)))); } return listbangthuchi; } public int update(BangGiaoDich bangGiaoDich){ ContentValues values = new ContentValues(); String whereClause = MA_GD + " = ?"; String[] whereArgs = {bangGiaoDich.getMaGiaoDich()+""}; values.put(NGAY_GD,bangGiaoDich.getNgayGiaoDich()); values.put(SO_TIEN_GD,bangGiaoDich.getSoTienGiaoDich()); values.put(MA_KHOAN,bangGiaoDich.getMaKhoan()); values.put(MO_TA,bangGiaoDich.getMoTa()); return db.update(TABLE_NAME,values,whereClause,whereArgs); } public int delete(int maGD){ String whereClause = MA_GD + " = ?"; String[] whereArgs = {maGD+""}; return db.delete(TABLE_NAME,whereClause,whereArgs); } }
[ "duc96" ]
duc96
c82a2596d7688f5dc2a9dac84a5b04c7fd1082bb
85350c3c20bda989f1923958c07fa111322fde8d
/src/jokrey/experimental/tracking/ColorTrackingPointFinder.java
d132816e6a76abbc727decd2d22b1627103fca2c
[ "MIT" ]
permissive
jokrey/WebcamGestureDetection
569914d583d8be929fd2746aeeddd4c7bbf4a5e7
028d141f88da878511d2442f25d455a76fb1a4a5
refs/heads/master
2021-04-15T05:06:11.991245
2018-10-15T15:06:48
2018-10-15T15:06:48
94,561,843
1
0
null
null
null
null
UTF-8
Java
false
false
4,706
java
package jokrey.experimental.tracking; import java.awt.Color; import java.awt.Graphics2D; import java.awt.Point; import java.awt.image.BufferedImage; import java.util.ArrayList; import java.util.List; import java.util.concurrent.CopyOnWriteArrayList; import jokrey.experimental.ui.WebcamPanel; import util.UTIL; public class ColorTrackingPointFinder extends TrackingPointFinder { public ColorTrackingPointFinder(Color currentTrackingColor_g) { currentTrackingColor=currentTrackingColor_g; } @Override public Point getTrackingPoint() { return trackingPoints.isEmpty()?null:trackingPoints.get(0); } public List<Point> trackingPoints = new CopyOnWriteArrayList<>(); public List<Point> colorMatches = new CopyOnWriteArrayList<>(); public Color currentTrackingColor;//only works well with the rgb colors //change all these variables not just positiveColorMatchDeterminator! double positiveColorMatchDeterminator_max = 150; int clusterMatchDiameter = 5; int clusterSizeForMatch = 15; double positiveColorMatchDeterminator = positiveColorMatchDeterminator_max; // double positiveAbsoluteMatchDeterminator = 50; @Override public void update(BufferedImage img) { update(img, 0); } // private Point lastSingleTrackingPoint=null; public void update(BufferedImage img, int recursive) { List<Point> colorMatchesTemp = analyzeImageForColorMatches(img); colorMatches.clear(); colorMatches.addAll(colorMatchesTemp); List<Point> trackingPointsTemp = analyzeMatchesForClusters(colorMatchesTemp); trackingPoints.clear(); trackingPoints.addAll(trackingPointsTemp); if(recursive<=2) {//to prohibit endless loops if(trackingPoints.size()>1 && positiveColorMatchDeterminator>5) { positiveColorMatchDeterminator-=5; System.out.println(positiveColorMatchDeterminator+" -----"); update(img, recursive+1); } else if(trackingPoints.isEmpty() && positiveColorMatchDeterminator<positiveColorMatchDeterminator_max) { positiveColorMatchDeterminator+=5; System.out.println(positiveColorMatchDeterminator+" ++++"); update(img, recursive+1); // if(trackingPoints.size()==1) } // else if(trackingPoints.size()==1) { // lastSingleTrackingPoint = trackingPoints.get(0); // } } } public List<Point> analyzeImageForColorMatches(BufferedImage img) { List<Point> colorMatchesToRet = new ArrayList<>(); for(int x=0;x<img.getWidth();x++) { for(int y=0;y<img.getHeight();y++) { Color clrAtP = new Color(img.getRGB(x, y)); if(areSimilar(currentTrackingColor, clrAtP, positiveColorMatchDeterminator) // && // Math.abs(currentTrackingColor.getRed() - clrAtP.getRed()) < positiveAbsoluteMatchDeterminator && // Math.abs(currentTrackingColor.getGreen() - clrAtP.getGreen()) < positiveAbsoluteMatchDeterminator && // Math.abs(currentTrackingColor.getBlue() - clrAtP.getBlue()) < positiveAbsoluteMatchDeterminator ) { colorMatchesToRet.add(new Point(x,y)); } } } return colorMatchesToRet; } public List<Point> analyzeMatchesForClusters(List<Point> colorMatchesTemp) { List<Point> trackingPointsToRet = new ArrayList<>(); while(!colorMatchesTemp.isEmpty()) { // for(int i=0;i<colorMatches.size();) { List<Point> cluster = removeFirstCluster(colorMatchesTemp, clusterMatchDiameter); if(cluster.size()>clusterSizeForMatch) trackingPointsToRet.add(findClusterCenter(cluster)); // i+=cluster.size(); } return trackingPointsToRet; } @Override public void drawFindings(Graphics2D g, WebcamPanel camP) { if(!colorMatches.isEmpty()) { g.setColor(Color.white); int diameter = 10; if(colorMatches.size() > 10) { for (int i = 0; i < 10; i++) { Point match = colorMatches.get(i); Point drawP = camP.getDrawPointForPOnImg(match); g.fillOval(drawP.x - diameter / 2, drawP.y - diameter / 2, diameter, diameter); } } else { for (int i = 0; i < colorMatches.size(); i++) { Point match = colorMatches.get(i); Point drawP = camP.getDrawPointForPOnImg(match); g.fillOval(drawP.x - diameter / 2, drawP.y - diameter / 2, diameter, diameter); } } } g.setColor(Color.cyan); if(!trackingPoints.isEmpty()) { int trackingPointDiameter = 22; for(int i=0;i<trackingPoints.size();i++) { Point match = trackingPoints.get(i); Point drawP = camP.getDrawPointForPOnImg(match); g.fillOval(drawP.x - trackingPointDiameter / 2, drawP.y - trackingPointDiameter / 2, trackingPointDiameter, trackingPointDiameter); } } } }
[ "justin.bennett.developer@gmail.com" ]
justin.bennett.developer@gmail.com
4d7d02592a201cd7d9becb8bd84866dd955ac60a
ddad12daacc0d881babf3e024c0ead5766600a4f
/src/StringPrograms20/IsAnogram.java
e417ee39be6cbfa4b52ca6b4e7543f6baa634b0a
[]
no_license
nazeeyashaik21/StringPrograms
8c17f0c8137c25c3bb50c433327c9361a0d01a52
9d001300ddaded446fad5b4ecc09d0f1ff78e077
refs/heads/master
2020-07-22T22:41:36.790185
2019-09-09T16:30:37
2019-09-09T16:30:37
207,354,249
0
0
null
null
null
null
UTF-8
Java
false
false
694
java
package StringPrograms20; public class IsAnogram { public static boolean isAnogram(String input, String anogram) { char[] ch = input.toCharArray(); if (input.length() != anogram.length()) { return false; } for (char c : ch) { int index = anogram.indexOf(c); if (index != -1) { anogram = anogram.substring(0, index) + anogram.substring(index + 1, anogram.length()); } else return false; } return anogram.isEmpty(); } public static void main(String[] args) { boolean flag = isAnogram("dormitory", "dirtyroom"); if (flag) { System.out.println("Given Strings are Anogram"); } else { System.out.println("Given strings are not Anogram"); } } }
[ "Nazeeya_Shaik@ad.infosys.com" ]
Nazeeya_Shaik@ad.infosys.com
ae01b07ecc2bda240c46183774bf67756dbbe259
102a07cfeb714c3ddf08a5c2c18e526eb991227d
/vadim.martsun/task_6/src/main/java/com/hillel/spring/mvc/controllers/UserPageController.java
f012062975e5fece53f827219b3fcc9de67033f0
[]
no_license
vserdun/java_enterprise
f96bbbcff687fcfe31c5a5ea86685ceb72b72118
ed9588556329fa5f4f523317a465dd7e134b0e8b
refs/heads/master
2020-08-11T16:59:52.928579
2020-01-31T17:09:17
2020-01-31T17:09:17
214,598,155
0
8
null
2020-01-31T17:09:18
2019-10-12T07:14:53
Java
UTF-8
Java
false
false
2,977
java
package com.hillel.spring.mvc.controllers; import com.hillel.spring.mvc.dao.userRepository.UserRepository; import com.hillel.spring.mvc.model.User; import com.hillel.spring.mvc.model.mappers.userMapper.UserMapper; import com.hillel.spring.mvc.model.requests.UserRequest; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.servlet.ModelAndView; import java.util.List; @Controller @RequestMapping("/users") public class UserPageController { @Autowired private UserRepository userRepository; @Autowired private UserMapper userMapper; @RequestMapping(method = RequestMethod.GET, value = "/usersList") public ModelAndView getUsersList() { List<User> userList = userRepository.getAllUsers(); ModelAndView modelAndView = new ModelAndView(); modelAndView.addObject("users", userList); modelAndView.setViewName("usersPage"); return modelAndView; } @RequestMapping(method = RequestMethod.GET, value = "/add") public String addUserForm(Model model) { model.addAttribute("userAttribute", new UserRequest()); return "addUser"; } @RequestMapping(method = RequestMethod.POST, value = "/addUser") public String addUser(@ModelAttribute("userAttribute") UserRequest userRequest) { User user = userMapper.getUser(userRequest); userRepository.save(user); return "redirect:/users/usersList"; } @RequestMapping(method = RequestMethod.GET, value = "/delete/{userId}") public String deleteUser(@PathVariable("userId") int userId) { userRepository.delete(userId); return "redirect:/users/usersList"; } @RequestMapping(method = RequestMethod.GET, value = "/edit/{userId}") public String editUserPage(@PathVariable("userId") int userId, Model model) { User user = userRepository.getUserById(userId); UserRequest userRequest = new UserRequest(user.getId(), user.getLastName(), user.getFirstName(), user.getBirthDate().toString(), user.getGender().toString()); model.addAttribute("userAttribute", userRequest); return "editUser"; } @RequestMapping(method = RequestMethod.POST, value = "/edit/update") public String editUser(@ModelAttribute("userAttribute") UserRequest userRequest) { userRepository.update(userRequest.getId(), userRequest); return "redirect:/users/usersList"; } }
[ "31002603+vserdun@users.noreply.github.com" ]
31002603+vserdun@users.noreply.github.com
941b616af2f8b12968140261b7d7b4cb70346482
2b463b1e62c35e86d0e79d0fc62dd51e499632ff
/src/main/java/pe/gob/congreso/model/Tipo.java
7011728987c6db3f5e950cbadfd396d77e5bdac7
[]
no_license
vadrianzenl/std
94df013addc25f246986a7af52bc1ca0b860ecaa
540090ab0d8c01492f4d02c8484afacb5ae35468
refs/heads/master
2023-02-01T06:00:00.412591
2020-12-11T13:47:31
2020-12-11T13:47:31
319,531,495
0
0
null
null
null
null
UTF-8
Java
false
false
2,485
java
package pe.gob.congreso.model; import java.util.Date; import java.util.List; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import org.hibernate.validator.constraints.NotBlank; import com.fasterxml.jackson.annotation.JsonIgnore; import lombok.Data; import lombok.NoArgsConstructor; @NoArgsConstructor @Data @Entity @Table(name = "STD_TIPO") @SequenceGenerator(name = "SEQ_STD_TIPO", sequenceName = "SEQ_STD_TIPO", allocationSize = 1, initialValue= 1) public class Tipo{ @Id @Column(name="stdt_id") @GeneratedValue(strategy=GenerationType.SEQUENCE, generator="SEQ_STD_TIPO") private Integer id; @Column(name="stdt_vnombre") private String nombre; @Column(name="stdt_vdescripcion") @NotBlank(message = "No debe ser vacío") private String descripcion; @Column(name="stdt_bhabilitado") private boolean habilitado;//bit @Column(name="stdt_iorden") private Integer orden; @Column(name = "aud_cusuario_crea") private String usuarioCreacion; @Column(name = "aud_dfecha_crea") private Date fechaCreacion; @Column(name = "aud_cusuario_modifica") private String usuarioModificacion; @Column(name = "aud_dfecha_modifica") private Date fechaModificacion; @Column(name = "stdt_bconfigurable") private boolean configurable; @JsonIgnore @OneToMany(mappedBy = "tipoRegistro") private List<FichaDocumento> listFichaDocumentoR; @JsonIgnore @OneToMany(mappedBy = "tipoEstado") private List<FichaDocumento> listFichaDocumentoE; @JsonIgnore @OneToMany(mappedBy = "tipoEnvio") private List<FichaDocumento> listFichaDocumentoEn; @JsonIgnore @OneToMany(mappedBy = "tipo") private List<Adjunto> listAdjuntos; @JsonIgnore @OneToMany(mappedBy = "tipo") private List<Motivo> listMotivos; @JsonIgnore @OneToMany(mappedBy = "estado") private List<Deriva> listEnviados; @JsonIgnore @OneToMany(mappedBy = "estado") private List<Deriva> listBitacoras; @JsonIgnore @OneToMany(mappedBy = "tipoRelacion") private List<Relaciona> listRelaciones; @JsonIgnore @OneToMany(mappedBy = "tipoAnio") private List<FiltroAnio> listFiltroAnio; }
[ "vadrianzen@proveedor.intercorp.com.pe" ]
vadrianzen@proveedor.intercorp.com.pe
2beb9796d89ee64221afdfa600c71f149266e15a
3c1f488d822e8231f349de037ef63721e1e93734
/algorithm/src/com/jinfenglee/search/BinarySearch.java
c499887b49daef53bd8d0cfd201b77c20c77dc59
[]
no_license
jinfengli/algorithm
579fa79d30d53097ee6ed9ac5b3fe3c71de0205f
2a47ddd54d730c1229cce5bcd96a8210298e2a8c
refs/heads/master
2021-01-12T19:18:15.131779
2019-10-24T08:46:29
2019-10-24T08:46:29
34,402,012
0
0
null
null
null
null
UTF-8
Java
false
false
1,255
java
package com.jinfenglee.search; import java.util.Arrays; /** * BinarySearch * * @author li.jf * @date 2017-10-17 21:34:02 * */ public class BinarySearch { /** * 二分查找 复杂度 O(log(n)) 特点:要求待查表必须是有序表,并且顺序存储 * * @param arr * @param num 待查找的数 * @return */ private static int binarySearch(int[] arr, int num) { int low = 0; int high = arr.length - 1; while (low <= high) { // 网上有的写法是这样的:middle = low + ((high - low) >> 1), 效果实际一样的. // int mid = (low + high) / 2; int mid = low + ((high - low) >> 1); if (num > arr[mid]) { low = mid + 1; } else if (num < arr[mid]) { high = mid - 1; } else { return mid; } } return -1; } public static void main(String[] args) { int[] arr = { 2, 5, 11, 3, 91, 13, 35, 4 }; Arrays.sort(arr); // 二分查找要求数组有序,先排序 for (int a : arr) { System.out.print(a + " "); } System.out.println(); int num = 5; int result = binarySearch(arr, num); if (result != -1) { System.out.println("存在该数" + num + " ,索引下标为:" + result); } else { System.out.println("数组中不存在该数据"); } } }
[ "lijinfeng.ljf@gmail.com" ]
lijinfeng.ljf@gmail.com
609a3a2a58dd73e2d49c4db7ee5adfe837bfc189
20e630e845d898abfa20eda73e512d1f71ee4cf0
/java-server/src/dongfang/mavlink_10/messages/Setpoint6dofMessage.java
8feb06ead2ddb16451341ac188a755d796926969
[]
no_license
gladiopeace/ardupilot-cellular-extension
6b8ea9e8d85b3d7f0c5a1796345c97b084b1005b
3ee49d875242f550c54b84c3f72df2bd6dc2bc8d
refs/heads/master
2023-08-06T00:35:16.062192
2013-10-28T19:57:38
2013-10-28T19:57:38
35,746,900
0
0
null
null
null
null
UTF-8
Java
false
false
2,217
java
package dongfang.mavlink_10.messages; public class Setpoint6dofMessage extends MavlinkMessage { private short targetSystem; private float transX; private float transY; private float transZ; private float rotX; private float rotY; private float rotZ; public Setpoint6dofMessage(int sequence, int systemId, int componentId) { super(sequence, systemId, componentId); } public int getId() { return 149; } public String getDescription() { return "Set the 6 DOF setpoint for a attitude and position controller."; } public int getExtraCRC() { return 0; } public int getLength() { return 25; } // a uint8_t public short getTargetSystem() { return targetSystem; } public void setTargetSystem(short targetSystem) { this.targetSystem=targetSystem; } // a float public float getTransX() { return transX; } public void setTransX(float transX) { this.transX=transX; } // a float public float getTransY() { return transY; } public void setTransY(float transY) { this.transY=transY; } // a float public float getTransZ() { return transZ; } public void setTransZ(float transZ) { this.transZ=transZ; } // a float public float getRotX() { return rotX; } public void setRotX(float rotX) { this.rotX=rotX; } // a float public float getRotY() { return rotY; } public void setRotY(float rotY) { this.rotY=rotY; } // a float public float getRotZ() { return rotZ; } public void setRotZ(float rotZ) { this.rotZ=rotZ; } public String toString() { StringBuilder result = new StringBuilder("SETPOINT_6DOF"); result.append(": "); result.append("target_system="); result.append(this.targetSystem); result.append(","); result.append("trans_x="); result.append(this.transX); result.append(","); result.append("trans_y="); result.append(this.transY); result.append(","); result.append("trans_z="); result.append(this.transZ); result.append(","); result.append("rot_x="); result.append(this.rotX); result.append(","); result.append("rot_y="); result.append(this.rotY); result.append(","); result.append("rot_z="); result.append(this.rotZ); return result.toString(); } }
[ "Soren.Kuula@gmail.com@0c024f78-a0ad-bb6b-004e-fa6eac797286" ]
Soren.Kuula@gmail.com@0c024f78-a0ad-bb6b-004e-fa6eac797286
12d4bfd8214b2f1508977037f7220947d3d43da4
49b19c7425c97ef5d7f404ebc6c5625534b0ab00
/src/main/java/com/engg/digitalorg/model/response/CardResponse.java
5a1e52ce58c494fa76d977ceb69cd73a50c0a8fc
[ "Unlicense" ]
permissive
digital-organizations/digital-org
5fcaed76cb929f1935be3f7b7cbc844119faa8f1
bae15533e544a86c6b0d366a9078dba24e5d3f24
refs/heads/master
2022-12-28T10:49:13.132609
2020-10-17T10:09:56
2020-10-17T10:09:56
293,007,113
0
0
null
null
null
null
UTF-8
Java
false
false
630
java
package com.engg.digitalorg.model.response; import lombok.Getter; import lombok.Setter; import java.util.Date; /** * The type Card response. */ @Getter @Setter public class CardResponse { private int id; private String title; private String description; private String original_url; private String short_url; private Date expire_date; private String tribe; private String team; private String component; private String created_by; private String updated_by; private Date created_date; private Date updated_date; private Boolean active; private Boolean hasAdmin; }
[ "abhay.shukla04@gmail.com" ]
abhay.shukla04@gmail.com
53c228ed3a8677a061659f1377fd44f6d7636acc
9d2ee73757055c9770307ad9cc74da8262a0332f
/src/main/java/com/amazon/product/api/amazonassosiate/generated/SimilarityLookupResponse.java
ea5d25b7da59bb325f2c799d0c647b62eef542bb
[]
no_license
meprabu/amazon-product-api
f048ff59232c5d8578686340bef19fb042900433
29374b97df3daa44e27cfa85eaceeed7bba97c58
refs/heads/master
2021-01-17T00:28:25.862716
2017-06-27T21:35:51
2017-06-27T21:35:51
95,491,962
0
0
null
null
null
null
UTF-8
Java
false
false
3,050
java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2017.06.26 at 02:30:40 PM CDT // package com.amazon.product.api.amazonassosiate.generated; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}OperationRequest" minOccurs="0"/> * &lt;element ref="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}Items" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "operationRequest", "items" }) @XmlRootElement(name = "SimilarityLookupResponse") public class SimilarityLookupResponse { @XmlElement(name = "OperationRequest") protected OperationRequest operationRequest; @XmlElement(name = "Items") protected List<Items> items; /** * Gets the value of the operationRequest property. * * @return * possible object is * {@link OperationRequest } * */ public OperationRequest getOperationRequest() { return operationRequest; } /** * Sets the value of the operationRequest property. * * @param value * allowed object is * {@link OperationRequest } * */ public void setOperationRequest(OperationRequest value) { this.operationRequest = value; } /** * Gets the value of the items property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the items property. * * <p> * For example, to add a new item, do as follows: * <pre> * getItems().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Items } * * */ public List<Items> getItems() { if (items == null) { items = new ArrayList<Items>(); } return this.items; } }
[ "Prabu.Jayapandian@dmh.ms.gov" ]
Prabu.Jayapandian@dmh.ms.gov
b72295cc5403eb31ab006764a7fe28bd6f3070f6
79bb3e98d79aa2cbabfcd90b36ec9782fa48e016
/jdo/identity/src/test/org/datanucleus/tests/ValueGeneratorTest.java
68ef0a0132fbd4909fc739c79f6d7372e4f294be
[ "Apache-2.0" ]
permissive
florianschmitt/tests
3739c9b890767f689675a0ed37820799615fed3f
b63c1a2517fcde681c9a79af005cf9e67e46776f
refs/heads/master
2020-12-25T12:18:20.123708
2014-07-30T19:39:05
2014-07-30T19:39:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
42,941
java
/********************************************************************** Copyright (c) 2004 Andy Jefferson and others. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Contributors : ... ***********************************************************************/ package org.datanucleus.tests; import java.util.ArrayList; import java.util.Collection; import java.util.HashSet; import java.util.Iterator; import java.util.List; import javax.jdo.JDOException; import javax.jdo.JDOHelper; import javax.jdo.JDOUserException; import javax.jdo.PersistenceManager; import javax.jdo.Query; import javax.jdo.Transaction; import org.datanucleus.PropertyNames; import org.datanucleus.tests.JDOPersistenceTestCase; import org.jpox.samples.valuegeneration.AUIDGeneratorItem; import org.jpox.samples.valuegeneration.IdentityGeneratorItem; import org.jpox.samples.valuegeneration.IdentityGeneratorItemContainer; import org.jpox.samples.valuegeneration.IdentityGeneratorItemNoField; import org.jpox.samples.valuegeneration.IdentityGeneratorItemSub1; import org.jpox.samples.valuegeneration.IdentityGeneratorItemSub2; import org.jpox.samples.valuegeneration.MaxGeneratorItem; import org.jpox.samples.valuegeneration.MixedGeneratorItem; import org.jpox.samples.valuegeneration.MixedGeneratorItemSub; import org.jpox.samples.valuegeneration.SequenceGeneratorItem; import org.jpox.samples.valuegeneration.TableGeneratorItem; import org.jpox.samples.valuegeneration.UUIDGeneratorItem; import org.jpox.samples.valuegeneration.UUIDHexGeneratorItem; import org.jpox.samples.valuegeneration.UUIDStringGeneratorItem; /** * Test the use of all forms of Id generators. * If a datastore doesn't support a particular id generator, the test is not run. */ public class ValueGeneratorTest extends JDOPersistenceTestCase { private static boolean initialised = false; public ValueGeneratorTest(String name) { super(name); if (!initialised) { addClassesToSchema(new Class[] { TableGeneratorItem.class, AUIDGeneratorItem.class, UUIDHexGeneratorItem.class, UUIDStringGeneratorItem.class, UUIDGeneratorItem.class, MaxGeneratorItem.class, MixedGeneratorItem.class, MixedGeneratorItemSub.class } ); if (storeMgr.supportsValueStrategy("sequence")) { addClassesToSchema(new Class[] { SequenceGeneratorItem.class } ); } if (storeMgr.supportsValueStrategy("identity")) { addClassesToSchema(new Class[] { IdentityGeneratorItem.class, IdentityGeneratorItemContainer.class, IdentityGeneratorItemNoField.class, IdentityGeneratorItemSub1.class, IdentityGeneratorItemSub2.class } ); } initialised = true; } } /** * Test the use of TablePoidGenerator. This is for all datastores. * Note : if this impacts on subsequent tests, comment it out. */ public void testTablePoidMultiThreadedNewPM() throws Exception { try { Thread[] t = new Thread[20]; TableInsert[] s = new TableInsert[t.length]; for (int i = 0; i < t.length; i++) { s[i] = new TableInsert(); t[i] = new Thread(s[i]); } for (int i = 0; i < t.length; i++) { t[i].start(); } for (int i = 0; i < t.length; i++) { t[i].join(); } for (int i = 0; i < t.length; i++) { assertEquals(s[i].getErrors().toString(), 0, s[i].getErrors().size()); } } finally { clean(TableGeneratorItem.class); } } private static class TableInsert implements Runnable { List errors = new ArrayList(); public TableInsert() { } public void run() { PersistenceManager pm = pmf.getPersistenceManager(); Transaction tx=pm.currentTransaction(); for (int i=0; i<5; i++) { try { tx.begin(); // Create a few objects. TableGeneratorItem item=null; item = new TableGeneratorItem("First item"); pm.makePersistent(item); item = new TableGeneratorItem("Second item"); pm.makePersistent(item); item = new TableGeneratorItem("Third item"); pm.makePersistent(item); item = new TableGeneratorItem("Fourth item"); pm.makePersistent(item); tx.commit(); } catch (JDOException e) { errors.add(e); LOG.error("Exception while performing insert in multi-thread test", e); } finally { if (tx.isActive()) { tx.rollback(); } } } } public List getErrors() { return errors; } } /** * Test the use of "table" generator. This is for all datastores. */ public void testTableGenerator() throws Exception { try { HashSet idSet = new HashSet(); Class idClass = null; PersistenceManager pm=pmf.getPersistenceManager(); Transaction tx=pm.currentTransaction(); try { tx.begin(); // Create a few objects. TableGeneratorItem item=null; item = new TableGeneratorItem("First item"); pm.makePersistent(item); idSet.add(new Integer(item.getIdentifier())); item = new TableGeneratorItem("Second item"); pm.makePersistent(item); idSet.add(new Integer(item.getIdentifier())); item = new TableGeneratorItem("Third item"); pm.makePersistent(item); idSet.add(new Integer(item.getIdentifier())); item = new TableGeneratorItem("Fourth item"); pm.makePersistent(item); idSet.add(new Integer(item.getIdentifier())); tx.commit(); idClass = JDOHelper.getObjectId(item).getClass(); } catch (JDOUserException e) { fail("Exception thrown during insert of objects in \"table\" generator test " + e.getMessage()); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } pm = pmf.getPersistenceManager(); tx = pm.currentTransaction(); try { tx.begin(); HashSet idSetCopy = new HashSet(idSet); // Retrieve the items Query q = pm.newQuery(pm.getExtent(TableGeneratorItem.class,true)); Collection c=(Collection)q.execute(); // Check on the number of items assertEquals("Number of TableGeneratorItem's retrieved is incorrect", 4, c.size()); Iterator iter = c.iterator(); while (iter.hasNext()) { Object o=iter.next(); if (TableGeneratorItem.Oid.class.equals(idClass)) { idSetCopy.remove(new Integer(((TableGeneratorItem)o).getIdentifier())); } } tx.commit(); if (TableGeneratorItem.Oid.class.equals(idClass)) { assertEquals("Wrong number of different IDs", 4, idSet.size()); assertTrue("Retrieved IDs did not match created IDs", 0 == idSetCopy.size()); } } catch (JDOUserException ue) { assertTrue("Exception thrown during test " + ue.getMessage(),false); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } } finally { // Clean out any created data clean(TableGeneratorItem.class); } } /** * Test the use of "auid" generator. This is for all datastores. **/ public void testAUIDGenerator() throws Exception { try { HashSet idSet = new HashSet(); Class idClass = null; PersistenceManager pm=pmf.getPersistenceManager(); Transaction tx=pm.currentTransaction(); try { tx.begin(); // Create a few objects. AUIDGeneratorItem item=null; item = new AUIDGeneratorItem("First item"); pm.makePersistent(item); idSet.add(item.getIdentifier()); item = new AUIDGeneratorItem("Second item"); pm.makePersistent(item); idSet.add(item.getIdentifier()); item = new AUIDGeneratorItem("Third item"); pm.makePersistent(item); idSet.add(item.getIdentifier()); item = new AUIDGeneratorItem("Fourth item"); pm.makePersistent(item); idSet.add(item.getIdentifier()); tx.commit(); idClass = JDOHelper.getObjectId(item).getClass(); } catch (JDOUserException e) { fail("Exception thrown during insert of objects in \"auid\" generator test " + e.getMessage()); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } pm = pmf.getPersistenceManager(); tx = pm.currentTransaction(); try { tx.begin(); HashSet idSetCopy = new HashSet(idSet); // Retrieve the items Query q=pm.newQuery(pm.getExtent(AUIDGeneratorItem.class,true)); Collection c=(Collection)q.execute(); // Check on the number of items assertTrue("Number of AUIDGeneratorItem's retrieved is incorrect (" + c.size() + ") : should have been 4",c.size() == 4); Iterator iter = c.iterator(); while (iter.hasNext()) { Object o=iter.next(); if (AUIDGeneratorItem.Oid.class.equals(idClass)) { idSetCopy.remove(((AUIDGeneratorItem)o).getIdentifier()); } } tx.commit(); if (AUIDGeneratorItem.Oid.class.equals(idClass)) { assertEquals("Wrong number of different IDs", 4, idSet.size()); assertTrue("Retrieved IDs did not match created IDs", 0 == idSetCopy.size()); } } catch (JDOUserException ue) { assertTrue("Exception thrown during test " + ue.getMessage(),false); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } } finally { clean(AUIDGeneratorItem.class); } } /** * Test the use of "uuid-string" generator. This is for all datastores. */ public void testUUIDStringGenerator() throws Exception { try { HashSet idSet = new HashSet(); Class idClass = null; PersistenceManager pm=pmf.getPersistenceManager(); Transaction tx=pm.currentTransaction(); try { tx.begin(); // Create a few objects. UUIDStringGeneratorItem item=null; item = new UUIDStringGeneratorItem("First item"); pm.makePersistent(item); idSet.add(item.getIdentifier()); item = new UUIDStringGeneratorItem("Second item"); pm.makePersistent(item); idSet.add(item.getIdentifier()); item = new UUIDStringGeneratorItem("Third item"); pm.makePersistent(item); idSet.add(item.getIdentifier()); item = new UUIDStringGeneratorItem("Fourth item"); pm.makePersistent(item); idSet.add(item.getIdentifier()); tx.commit(); idClass = JDOHelper.getObjectId(item).getClass(); } catch (JDOUserException e) { fail("Exception thrown during insert of objects in \"uuid-string\" generator test " + e.getMessage()); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } pm = pmf.getPersistenceManager(); tx = pm.currentTransaction(); try { tx.begin(); HashSet idSetCopy = new HashSet(idSet); // Retrieve the items Query q = pm.newQuery(pm.getExtent(UUIDStringGeneratorItem.class,true)); Collection c=(Collection)q.execute(); // Check on the number of items assertTrue("Number of UUIDStringGeneratorItem's retrieved is incorrect (" + c.size() + ") : should have been 4",c.size() == 4); Iterator iter = c.iterator(); while (iter.hasNext()) { Object o=iter.next(); if (UUIDStringGeneratorItem.Oid.class.equals(idClass)) { idSetCopy.remove(((UUIDStringGeneratorItem)o).getIdentifier()); } } tx.commit(); if (UUIDStringGeneratorItem.Oid.class.equals(idClass)) { assertEquals("Wrong number of different IDs", 4, idSet.size()); assertTrue("Retrieved IDs did not match created IDs", 0 == idSetCopy.size()); } } catch (JDOUserException ue) { assertTrue("Exception thrown during test " + ue.getMessage(),false); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } } finally { // Clean out any created data clean(UUIDStringGeneratorItem.class); } } /** * Test the use of "uuid-hex" generator. This is for all datastores. **/ public void testUUIDHexGenerator() throws Exception { try { HashSet idSet = new HashSet(); Class idClass = null; PersistenceManager pm=pmf.getPersistenceManager(); Transaction tx=pm.currentTransaction(); try { tx.begin(); // Create a few objects. UUIDHexGeneratorItem item=null; item = new UUIDHexGeneratorItem("First item"); pm.makePersistent(item); idSet.add(item.getIdentifier()); item = new UUIDHexGeneratorItem("Second item"); pm.makePersistent(item); idSet.add(item.getIdentifier()); item = new UUIDHexGeneratorItem("Third item"); pm.makePersistent(item); idSet.add(item.getIdentifier()); item = new UUIDHexGeneratorItem("Fourth item"); pm.makePersistent(item); idSet.add(item.getIdentifier()); tx.commit(); idClass = JDOHelper.getObjectId(item).getClass(); } catch (JDOUserException e) { fail("Exception thrown during insert of objects in \"uuid-hex\" generator test " + e.getMessage()); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } pm = pmf.getPersistenceManager(); tx = pm.currentTransaction(); try { tx.begin(); HashSet idSetCopy = new HashSet(idSet); // Retrieve the items Query q=pm.newQuery(pm.getExtent(UUIDHexGeneratorItem.class,true)); Collection c=(Collection)q.execute(); // Check on the number of items assertTrue("Number of UUIDHexGeneratorItem's retrieved is incorrect (" + c.size() + ") : should have been 4",c.size() == 4); Iterator iter = c.iterator(); while (iter.hasNext()) { Object o=iter.next(); if (UUIDHexGeneratorItem.Oid.class.equals(idClass)) { idSetCopy.remove(((UUIDHexGeneratorItem)o).getIdentifier()); } } tx.commit(); if (UUIDHexGeneratorItem.Oid.class.equals(idClass)) { assertEquals("Wrong number of different IDs", 4, idSet.size()); assertTrue("Retrieved IDs did not match created IDs", 0 == idSetCopy.size()); } } catch (JDOUserException ue) { assertTrue("Exception thrown during test " + ue.getMessage(),false); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } } finally { // Clean out any created data clean(UUIDHexGeneratorItem.class); } } /** * Test the use of "uuid" generator. This is for all datastores. */ public void testUUIDGenerator() throws Exception { try { HashSet idSet = new HashSet(); PersistenceManager pm=pmf.getPersistenceManager(); Transaction tx=pm.currentTransaction(); try { tx.begin(); // Create a few objects. UUIDGeneratorItem item=null; item = new UUIDGeneratorItem("First item"); pm.makePersistent(item); pm.flush(); idSet.add(pm.getObjectId(item)); item = new UUIDGeneratorItem("Second item"); pm.makePersistent(item); pm.flush(); idSet.add(pm.getObjectId(item)); item = new UUIDGeneratorItem("Third item"); pm.makePersistent(item); pm.flush(); idSet.add(pm.getObjectId(item)); item = new UUIDGeneratorItem("Fourth item"); pm.makePersistent(item); pm.flush(); idSet.add(pm.getObjectId(item)); tx.commit(); } catch (JDOUserException e) { fail("Exception thrown during insert of objects in \"uuid\" generator test " + e.getMessage()); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } pm = pmf.getPersistenceManager(); tx = pm.currentTransaction(); try { tx.begin(); HashSet idSetCopy = new HashSet(idSet); Query q = pm.newQuery(pm.getExtent(UUIDGeneratorItem.class, true)); Collection c=(Collection)q.execute(); assertEquals("Number of items is wrong", 4, c.size()); Iterator iter = c.iterator(); while (iter.hasNext()) { Object o=iter.next(); idSetCopy.remove(JDOHelper.getObjectId(o)); } tx.commit(); assertEquals("Wrong number of different IDs", 4, idSet.size()); assertTrue("Retrieved IDs did not match created IDs", 0 == idSetCopy.size()); } catch (JDOUserException ue) { fail("Exception thrown during test " + ue.getMessage()); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } } finally { // Clean out any created data clean(UUIDGeneratorItem.class); } } /** * Test the use of "max" generator. This is for all datastores. **/ public void testMaxGenerator() throws Exception { if (!storeMgr.supportsValueStrategy("max")) { return; } try { // must use PM connection, otherwise would cause deadlock getConfigurationForPMF(pmf).setProperty(PropertyNames.PROPERTY_VALUEGEN_TXN_ATTRIBUTE, "UsePM"); HashSet idSet = new HashSet(); Class idClass = null; PersistenceManager pm=pmf.getPersistenceManager(); Transaction tx=pm.currentTransaction(); try { tx.begin(); // Create a few objects. MaxGeneratorItem item=null; item = new MaxGeneratorItem("First item"); pm.makePersistent(item); pm.flush(); idSet.add(new Integer(item.getIdentifier())); item = new MaxGeneratorItem("Second item"); pm.makePersistent(item); pm.flush(); idSet.add(new Integer(item.getIdentifier())); item = new MaxGeneratorItem("Third item"); pm.makePersistent(item); pm.flush(); idSet.add(new Integer(item.getIdentifier())); item = new MaxGeneratorItem("Fourth item"); pm.makePersistent(item); pm.flush(); idSet.add(new Integer(item.getIdentifier())); idClass = JDOHelper.getObjectId(item).getClass(); tx.commit(); } catch (JDOUserException e) { fail("Exception thrown during insert of objects in \"max\" generator test " + e.getMessage()); } finally { if (tx.isActive()) { tx.rollback(); } getConfigurationForPMF(pmf).setProperty(PropertyNames.PROPERTY_VALUEGEN_TXN_ATTRIBUTE, "New"); pm.close(); } pm = pmf.getPersistenceManager(); tx = pm.currentTransaction(); try { tx.begin(); HashSet idSetCopy = new HashSet(idSet); // Retrieve the items Query q=pm.newQuery(pm.getExtent(MaxGeneratorItem.class,true)); Collection c=(Collection)q.execute(); // Check on the number of items assertTrue("Number of MaxGeneratorItem's retrieved is incorrect (" + c.size() + ") : should have been 4",c.size() == 4); Iterator iter = c.iterator(); while (iter.hasNext()) { Object o=iter.next(); if (MaxGeneratorItem.Oid.class.equals(idClass)) { idSetCopy.remove(new Integer(((MaxGeneratorItem)o).getIdentifier())); } } tx.commit(); if (MaxGeneratorItem.Oid.class.equals(idClass)) { assertEquals("Wrong number of different IDs", 4, idSet.size()); assertTrue("Retrieved IDs did not match created IDs", 0 == idSetCopy.size()); } } catch (JDOUserException ue) { assertTrue("Exception thrown during test " + ue.getMessage(),false); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } } finally { // Clean out any data created clean(MaxGeneratorItem.class); } } /** * Test the use of "sequence" generator. Run if supported by the datastore. */ public void testSequenceGenerator() throws Exception { if (!storeMgr.supportsValueStrategy("sequence")) { // Lets just say it passed :-) return; } try { HashSet idSet = new HashSet(); Class idClass = null; PersistenceManager pm=pmf.getPersistenceManager(); Transaction tx=pm.currentTransaction(); try { tx.begin(); // Create a few objects. SequenceGeneratorItem item=null; item = new SequenceGeneratorItem("First item"); pm.makePersistent(item); pm.flush(); idSet.add(new Integer(item.getIdentifier())); item = new SequenceGeneratorItem("Second item"); pm.makePersistent(item); pm.flush(); idSet.add(new Integer(item.getIdentifier())); item = new SequenceGeneratorItem("Third item"); pm.makePersistent(item); pm.flush(); idSet.add(new Integer(item.getIdentifier())); item = new SequenceGeneratorItem("Fourth item"); pm.makePersistent(item); pm.flush(); idSet.add(new Integer(item.getIdentifier())); idClass = JDOHelper.getObjectId(item).getClass(); tx.commit(); } catch (JDOUserException e) { fail("Exception thrown during insert of objects in \"sequence\" generator test " + e.getMessage()); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } pm = pmf.getPersistenceManager(); tx = pm.currentTransaction(); try { tx.begin(); HashSet idSetCopy = new HashSet(idSet); // Retrieve the items Query q=pm.newQuery(pm.getExtent(SequenceGeneratorItem.class,true)); Collection c=(Collection)q.execute(); // Check on the number of items assertTrue("Number of SequenceGeneratorItem's retrieved is incorrect (" + c.size() + ") : should have been 4",c.size() == 4); Iterator iter = c.iterator(); while (iter.hasNext()) { Object o=iter.next(); if (SequenceGeneratorItem.Oid.class.equals(idClass)) { idSetCopy.remove(new Integer(((SequenceGeneratorItem)o).getIdentifier())); } } tx.commit(); if (SequenceGeneratorItem.Oid.class.equals(idClass)) { assertEquals("Wrong number of different IDs", 4, idSet.size()); assertTrue("Retrieved IDs did not match created IDs", 0 == idSetCopy.size()); } } catch (JDOUserException ue) { assertTrue("Exception thrown during test " + ue.getMessage(),false); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } } finally { // Clean out any created data clean(SequenceGeneratorItem.class); } } /** * Test the use of "identity" generator. * Only for datastores that support autoassign/identity strategies. */ public void testIdentityGenerator() throws Exception { if (!storeMgr.supportsValueStrategy("identity")) { // Adapter doesnt support autoincrement so lets just say it passed :-) return; } HashSet idSet = new HashSet(); Class idClass = null; PersistenceManager pm=pmf.getPersistenceManager(); Transaction tx=pm.currentTransaction(); try { tx.begin(); // Create a few objects. IdentityGeneratorItem item=null; item = new IdentityGeneratorItem("First item"); pm.makePersistent(item); pm.flush(); idSet.add(new Integer(item.getIdentifier())); item = new IdentityGeneratorItem("Second item"); pm.makePersistent(item); pm.flush(); idSet.add(new Integer(item.getIdentifier())); item = new IdentityGeneratorItem("Third item"); pm.makePersistent(item); pm.flush(); idSet.add(new Integer(item.getIdentifier())); item = new IdentityGeneratorItem("Fourth item"); pm.makePersistent(item); pm.flush(); idSet.add(new Integer(item.getIdentifier())); idClass = JDOHelper.getObjectId(item).getClass(); tx.commit(); } catch (JDOUserException e) { fail("Exception thrown during insert of objects with \"identity\" generator : " + e.getMessage()); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } pm = pmf.getPersistenceManager(); tx = pm.currentTransaction(); try { tx.begin(); HashSet idSetCopy = new HashSet(idSet); // Retrieve the items Query q=pm.newQuery(pm.getExtent(IdentityGeneratorItem.class,true)); Collection c=(Collection)q.execute(); // Check on the number of items assertTrue("Number of IdentityGeneratorItem's retrieved is incorrect (" + c.size() + ") : should have been 4",c.size() == 4); Iterator iter = c.iterator(); while (iter.hasNext()) { Object o=iter.next(); if (IdentityGeneratorItem.Oid.class.equals(idClass)) { idSetCopy.remove(new Integer(((IdentityGeneratorItem)o).getIdentifier())); } } tx.commit(); if (IdentityGeneratorItem.Oid.class.equals(idClass)) { assertEquals("Wrong number of different IDs", 4, idSet.size()); assertTrue("Retrieved IDs did not match created IDs", 0 == idSetCopy.size()); } } catch (JDOUserException ue) { assertTrue("Exception thrown during test " + ue.getMessage(),false); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); clean(IdentityGeneratorItem.class); } } /** * Test the use of AutoIncrementGenerator, where there are no other fields in the class. * Only for use with adapters supporting autoassign/identity strategies. **/ public void testAutoIncrementWithNoOtherFields() throws Exception { if (!storeMgr.supportsValueStrategy("identity")) { // Adapter doesnt support autoincrement so let's just say it passed :-) return; } try { PersistenceManager pm = pmf.getPersistenceManager(); Transaction tx = pm.currentTransaction(); try { tx.begin(); // Create a few objects so we test the persistence IdentityGeneratorItemNoField item = null; item = new IdentityGeneratorItemNoField(); pm.makePersistent(item); item = new IdentityGeneratorItemNoField(); pm.makePersistent(item); tx.commit(); } catch (Exception e) { fail("Exception thrown during insert of objects with \"identity\" with no other fields " + e.getMessage()); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } } finally { clean(IdentityGeneratorItemNoField.class); } } /** * Test of autoincrementing an inheritance tree. The base class will be autoincremented * and subclasses will just take the id from the base. * Only for use with adapters supporting autoassign/identity strategies. */ public void testAutoIncrementWithInheritance() throws Exception { if (!storeMgr.supportsValueStrategy("identity")) { // Adapter doesnt support autoincrement so let's just say it passed :-) return; } PersistenceManager pm = pmf.getPersistenceManager(); Transaction tx = pm.currentTransaction(); try { tx.begin(); IdentityGeneratorItem item1 = new IdentityGeneratorItem("First"); IdentityGeneratorItem item2 = new IdentityGeneratorItem("Second"); IdentityGeneratorItem item3 = new IdentityGeneratorItem("Third"); IdentityGeneratorItemSub1 sub1 = new IdentityGeneratorItemSub1("Fourth", "A", "B"); IdentityGeneratorItemSub2 sub2 = new IdentityGeneratorItemSub2("Fifth", "C", "D"); IdentityGeneratorItemContainer c = new IdentityGeneratorItemContainer(new IdentityGeneratorItem[]{item1, item2, item3, sub1, sub2}); pm.makePersistent(c); tx.commit(); tx.begin(); Query q = pm.newQuery(IdentityGeneratorItem.class); List results = (List)q.execute(); assertTrue(results.size() == 5); boolean sub1Exists = false; boolean sub2Exists = false; Iterator iter = results.iterator(); while (iter.hasNext()) { IdentityGeneratorItem item = (IdentityGeneratorItem)iter.next(); if (item.getName().equals("Fourth") && item instanceof IdentityGeneratorItemSub1) { sub1Exists = true; } else if (item.getName().equals("Fifth") && item instanceof IdentityGeneratorItemSub2) { sub2Exists = true; } } assertTrue("Sub1 object not found", sub1Exists); assertTrue("Sub2 object not found", sub2Exists); tx.commit(); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); // Clean out any created data clean(IdentityGeneratorItemContainer.class); clean(IdentityGeneratorItemSub1.class); clean(IdentityGeneratorItemSub2.class); clean(IdentityGeneratorItem.class); } } /** * Test the use of multiple "value-strategy" fields with inheritance */ public void testMixedGeneratorInherited() throws Exception { try { PersistenceManager pm=pmf.getPersistenceManager(); Transaction tx=pm.currentTransaction(); try { getConfigurationForPMF(pmf).setProperty(PropertyNames.PROPERTY_VALUEGEN_TXN_ATTRIBUTE, "UsePM"); tx.begin(); // Create a few objects. MixedGeneratorItemSub item = null; item = new MixedGeneratorItemSub(); pm.makePersistent(item); item = new MixedGeneratorItemSub(); pm.makePersistent(item); item = new MixedGeneratorItemSub(); pm.makePersistent(item); item = new MixedGeneratorItemSub(); pm.makePersistent(item); tx.commit(); JDOHelper.getObjectId(item).getClass(); } catch (JDOUserException e) { fail("Exception thrown during insert of objects in mixed generators test " + e.getMessage()); } finally { if (tx.isActive()) { tx.rollback(); } getConfigurationForPMF(pmf).setProperty(PropertyNames.PROPERTY_VALUEGEN_TXN_ATTRIBUTE, "New"); pm.close(); } pm = pmf.getPersistenceManager(); tx = pm.currentTransaction(); try { tx.begin(); // Retrieve the items Query q=pm.newQuery(pm.getExtent(MixedGeneratorItemSub.class,true)); Collection c=(Collection)q.execute(); // Check on the number of items assertTrue("Number of MixedGeneratorItemSub's retrieved is incorrect (" + c.size() + ") : should have been 4",c.size() == 4); Iterator iter = c.iterator(); while (iter.hasNext()) { iter.next(); } tx.commit(); } catch (JDOUserException ue) { assertTrue("Exception thrown during test " + ue.getMessage(),false); } finally { if (tx.isActive()) { tx.rollback(); } pm.close(); } } finally { // Clean out any data we have created clean(MixedGeneratorItemSub.class); } } }
[ "andy@datanucleus.org" ]
andy@datanucleus.org
9e5fe27cbc231cea9df28813b778eea88fde6170
2d53d6f8d3e0e389bba361813e963514fdef3950
/Sql_injection/s01/CWE89_SQL_Injection__console_readLine_executeBatch_51b.java
f43b396b661508f0f8b4319618f7dc8d097dde3d
[]
no_license
apobletts/ml-testing
6a1b95b995fdfbdd68f87da5f98bd969b0457234
ee6bb9fe49d9ec074543b7ff715e910110bea939
refs/heads/master
2021-05-10T22:55:57.250937
2018-01-26T20:50:15
2018-01-26T20:50:15
118,268,553
0
2
null
null
null
null
UTF-8
Java
false
false
7,590
java
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE89_SQL_Injection__console_readLine_executeBatch_51b.java Label Definition File: CWE89_SQL_Injection.label.xml Template File: sources-sinks-51b.tmpl.java */ /* * @description * CWE: 89 SQL Injection * BadSource: console_readLine Read data from the console using readLine() * GoodSource: A hardcoded string * Sinks: executeBatch * GoodSink: Use prepared statement and executeBatch (properly) * BadSink : data concatenated into SQL statement used in executeBatch(), which could result in SQL Injection * Flow Variant: 51 Data flow: data passed as an argument from one function to another in different classes in the same package * * */ package testcases.CWE89_SQL_Injection.s01; import testcasesupport.*; import javax.servlet.http.*; import java.sql.*; import java.util.logging.Level; public class CWE89_SQL_Injection__console_readLine_executeBatch_51b { public void badSink(String data ) throws Throwable { if (data != null) { String names[] = data.split("-"); int successCount = 0; Connection dbConnection = null; Statement sqlStatement = null; try { dbConnection = IO.getDBConnection(); sqlStatement = dbConnection.createStatement(); for (int i = 0; i < names.length; i++) { /* PRAETORIAN: data concatenated into SQL statement used in executeBatch(), which could result in SQL Injection */ sqlStatement.addBatch("update users set hitcount=hitcount+1 where name='" + names[i] + "'"); } int resultsArray[] = sqlStatement.executeBatch(); for (int i = 0; i < names.length; i++) { if (resultsArray[i] > 0) { successCount++; } } IO.writeLine("Succeeded in " + successCount + " out of " + names.length + " queries."); } catch (SQLException exceptSql) { IO.logger.log(Level.WARNING, "Error getting database connection", exceptSql); } finally { try { if (sqlStatement != null) { sqlStatement.close(); } } catch (SQLException exceptSql) { IO.logger.log(Level.WARNING, "Error closing Statament", exceptSql); } try { if (dbConnection != null) { dbConnection.close(); } } catch (SQLException exceptSql) { IO.logger.log(Level.WARNING, "Error closing Connection", exceptSql); } } } } /* goodG2B() - use goodsource and badsink */ public void goodG2BSink(String data ) throws Throwable { if (data != null) { String names[] = data.split("-"); int successCount = 0; Connection dbConnection = null; Statement sqlStatement = null; try { dbConnection = IO.getDBConnection(); sqlStatement = dbConnection.createStatement(); for (int i = 0; i < names.length; i++) { /* POTENTIAL FLAW: data concatenated into SQL statement used in executeBatch(), which could result in SQL Injection */ sqlStatement.addBatch("update users set hitcount=hitcount+1 where name='" + names[i] + "'"); } int resultsArray[] = sqlStatement.executeBatch(); for (int i = 0; i < names.length; i++) { if (resultsArray[i] > 0) { successCount++; } } IO.writeLine("Succeeded in " + successCount + " out of " + names.length + " queries."); } catch (SQLException exceptSql) { IO.logger.log(Level.WARNING, "Error getting database connection", exceptSql); } finally { try { if (sqlStatement != null) { sqlStatement.close(); } } catch (SQLException exceptSql) { IO.logger.log(Level.WARNING, "Error closing Statament", exceptSql); } try { if (dbConnection != null) { dbConnection.close(); } } catch (SQLException exceptSql) { IO.logger.log(Level.WARNING, "Error closing Connection", exceptSql); } } } } /* goodB2G() - use badsource and goodsink */ public void goodB2GSink(String data ) throws Throwable { if (data != null) { String names[] = data.split("-"); int successCount = 0; Connection dbConnection = null; PreparedStatement sqlStatement = null; try { /* FIX: Use prepared statement and executeBatch (properly) */ dbConnection = IO.getDBConnection(); sqlStatement = dbConnection.prepareStatement("update users set hitcount=hitcount+1 where name=?"); for (int i = 0; i < names.length; i++) { sqlStatement.setString(1, names[i]); sqlStatement.addBatch(); } int resultsArray[] = sqlStatement.executeBatch(); for (int i = 0; i < names.length; i++) { if (resultsArray[i] > 0) { successCount++; } } IO.writeLine("Succeeded in " + successCount + " out of " + names.length + " queries."); } catch (SQLException exceptSql) { IO.logger.log(Level.WARNING, "Error getting database connection", exceptSql); } finally { try { if (sqlStatement != null) { sqlStatement.close(); } } catch (SQLException exceptSql) { IO.logger.log(Level.WARNING, "Error closing PreparedStatement", exceptSql); } try { if (dbConnection != null) { dbConnection.close(); } } catch (SQLException exceptSql) { IO.logger.log(Level.WARNING, "Error closing Connection", exceptSql); } } } } }
[ "anna.pobletts@praetorian.com" ]
anna.pobletts@praetorian.com
7f576d38c9890c1b30b6be932ce91c06d2901e05
25154552c6ab8321be60e30799fe372426b5f3e3
/src/com/zzg/tracing/utils/TextUtils.java
cd9b83238c0c93c7ae46e06a0f88c8b4a7b28127
[]
no_license
androidobject/tracing_web
d18d89a20ad9e9ce76d72dfc489f7b0802fce089
3582f042b04de8698d7529fcab773a73b6438f3a
refs/heads/master
2020-03-30T01:25:24.052952
2018-11-07T09:04:50
2018-11-07T09:04:50
150,575,123
0
0
null
null
null
null
UTF-8
Java
false
false
287
java
package com.zzg.tracing.utils; public class TextUtils { /** * 判断是否为null * @param o * @return */ public static boolean isEmpty(String o) { if (o == null || "".equals(o)) { return true; } return false; } }
[ "zzg19910406@163.com" ]
zzg19910406@163.com
0179fd318209729b97ccdc5247ef603971bd27b3
62a627f7069521c8bdc542042494f983c9c32d51
/src/main/java/database/Database.java
c80232de28da94cc0e2fce7c7be6bf7a6d5540ff
[ "MIT" ]
permissive
NeusoftWADA/KnowledgeBase
61be995476af698619120b8efc8c65d71eab9225
137862bb6f55c84a6d6554350930b60f2471adfd
refs/heads/main
2023-02-27T05:30:50.276125
2021-02-07T09:36:52
2021-02-07T09:36:52
331,538,399
0
0
MIT
2021-01-27T09:46:02
2021-01-21T06:39:51
null
UTF-8
Java
false
false
432
java
package database; import java.sql.*; public class Database { Connection connection = null; public Connection getConnection() throws ClassNotFoundException, SQLException { Class.forName("com.mysql.jdbc.Driver"); return this.connection = DriverManager.getConnection("jdbc:mysql://172.17.8.19:3306/myk1?useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=UTC", "myk1", "myk1"); } }
[ "qiuqianaw@163.com" ]
qiuqianaw@163.com
e08dbf65895f60042f415e53489ff2eab526fcb0
aa896a99d9e84d1594880905cc15bfc35776c8f2
/app/src/main/java/com/xhe/refreshrecyclerview/MyScrollView.java
de9e375a4b96d57ff9fc3db62b910274fc129434
[]
no_license
hexiang1993/RefreshRecyclerView
1dbb95484d427b0cb7e2c8968b9aa1b9c165b302
af3913f8d24d18586e18fab04218fcbf4937c213
refs/heads/master
2020-03-27T17:43:16.742146
2019-01-02T05:37:53
2019-01-02T05:37:53
146,869,307
0
0
null
null
null
null
UTF-8
Java
false
false
1,507
java
package com.xhe.refreshrecyclerview; import android.content.Context; import android.util.AttributeSet; import android.view.MotionEvent; import android.view.ViewConfiguration; import android.widget.ScrollView; /** * Created by xhe on 2016/8/1. * 屏蔽 Listview/GridView/RecycleView的滑动事件 */ public class MyScrollView extends ScrollView { private int downX; private int downY; private int mTouchSlop; public MyScrollView(Context context) { super(context); mTouchSlop = ViewConfiguration.get(context).getScaledTouchSlop(); } public MyScrollView(Context context, AttributeSet attrs) { super(context, attrs); mTouchSlop = ViewConfiguration.get(context).getScaledTouchSlop(); } public MyScrollView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); mTouchSlop = ViewConfiguration.get(context).getScaledTouchSlop(); } @Override public boolean onInterceptTouchEvent(MotionEvent e) { int action = e.getAction(); switch (action) { case MotionEvent.ACTION_DOWN: downX = (int) e.getRawX(); downY = (int) e.getRawY(); break; case MotionEvent.ACTION_MOVE: int moveY = (int) e.getRawY(); if (Math.abs(moveY - downY) > mTouchSlop) { return true; } } return super.onInterceptTouchEvent(e); } }
[ "1054733821@qq.com" ]
1054733821@qq.com
3a2fc841b1f210fb7dd88889ba5913e63ca8bb6f
c09b2a634dabfc458f1d0aae9bf792b4d3bf6a3a
/Udemy/build_an_online_bank_with_java_angular2_spring_and_more/UserFront/src/main/java/com/userfront/config/SecurityConfig.java
bd564472c9749ad998fd7e3e25909e732230eaf6
[]
no_license
kadensungbincho/Online_Lectures
539bed24e344a6815e090cd0bda194db9fa801cd
21afbfe9c4c41a9041ffedaf51c6c980c6e743bb
refs/heads/master
2023-01-12T18:59:05.128000
2022-02-20T13:04:45
2022-02-20T13:04:45
124,209,787
2
1
null
2023-01-07T20:04:16
2018-03-07T09:11:09
Jupyter Notebook
UTF-8
Java
false
false
2,935
java
package com.userfront.config; import java.security.SecureRandom; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.env.Environment; import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder; import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; import org.springframework.security.web.util.matcher.AntPathRequestMatcher; import com.userfront.service.UserServiceImpl.UserSecurityService; @Configuration @EnableWebSecurity @EnableGlobalMethodSecurity(prePostEnabled=true) public class SecurityConfig extends WebSecurityConfigurerAdapter { @Autowired private Environment env; @Autowired private UserSecurityService userSecurityService; private static final String SALT = "salt"; // Salt should be protected carefully @Bean public BCryptPasswordEncoder passwordEncoder() { return new BCryptPasswordEncoder(12, new SecureRandom(SALT.getBytes())); } private static final String[] PUBLIC_MATCHERS = { "/webjars/**", "/css/**", "/js/**", "/static/**", "/images/**", "/", "/about/**", "/contact/**", "/error/**/*", "/console/**", "/signup" }; @Override protected void configure(HttpSecurity http) throws Exception { http .authorizeRequests(). // antMatchers("/**"). antMatchers(PUBLIC_MATCHERS). permitAll().anyRequest().authenticated(); http .csrf().disable().cors().disable() .formLogin().failureUrl("/index?error").defaultSuccessUrl("/userFront").loginPage("/index").permitAll() .and() .logout().logoutRequestMatcher(new AntPathRequestMatcher("/logout")).logoutSuccessUrl("/index?logout").deleteCookies("remember-me").permitAll() .and() .rememberMe(); } @Autowired public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception { // auth.inMemoryAuthentication().withUser("user").password("password").roles("USER"); //This is in-memory authentication auth.userDetailsService(userSecurityService).passwordEncoder(passwordEncoder()); } }
[ "kadensungbincho@gmail.com" ]
kadensungbincho@gmail.com
2807464bf02db96fa7856317a51df60e8d89da8a
2ff3b3a8d1afa6ee26c8608f722617db20ee4e11
/com.iis.sample1/src/main/java/demo/BarChartDemo11.java
b697e0a5fcb7fb372e7903ff806da24fae45f780
[]
no_license
reeg33/playground
160dfe6d66d88a0737202f4156d6e5fd98e66ace
af1d3a48859d9d0d25b19857de9bd1a9f17172d8
refs/heads/master
2020-03-11T15:01:28.124350
2018-04-18T14:16:02
2018-04-18T14:16:02
130,072,162
1
0
null
2018-04-18T14:08:17
2018-04-18T14:08:17
null
UTF-8
Java
false
false
5,198
java
/* ------------------- * BarChartDemo11.java * ------------------- * (C) Copyright 2006-2009, by Object Refinery Limited. * */ package demo; import java.awt.Color; import java.awt.Dimension; import java.awt.Font; import java.awt.GradientPaint; import java.text.DecimalFormat; import javax.swing.JPanel; import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartPanel; import org.jfree.chart.ChartUtilities; import org.jfree.chart.JFreeChart; import org.jfree.chart.axis.NumberAxis; import org.jfree.chart.labels.StandardCategoryToolTipGenerator; import org.jfree.chart.plot.CategoryPlot; import org.jfree.chart.plot.PlotOrientation; import org.jfree.chart.renderer.category.BarRenderer; import org.jfree.chart.title.TextTitle; import org.jfree.data.category.CategoryDataset; import org.jfree.data.category.DefaultCategoryDataset; import org.jfree.ui.ApplicationFrame; import org.jfree.ui.RectangleEdge; import org.jfree.ui.RefineryUtilities; /** * A bar chart showing licence statistics for open source projects listed * at Freshmeat. */ public class BarChartDemo11 extends ApplicationFrame { /** * Creates a new demo instance. * * @param title the frame title. */ public BarChartDemo11(String title) { super(title); JPanel chartPanel = createDemoPanel(); chartPanel.setPreferredSize(new Dimension(500, 270)); setContentPane(chartPanel); } /** * Returns a sample dataset. * * @return The dataset. */ private static CategoryDataset createDataset() { DefaultCategoryDataset dataset = new DefaultCategoryDataset(); dataset.addValue(23192, "S1", "GNU General Public Licence"); dataset.addValue(3157, "S1", "GNU Lesser General Public Licence"); dataset.addValue(1506, "S1", "BSD Licence (Original)"); dataset.addValue(1283, "S1", "BSD Licence (Revised)"); dataset.addValue(738, "S1", "MIT/X Consortium Licence"); dataset.addValue(630, "S1", "Artistic Licence"); dataset.addValue(585, "S1", "Public Domain"); dataset.addValue(349, "S1", "Apache Licence 2.0"); dataset.addValue(317, "S1", "Apache Licence"); dataset.addValue(309, "S1", "Mozilla Public Licence"); dataset.addValue(918, "S1", "Other"); return dataset; } /** * Creates a sample chart. * * @param dataset the dataset. * * @return The chart. */ private static JFreeChart createChart(CategoryDataset dataset) { // create the chart... JFreeChart chart = ChartFactory.createBarChart( "Open Source Projects By Licence", // chart title "Licence", // domain axis label "Project Count", // range axis label dataset, // data PlotOrientation.HORIZONTAL, // orientation false, // include legend true, // tooltips? false // URLs? ); TextTitle source = new TextTitle( "Source: Freshmeat (http://www.freshmeat.net/)", new Font("Dialog", Font.PLAIN, 10)); source.setPosition(RectangleEdge.BOTTOM); chart.addSubtitle(source); ChartUtilities.applyCurrentTheme(chart); // get a reference to the plot for further customisation... CategoryPlot plot = (CategoryPlot) chart.getPlot(); plot.setDomainGridlinesVisible(true); plot.getDomainAxis().setMaximumCategoryLabelWidthRatio(0.8f); // set the range axis to display integers only... NumberAxis rangeAxis = (NumberAxis) plot.getRangeAxis(); rangeAxis.setStandardTickUnits(NumberAxis.createIntegerTickUnits()); // disable bar outlines... BarRenderer renderer = (BarRenderer) plot.getRenderer(); renderer.setDrawBarOutline(false); StandardCategoryToolTipGenerator tt = new StandardCategoryToolTipGenerator("{1}: {2} projects", new DecimalFormat("0")); renderer.setBaseToolTipGenerator(tt); // set up gradient paints for series... GradientPaint gp0 = new GradientPaint(0.0f, 0.0f, Color.blue, 0.0f, 0.0f, new Color(0, 0, 64)); renderer.setSeriesPaint(0, gp0); return chart; } /** * Creates a panel for the demo (used by SuperDemo.java). * * @return A panel. */ public static JPanel createDemoPanel() { JFreeChart chart = createChart(createDataset()); return new ChartPanel(chart); } /** * Starting point for the demonstration application. * * @param args ignored. */ public static void main(String[] args) { BarChartDemo11 demo = new BarChartDemo11( "JFreeChart: BarChartDemo11.java"); demo.pack(); RefineryUtilities.centerFrameOnScreen(demo); demo.setVisible(true); } }
[ "narasimhamg@gmail.com" ]
narasimhamg@gmail.com
455879551f0aa9730cc2f048d766ad158a7efb0e
4be59abae3103e60e5d3b25a399281c55de6a03b
/business/src/main/java/com/dahuamiao/business/controller/BusinessController.java
9f3691f1cb10faeb370c116b3c0cb55cff9cf90c
[]
no_license
KindHunter/seata-demo
94b83d73139e2288224e6cc0baf7a9f4ea419340
67a8309ee9617193c645f44db9d61791ebbfb171
refs/heads/master
2023-01-08T01:33:20.044912
2020-11-09T07:32:48
2020-11-09T07:32:48
310,458,984
0
0
null
null
null
null
UTF-8
Java
false
false
1,568
java
package com.dahuamiao.business.controller; import com.dahuamiao.business.service.BusinessService; import com.dahuamiao.common.dto.BusinessDTO; import com.dahuamiao.common.response.ObjectResponse; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * @program: seata-test * @description: * @author: wangJun * @create: 2020-11-04 11:07 **/ @RestController @RequestMapping("business") public class BusinessController { private static final Logger LOGGER = LoggerFactory.getLogger(BusinessController.class); @Autowired private BusinessService businessService; /** * 模拟用户购买商品下单业务逻辑流程 * @Param: * @Return: */ @PostMapping("/buy") ObjectResponse handleBusiness(@RequestBody BusinessDTO businessDTO){ LOGGER.info("请求参数:{}",businessDTO.toString()); return businessService.handleBusiness(businessDTO); } /** * 模拟用户购买商品下单业务逻辑流程 * @Param: * @Return: */ @PostMapping("/buy2") ObjectResponse handleBusiness2(@RequestBody BusinessDTO businessDTO){ LOGGER.info("请求参数:{}",businessDTO.toString()); return businessService.handleBusiness2(businessDTO); } }
[ "sevenwjun@gmail.com" ]
sevenwjun@gmail.com
9bbfd772e82a9af1049c191d85c54aea14208a98
6719b791d6e1b42187516b3f190f8a84f1ba590a
/messerver/src/main/java/com/wz/messerver/dataobject/Testdata.java
a29cb85d474529f8bfe330793c634dc1f051a1fe
[]
no_license
WeiMengDlink/dview8
eabba40bd73c97d51c5dba158ceb88097d9723fb
a2cf7dd2e2dedc3ac688971a77fd04e881400f1b
refs/heads/master
2020-03-19T09:20:01.733336
2018-06-08T10:09:20
2018-06-08T10:09:20
null
0
0
null
null
null
null
UTF-8
Java
false
false
412
java
/*package com.wz.messerver.dataobject; import lombok.Data; import org.springframework.data.annotation.Id; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import java.util.Date; @Data @Entity public class Testdata { @Id @GeneratedValue private Integer id; private String name; private String ipAddress; private Date createTime; private Date updateTime; } */
[ "81631420@qq.com" ]
81631420@qq.com
69c78777ba4376b67e7f4f68b328b2f3a391ed71
280314e9f507ae049480d0d8be0fe1538fc12f74
/vault-core/src/test/java/org/apache/jackrabbit/vault/packaging/integration/TestArchiveExtraction.java
8e85e2f30f257532bf6de31bfb5bcc5296b32a93
[ "Apache-2.0", "W3C" ]
permissive
leachuk/jackrabbit-filevault
427a9234c20f5a1b51ae4fb48905161ea9ce2cc4
fa8fe8fcdc60876699401b3ede371e0bd31eaa92
refs/heads/trunk
2020-06-01T23:03:30.785483
2019-06-21T00:14:07
2019-06-21T00:14:07
190,960,143
0
1
Apache-2.0
2019-06-21T00:14:08
2019-06-09T03:32:31
Java
UTF-8
Java
false
false
7,585
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.jackrabbit.vault.packaging.integration; import java.io.IOException; import java.util.Arrays; import java.util.Collection; import java.util.HashSet; import java.util.Set; import javax.jcr.ItemExistsException; import javax.jcr.RepositoryException; import org.apache.jackrabbit.vault.fs.io.Archive; import org.apache.jackrabbit.vault.fs.io.ImportOptions; import org.apache.jackrabbit.vault.fs.io.ZipStreamArchive; import org.apache.jackrabbit.vault.packaging.JcrPackage; import org.apache.jackrabbit.vault.packaging.PackageException; import org.apache.jackrabbit.vault.packaging.PackageId; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; /** * Test cases for shallow package installation */ @RunWith(Parameterized.class) public class TestArchiveExtraction extends IntegrationTestBase { @Parameterized.Parameters public static Collection<Object[]> data() { return Arrays.asList(new Object[][]{{0, false}, {1000, false}, {1024*1024, true}}); } private final int streamBufferSize; private final boolean isBuffered; public TestArchiveExtraction(int streamBufferSize, boolean isBuffered) { this.streamBufferSize = streamBufferSize; this.isBuffered = isBuffered; } @Override public Archive getFileArchive(String name) { if (streamBufferSize > 0) { try { return super.getStreamArchive(name, streamBufferSize); } catch (IOException e) { throw new IllegalArgumentException(e); } } return super.getFileArchive(name); } private void validateArchive(Archive a) { if (a instanceof ZipStreamArchive) { assertEquals("isBuffered", isBuffered, ((ZipStreamArchive) a).isBuffered()); } } @Test public void testDefaultArchiveInstall() throws RepositoryException, IOException, PackageException { Archive a = getFileArchive("testpackages/tmp.zip"); ImportOptions opts = getDefaultOptions(); PackageId[] ids = packMgr.extract(a, opts, true); validateArchive(a); assertEquals(1, ids.length); assertEquals(TMP_PACKAGE_ID, ids[0]); assertNodeExists("/tmp/foo/bar/tobi"); assertPackageNodeExists(TMP_PACKAGE_ID); // check if size is 0 long size = admin.getProperty(getInstallationPath(TMP_PACKAGE_ID) + "/jcr:content/jcr:data").getLength(); assertEquals("package binary size", 0, size); JcrPackage pack = packMgr.open(ids[0]); assertTrue("Package should be marked as installed", pack.isInstalled()); assertTrue("Package should be marked as empty", pack.isEmpty()); assertNull("Package should not have a snapshot", pack.getSnapshot()); assertNotNull("Package should have a definition", pack.getDefinition()); assertNotNull("Package should have a definition creation date", pack.getDefinition().getCreated()); assertNotNull("Package should have properties", pack.getPackage().getProperties()); assertNotNull("Package should have a properties creation date", pack.getPackage().getCreated()); try { pack.install(getDefaultOptions()); fail("re-install of a hollow package should fail."); } catch (IllegalStateException e) { // ok } } @Test public void testDefaultArchiveInstallFailsWithoutReplace() throws RepositoryException, IOException, PackageException { uploadPackage("testpackages/tmp.zip"); Archive a = getFileArchive("testpackages/tmp.zip"); ImportOptions opts = getDefaultOptions(); try { packMgr.extract(a, opts, false); fail("extract w/o replace should fail."); } catch (ItemExistsException e) { // expected } catch (PackageException e) { // expected } } @Test public void testDefaultArchiveInstallCanReplace() throws RepositoryException, IOException, PackageException { uploadPackage("testpackages/tmp.zip"); Archive a = getFileArchive("testpackages/tmp.zip"); ImportOptions opts = getDefaultOptions(); PackageId[] ids = packMgr.extract(a, opts, true); assertEquals(1, ids.length); assertEquals(new PackageId("my_packages", "tmp", ""), ids[0]); } @Test public void testNonRecursive() throws RepositoryException, IOException, PackageException { Archive a = getFileArchive("testpackages/subtest.zip"); // install ImportOptions opts = getDefaultOptions(); opts.setNonRecursive(true); PackageId[] ids = packMgr.extract(a, opts, false); assertEquals(1, ids.length); assertEquals(new PackageId("my_packages", "subtest", ""), ids[0]); // check for sub packages assertPackageNodeExists(PACKAGE_ID_SUB_A); long size = admin.getProperty(getInstallationPath(PACKAGE_ID_SUB_A)+ "/jcr:content/jcr:data").getLength(); assertTrue("sub package must have data", size > 0); assertNodeMissing("/tmp/a"); assertPackageNodeExists(PACKAGE_ID_SUB_B); size = admin.getProperty(getInstallationPath(PACKAGE_ID_SUB_B)+ "/jcr:content/jcr:data").getLength(); assertTrue("sub package must have data", size > 0); assertNodeMissing("/tmp/b"); } @Test public void testRecursive() throws RepositoryException, IOException, PackageException { Archive a = getFileArchive("testpackages/subtest.zip"); // install ImportOptions opts = getDefaultOptions(); PackageId[] ids = packMgr.extract(a, opts, false); assertEquals(3, ids.length); Set<PackageId> testSet = new HashSet<>(Arrays.asList(ids)); assertTrue(testSet.contains(new PackageId("my_packages", "subtest", ""))); assertTrue(testSet.contains(PACKAGE_ID_SUB_A)); assertTrue(testSet.contains(PACKAGE_ID_SUB_B)); // check for sub packages assertPackageNodeExists(PACKAGE_ID_SUB_A); long size = admin.getProperty(getInstallationPath(PACKAGE_ID_SUB_A)+ "/jcr:content/jcr:data").getLength(); assertEquals("sub package must no data", 0, size); assertNodeExists("/tmp/a"); assertPackageNodeExists(PACKAGE_ID_SUB_B); size = admin.getProperty(getInstallationPath(PACKAGE_ID_SUB_B)+ "/jcr:content/jcr:data").getLength(); assertEquals("sub package must no data", 0, size); assertNodeExists("/tmp/b"); } }
[ "tripod@apache.org" ]
tripod@apache.org
603406510c9dd3906166a7e7a334a8a03ec82b83
32e16d369b55d642510812a05340132a579834c2
/src/java/managers/UserManager.java
d2b2f5f450d9977d7c105cb965c480b358311416
[]
no_license
wngsam/Career-Hunter
38c3860e2a103d0c4ab13ebb99b5802040029b8d
7d6a2f0e4c3c64c7dd4f19299afd3ec6b149f642
refs/heads/master
2021-01-10T19:16:49.348623
2015-09-16T23:52:51
2015-09-16T23:52:51
40,372,726
1
0
null
null
null
null
UTF-8
Java
false
false
942
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 managers; import domains.User; import java.util.HashMap; /** * * @author Sam W. */ public class UserManager { private HashMap<String, User> users; public UserManager(){ users = new HashMap(); } public User login(String email, String password){ User user = users.get(email); if(user!=null){ if(user.getPassword().equals(password)){ return user; } } return null; } public Boolean register(String email, String password){ if(!users.containsKey(email)){ users.put(email, new User(email,password)); return true; } return false; } }
[ "Desktop@Sam-PC.fios-router.home" ]
Desktop@Sam-PC.fios-router.home
0e6d91d407188042d24c828e17f0de54ac77d57f
f262599919ae9553b5df7de8bb569631268b9b11
/app/src/main/java/com/rushabh/cuttingchai/ImageFetcherService.java
737421533c5e629e226a38539443e99745260f23
[]
no_license
rushabh1191/imagedisplay
f989af31026154447e100bc0401a914199bd6a9f
7a66edc7e9b6f9fe2c6fd6a4d1f318eede517257
refs/heads/master
2021-06-08T09:31:30.406053
2016-10-27T14:31:52
2016-10-27T14:31:52
72,116,595
0
0
null
null
null
null
UTF-8
Java
false
false
573
java
package com.rushabh.cuttingchai; import com.google.gson.JsonObject; import org.json.JSONObject; import java.util.Map; import retrofit2.Call; import retrofit2.http.GET; import retrofit2.http.Query; import retrofit2.http.QueryMap; /** * Created by rushabh on 27/10/16. */ public interface ImageFetcherService { /*api.php?action=query" + "&prop=pageimages&format=json&piprop=thumbnail&pithumbsize=50" + "& pilimit=50&generator=prefixsearch";*/ @GET("api.php") Call<JsonObject> fetchImages(@QueryMap Map<String, String> params); }
[ "rushabhb@gsteckno.com" ]
rushabhb@gsteckno.com