blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 410 | content_id stringlengths 40 40 | detected_licenses listlengths 0 51 | license_type stringclasses 2
values | repo_name stringlengths 5 132 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 80 | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.85k 684M โ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 132
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 9.45M | extension stringclasses 28
values | content stringlengths 3 9.45M | authors listlengths 1 1 | author_id stringlengths 0 352 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c16f36ddcc6c41c80a705e49cd01990bbceca441 | 69788b68826258b3348c429df97ed23d84b08f23 | /ArchivEbook/src/main/java/global/sesoc/archive/util/FileService.java | 7d9acac968bbc5952df54b151762b4c80702b5e5 | [] | no_license | justNOZA/SWDO_PROJECT | 77834c79593c9459efc0fa22ed0e5f7be8a7ba32 | fb2f4c2bd7bdca66a243b49a7a74da8095f9ccf2 | refs/heads/master | 2023-03-16T07:36:44.424441 | 2021-03-14T10:27:46 | 2021-03-14T10:27:46 | 347,598,734 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,785 | java | ๏ปฟpackage global.sesoc.archive.util;
import java.io.File;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.springframework.web.multipart.MultipartFile;
/**
* ํ์ผ ๊ด๋ จ ์ ํธ
* ์
๋ก๋ํ ํ์ผ์ ์ ์ฅ & ์๋ฒ์ ์ ์ฅ๋ ํ์ผ ์ญ์ ๋ฑ์ ๊ธฐ๋ฅ ์ ๊ณต
*/
public class FileService {
/**
* ์
๋ก๋ ๋ ํ์ผ์ ์ง์ ๋ ๊ฒฝ๋ก์ ์ ์ฅํ๊ณ , ์ ์ฅ๋ ํ์ผ๋ช
์ ๋ฆฌํด
* @param mfile ์
๋ก๋๋ ํ์ผ
* @param path ์ ์ฅํ ๊ฒฝ๋ก
* @return ์ ์ฅ๋ ํ์ผ๋ช
*/
public static String saveFile(MultipartFile mfile, String uploadPath) {
//์
๋ก๋๋ ํ์ผ์ด ์๊ฑฐ๋ ํฌ๊ธฐ๊ฐ 0์ด๋ฉด ์ ์ฅํ์ง ์๊ณ null์ ๋ฆฌํด
if (mfile == null || mfile.isEmpty() || mfile.getSize() == 0) {
return null;
}
//์ ์ฅ ํด๋๊ฐ ์์ผ๋ฉด ์์ฑ
File path = new File(uploadPath);
if (!path.isDirectory()) {
path.mkdirs();
}
//์๋ณธ ํ์ผ๋ช
String originalFilename = mfile.getOriginalFilename();
//์ ์ฅํ ํ์ผ๋ช
์ ์ค๋ ๋ ์ง์ ๋
์์ผ๋ก ์์ฑ
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd"); //์ค๋ผํด๋ก์น๋ฉด to_char
String savedFilename = sdf.format(new Date());
//์๋ณธ ํ์ผ์ ํ์ฅ์
String ext;
int lastIndex = originalFilename.lastIndexOf('.'); //๋ง์ง๋ง์ผ๋ก .๋์ค๋ ๋ท๋ถ๋ถ hwp ๋ฅผ ์ฝ์ด๋ธ๊ฑฐ๋ค.
//ํ์ฅ์๊ฐ ์๋ ๊ฒฝ์ฐ
if (lastIndex == -1) {
ext = "";
}
//ํ์ฅ์๊ฐ ์๋ ๊ฒฝ์ฐ
else {
ext = "." + originalFilename.substring(lastIndex + 1);
}
//์ ์ฅํ ์ ์ฒด ๊ฒฝ๋ก๋ฅผ ํฌํจํ File ๊ฐ์ฒด
File serverFile = null;
//๊ฐ์ ์ด๋ฆ์ ํ์ผ์ด ์๋ ๊ฒฝ์ฐ์ ์ฒ๋ฆฌ
while (true) {
serverFile = new File(uploadPath + "/" + savedFilename + ext);
//๊ฐ์ ์ด๋ฆ์ ํ์ผ์ด ์์ผ๋ฉด ๋๊ฐ.
if ( !serverFile.isFile()) break;
//๊ฐ์ ์ด๋ฆ์ ํ์ผ์ด ์์ผ๋ฉด ์ด๋ฆ ๋ค์ long ํ์
์ ์๊ฐ์ ๋ณด๋ฅผ ํ๋ฒ ๋ ๋ง๋ถ์.
savedFilename = savedFilename + new Date().getTime(); //๊ธฐ์ค์๊ฐ ์ผ๋ก ๊ณ์ ์
๋ก๋ ๋๊ฒ.
}
//ํ์ผ ์ ์ฅ
try {
mfile.transferTo(serverFile); //ํ์ผ ๋ณต์ฌ
} catch (Exception e) {
savedFilename = null;
e.printStackTrace();
}
return savedFilename + ext;
}
/**
* ์๋ฒ์ ์ ์ฅ๋ ํ์ผ์ ์ ์ฒด ๊ฒฝ๋ก๋ฅผ ์ ๋ฌ๋ฐ์, ํด๋น ํ์ผ์ ์ญ์
* @param fullpath ์ญ์ ํ ํ์ผ์ ๊ฒฝ๋ก
* @return ์ญ์ ์ฌ๋ถ
*/
public static boolean deleteFile(String fullpath) {
//ํ์ผ ์ญ์ ์ฌ๋ถ๋ฅผ ๋ฆฌํดํ ๋ณ์
boolean result = false;
//์ ๋ฌ๋ ์ ์ฒด ๊ฒฝ๋ก๋ก File๊ฐ์ฒด ์์ฑ
File delFile = new File(fullpath);
//ํด๋น ํ์ผ์ด ์กด์ฌํ๋ฉด ์ญ์
if (delFile.isFile()) {
delFile.delete();
result = true;
}
return result;
}
}
| [
"1995pjs2635@gmail.com"
] | 1995pjs2635@gmail.com |
18c58255dd9b858079222aeae45057d394eebc8b | 36ca7e2158a8ecfc488bbbb418412d26757bdcca | /up-logging/src/main/java/profile/service/LogService.java | b82620252f4a2823236480e16f6df127e8e24345 | [] | no_license | topaz1984/upp | d99e1faa0e0a9a8fcb315b9da1039e7c55efdc02 | 0894f885bb2f7a7190a3847e8176ea624790be12 | refs/heads/master | 2023-09-05T13:41:03.027009 | 2021-11-04T09:08:42 | 2021-11-04T09:08:42 | 424,532,591 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,712 | java | package profile.service;
import profile.domain.Log;
import profile.service.dto.LogQueryCriteria;
import org.aspectj.lang.ProceedingJoinPoint;
import org.springframework.data.domain.Pageable;
import org.springframework.scheduling.annotation.Async;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.List;
public interface LogService {
/**
* ๅ้กตๆฅ่ฏข
* @param criteria ๆฅ่ฏขๆกไปถ
* @param pageable ๅ้กตๅๆฐ
* @return /
*/
Object queryAll(LogQueryCriteria criteria, Pageable pageable);
/**
* ๆฅ่ฏขๅ
จ้จๆฐๆฎ
* @param criteria ๆฅ่ฏขๆกไปถ
* @return /
*/
List<Log> queryAll(LogQueryCriteria criteria);
/**
* ๆฅ่ฏข็จๆทๆฅๅฟ
* @param criteria ๆฅ่ฏขๆกไปถ
* @param pageable ๅ้กตๅๆฐ
* @return -
*/
Object queryAllByUser(LogQueryCriteria criteria, Pageable pageable);
/**
* ไฟๅญๆฅๅฟๆฐๆฎ
* @param username ็จๆท
* @param browser ๆต่งๅจ
* @param ip ่ฏทๆฑIP
* @param joinPoint /
* @param log ๆฅๅฟๅฎไฝ
*/
@Async
void save(String username, String browser, String ip, ProceedingJoinPoint joinPoint, Log log);
/**
* ๆฅ่ฏขๅผๅธธ่ฏฆๆ
* @param id ๆฅๅฟID
* @return Object
*/
Object findByErrDetail(Long id);
/**
* ๅฏผๅบๆฅๅฟ
* @param logs ๅพ
ๅฏผๅบ็ๆฐๆฎ
* @param response /
* @throws IOException /
*/
void download(List<Log> logs, HttpServletResponse response) throws IOException;
/**
* ๅ ้คๆๆ้่ฏฏๆฅๅฟ
*/
void delAllByError();
/**
* ๅ ้คๆๆINFOๆฅๅฟ
*/
void delAllByInfo();
}
| [
"yanwen@travelsky.com"
] | yanwen@travelsky.com |
874a64b6139df968cb093fd5d43bfcb507e3e5bd | 4dfbca3fb1dfde3ac5108e94e05f53d8b64e2c1a | /src/crabfood/BurgerKrusty.java | 5549f9ec1fe9ff94b67d978cf9a01c26a24a2609 | [] | no_license | yasminirdina/WIA1002-DS-CrabFood | 7285e60838f68a814b290edf3d47398513926c5f | fea80fee541fd7296b65acc7b653ddde8c1dfa00 | refs/heads/main | 2023-07-14T01:41:39.256094 | 2021-08-24T02:28:45 | 2021-08-24T02:28:45 | 399,309,344 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,618 | java | package crabfood;
import static crabfood.CrabFood.map;
import java.util.ArrayList;
import java.util.Scanner;
public class BurgerKrusty {
String name = "";
public BurgerKrusty(String name) {
this.name = name;
}
public void bacaje(Scanner scanner) {
System.out.println("");
System.out.println("Restaurant name: Burger Krusty");
String first_xy = scanner.nextLine();
ArrayList<String> xy = new ArrayList<>();
while (first_xy.length() <= 3)//selagi the string length is 3 or below, masuk loop
{
String[] split = first_xy.split(" ");
int x1 = Integer.valueOf(split[0]);
int y1 = Integer.valueOf(split[1]);
xy.add(split[0]);
xy.add(split[1]);
first_xy = scanner.nextLine();
/*
System.out.println("X1: " + x1); //check
System.out.println("Y1: " + y1); //check
System.out.println(xy.toString()); //check
*/
for (int i = 0; i < 3; i++) {
map[x1][y1] = 3;
}
}
ArrayList<String> dishes = new ArrayList<>();
ArrayList<String> prepTime = new ArrayList<>();
while (first_xy.length() > 3)
{
dishes.add(first_xy);
System.out.println(first_xy);
first_xy = scanner.nextLine();
prepTime.add(first_xy);
System.out.println(first_xy);
if (scanner.hasNextLine()) {
first_xy = scanner.nextLine();
}
}
}
} | [
"yasminirdina9@gmail.com"
] | yasminirdina9@gmail.com |
254a957e1a8093b81699fdf2cb4700d85787ba8b | b6e99b0346572b7def0e9cdd1b03990beb99e26f | /src/gcom/gui/AutocompleteGenericoServlet.java | f36010f25ae67805460e8323848961aa89c29c14 | [] | no_license | prodigasistemas/gsan | ad64782c7bc991329ce5f0bf5491c810e9487d6b | bfbf7ad298c3c9646bdf5d9c791e62d7366499c1 | refs/heads/master | 2023-08-31T10:47:21.784105 | 2023-08-23T17:53:24 | 2023-08-23T17:53:24 | 14,600,520 | 19 | 20 | null | 2015-07-29T19:39:10 | 2013-11-21T21:24:16 | Java | ISO-8859-1 | Java | false | false | 4,948 | java | package gcom.gui;
import gcom.fachada.Fachada;
import gcom.util.Util;
import java.io.IOException;
import java.io.PrintWriter;
import java.text.StringCharacterIterator;
import java.util.Collection;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class AutocompleteGenericoServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
private static final int CLIENTE = 1;
private static final int USUARIO = 2;
private static final int CLIENTE_RESPONSAVEL = 3;
private Fachada fachada = Fachada.getInstancia();
protected void service(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
String valor = req.getParameter("q");
String method = req.getParameter("method");
PrintWriter print = resp.getWriter();
boolean numerico = Util.validarStringNumerica(method);
//Valida se o parรขmetro method possui valor vรกlido
if(numerico){
switch (Integer.parseInt(method)) {
case AutocompleteGenericoServlet.CLIENTE:
filtrarAutocompleteCliente(print, valor);
break;
case AutocompleteGenericoServlet.USUARIO:
filtrarAutocompleteUsuario(print, valor);
break;
case AutocompleteGenericoServlet.CLIENTE_RESPONSAVEL:
filtrarAutocompleteClienteResponsavel(print, valor);
break;
default:
break;
}
}
}
//Inicio dos metodos privados
private void filtrarAutocompleteCliente(PrintWriter print, String valor){
Collection coll = fachada.filtrarAutocompleteCliente(valor);
System.out.println(coll.size());
print.println("[");
int indice = 1;
for (Object object : coll) {
Object[] cliente = (Object[]) object;
String cnpj = "";
if(cliente[1] != null && !cliente[1].equals("")){
cnpj = Util.formatarCnpj(cliente[1] + "");
}
if(indice < coll.size()){
print.println("{ resultado: '" + cliente[0] + " - " + encodeCaracteresEspeciaisJSON(cliente[2].toString()) +"' , identificador: "+cliente[3]+", cnpj: '"+cnpj+ "' },");
}else{
print.println("{ resultado: '" + cliente[0] + " - " + encodeCaracteresEspeciaisJSON(cliente[2].toString()) +"' , identificador: "+cliente[3]+", cnpj: '"+cnpj+ "' }");
}
indice++;
}
print.println("]");
}
private void filtrarAutocompleteClienteResponsavel(PrintWriter print, String valor){
Collection coll = fachada.filtrarAutocompleteClienteResponsavel(valor);
System.out.println(coll.size());
print.println("[");
int indice = 1;
for (Object object : coll) {
Object[] cliente = (Object[]) object;
String cnpj = "";
if(cliente[1] != null && !cliente[1].equals("")){
cnpj = Util.formatarCnpj(cliente[1] + "");
}
if(indice < coll.size()){
print.println("{ resultado: '" + cliente[0] + " - " + encodeCaracteresEspeciaisJSON(cliente[2].toString()) +"' , identificador: "+cliente[3]+", cnpj: '"+cnpj+ "' },");
}else{
print.println("{ resultado: '" + cliente[0] + " - " + encodeCaracteresEspeciaisJSON(cliente[2].toString()) +"' , identificador: "+cliente[3]+", cnpj: '"+cnpj+ "' }");
}
indice++;
}
print.println("]");
}
private void filtrarAutocompleteUsuario(PrintWriter print, String valor){
Collection coll = fachada.filtrarAutocompleteUsuario(valor);
System.out.println(coll.size());
for (Object object : coll) {
Object[] usuario = (Object[]) object;
print.println(usuario[0] + " - " + encodeCaracteresEspeciaisJSON(usuario[1].toString()));
}
}
private static String encodeCaracteresEspeciaisJSON(String aText){
final StringBuilder result = new StringBuilder();
StringCharacterIterator iterator = new StringCharacterIterator(aText);
char character = iterator.current();
while (character != StringCharacterIterator.DONE){
if( character == '\"' ){
result.append("\\\"");
}
else if(character == '\\'){
result.append("\\\\");
}
else if(character == '/'){
result.append("\\/");
}
else if(character == '\b'){
result.append("\\b");
}
else if(character == '\f'){
result.append("\\f");
}
else if(character == '\n'){
result.append("\\n");
}
else if(character == '\r'){
result.append("\\r");
}
else if(character == '\t'){
result.append("\\t");
}else if(character == '\''){
result.append("\\'");
}
else {
//the char is not a special one
//add it to the result as is
result.append(character);
}
character = iterator.next();
}
return result.toString();
}
}
| [
"piagodinho@gmail.com"
] | piagodinho@gmail.com |
649067e7de51f71584781c15016bc74837ea8f56 | 1bc9c1501d58b1119d11d0be9ad11811805c8d38 | /SimpleProxy/UserDapProxy.java | 840966cf14e2927ac1d06118d6b89af757adca70 | [] | no_license | 0xC4m3l-jiang/java-security | 52813f53dc32ff917a1c59df94afcaa2e86e7eea | e9a54c936330e91d0156497511c2af8c468489c7 | refs/heads/main | 2023-02-10T03:09:23.831300 | 2021-01-03T07:23:58 | 2021-01-03T07:23:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 343 | java | package proxy1;
public class UserDapProxy implements IUserDao{
private IUserDao target;
public UserDapProxy(IUserDao target) {
this.target = target;
}
@Override
public void save() {
System.out.println("doSomething before");
target.save();
System.out.println("doSomething after");
}
}
| [
"makefoxm@qq.com"
] | makefoxm@qq.com |
b4e2a96ee0dba77ccd7efbdcccfa91dabe6f1932 | 079e9fb49d9045fbb6e4b3a1292f605dc29bece7 | /ๆบ็ /car/src/main/java/com/yanshang/car/repositories/EmployeeRepository.java | 4e6872fa5f63748eebc056dd21a4a3f3af16ea23 | [] | no_license | chenylwork/yanshang-car | 14b5c0cf503e61b0d72dfb1258b0416434fa2d6e | 0b5ccb57ded42d4167c7520fed339c49905d2a00 | refs/heads/master | 2020-04-16T22:01:23.834850 | 2019-03-03T15:00:40 | 2019-03-03T15:00:40 | 164,087,165 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 453 | java | package com.yanshang.car.repositories;
import com.yanshang.car.bean.Employee;
import org.springframework.data.jpa.repository.support.JpaRepositoryImplementation;
import org.springframework.stereotype.Repository;
/*
* @ClassName EmployeeRepository
* @Description ไฝ็จๆ่ฟฐ
* @Author ้ๅฝฆ็ฃ
* @Date 2019/1/28- 15:44
* @Version 1.0
**/
@Repository
public interface EmployeeRepository extends JpaRepositoryImplementation<Employee,Integer>{
}
| [
"chenylemail@163.com"
] | chenylemail@163.com |
0a2d443a59fd2b798755ec0aa51911b0d21450a3 | ccad8d845ba3f63b91b48192b7258815a6f0c2f4 | /python/src/com/jetbrains/python/hierarchy/call/PyCallerFunctionTreeStructure.java | 844f728381e85703762e821c68d7798ac19c2abc | [] | no_license | johna1203/intellij-community | 6ac1033d6be353445edc13fec58d531a119976c2 | 1e4279043944b2cb045ec408337f41ca7e96ddde | refs/heads/master | 2021-01-15T08:15:05.374944 | 2014-09-03T14:30:47 | 2014-09-03T14:31:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,347 | java | /*
* Copyright 2000-2014 JetBrains s.r.o.
*
* 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.jetbrains.python.hierarchy.call;
import com.google.common.collect.Lists;
import com.intellij.ide.hierarchy.HierarchyNodeDescriptor;
import com.intellij.ide.hierarchy.HierarchyTreeStructure;
import com.intellij.openapi.project.Project;
import com.intellij.psi.PsiElement;
import com.intellij.util.ArrayUtil;
import com.intellij.util.containers.HashMap;
import com.jetbrains.python.psi.PyClass;
import com.jetbrains.python.psi.PyElement;
import com.jetbrains.python.psi.PyFile;
import com.jetbrains.python.psi.PyFunction;
import org.jetbrains.annotations.NotNull;
import java.util.List;
/**
* @author novokrest
*/
public class PyCallerFunctionTreeStructure extends HierarchyTreeStructure {
private final String myScopeType;
public PyCallerFunctionTreeStructure(Project project, PsiElement element, String currentScopeType) {
super(project, new PyCallHierarchyNodeDescriptor(project, null, element, true, false));
myScopeType = currentScopeType;
}
@NotNull
@Override
protected Object[] buildChildren(@NotNull HierarchyNodeDescriptor descriptor) {
final PyElement element = ((PyCallHierarchyNodeDescriptor)descriptor).getEnclosingElement();
final boolean isCallable = element instanceof PyFunction || element instanceof PyClass || element instanceof PyFile;
HierarchyNodeDescriptor nodeDescriptor = getBaseDescriptor();
if (!isCallable || nodeDescriptor == null) {
return ArrayUtil.EMPTY_OBJECT_ARRAY;
}
final List<PsiElement> callers = Lists.newArrayList();
PyCallDataManager[] functionManagers = {
// TODO: Add dynamic call data manager
PyStaticCallDataManager.getInstance(myProject),
};
for (PyCallDataManager functionManager : functionManagers) {
callers.addAll(functionManager.getCallers(element));
}
final HashMap<PsiElement, PyCallHierarchyNodeDescriptor> callerToDescriptorMap = new HashMap<PsiElement, PyCallHierarchyNodeDescriptor>();
final List<PyCallHierarchyNodeDescriptor> descriptors = Lists.newArrayList();
PsiElement baseClass = element instanceof PyFunction ? ((PyFunction)element).getContainingClass() : null;
for (PsiElement caller : callers) {
if (baseClass != null && !isInScope(baseClass, caller, myScopeType)) continue;
PyCallHierarchyNodeDescriptor callerDescriptor = callerToDescriptorMap.get(caller);
if (callerDescriptor == null) {
callerDescriptor = new PyCallHierarchyNodeDescriptor(myProject, null, caller, false, false);
callerToDescriptorMap.put(caller, callerDescriptor);
descriptors.add(callerDescriptor);
}
}
return ArrayUtil.toObjectArray(descriptors);
}
@Override
public boolean isAlwaysShowPlus() {
return true;
}
}
| [
"andrey.vlasovskikh@jetbrains.com"
] | andrey.vlasovskikh@jetbrains.com |
79abe5e518f565aa836231590cecc2b10114df82 | 6c805ba587a3cac1f3a4cbeba0d95f1b711b639e | /wezard-pay/src/main/java/com/natsumes/wezard/service/impl/PayServiceImpl.java | 884812f0b281e22fd941762cc2afd995274d23cf | [
"Apache-2.0"
] | permissive | SpikeLavender/nastume | bb9580a87c7ca55ed0221c56f711326b2a51dcae | 9d0bc8ecddf6f6d192bad36c7efea45ae09b0c99 | refs/heads/master | 2023-03-20T01:51:57.758074 | 2021-03-07T14:47:54 | 2021-03-07T14:47:54 | 244,695,144 | 0 | 0 | Apache-2.0 | 2020-07-04T02:13:07 | 2020-03-03T17:09:43 | Java | UTF-8 | Java | false | false | 5,743 | java | package com.natsumes.wezard.service.impl;
import com.lly835.bestpay.enums.BestPayPlatformEnum;
import com.lly835.bestpay.enums.BestPayTypeEnum;
import com.lly835.bestpay.enums.OrderStatusEnum;
import com.lly835.bestpay.model.OrderQueryRequest;
import com.lly835.bestpay.model.OrderQueryResponse;
import com.lly835.bestpay.model.PayRequest;
import com.lly835.bestpay.model.PayResponse;
import com.lly835.bestpay.service.BestPayService;
import com.natsumes.wezard.entity.Response;
import com.natsumes.wezard.enums.PayPlatformEnum;
import com.natsumes.wezard.mapper.PayInfoMapper;
import com.natsumes.wezard.pojo.PayInfo;
import com.natsumes.wezard.service.MessageProducer;
import com.natsumes.wezard.service.PayService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.math.BigDecimal;
@Slf4j
@Service
public class PayServiceImpl implements PayService {
private static final String QUEUE_PAY_NOTIFY = "payNotify";
@Autowired
private BestPayService bestPayService;
@Autowired
private MessageProducer messageProducer;
@Autowired
private PayInfoMapper payInfoMapper;
@Override
public Response<PayResponse> create(Integer userId, String orderId, String openId, BigDecimal amount, BestPayTypeEnum payTypeEnum) {
//ๅทฒๅญๅจ, ๆฅ่ฏข
PayInfo payInfo = payInfoMapper.selectByByOrderNo(orderId);
if (payInfo == null) {
//1. ๅๅ
ฅๆฐๆฎๅบ
payInfo = new PayInfo(orderId,
PayPlatformEnum.getByBestPayTypeEnum(payTypeEnum).getCode(),
OrderStatusEnum.NOTPAY.name(),
amount);
payInfo.setUserId(userId);
payInfoMapper.insertSelective(payInfo);
}
if (payTypeEnum != BestPayTypeEnum.WXPAY_NATIVE
&& payTypeEnum != BestPayTypeEnum.WXPAY_MINI
&& payTypeEnum != BestPayTypeEnum.ALIPAY_PC) {
throw new RuntimeException("ๆไธๆฏๆ็ๆฏไป็ฑปๅ");
}
PayRequest request = new PayRequest();
request.setOrderName("2361478-ๆๅฅฝ็ๆฏไปSDK");
request.setOrderId(orderId);
request.setOrderAmount(amount.doubleValue());
request.setPayTypeEnum(payTypeEnum);
request.setOpenid(openId);
PayResponse response = bestPayService.pay(request);
response.setOrderId(orderId);
response.setOrderAmount(amount.doubleValue());
response.setPayPlatformEnum(payTypeEnum.getPlatform());
//ๅญๅจไฟกๆฏ
log.info("response: " + response);
return Response.success(response);
}
@Override
public String asyncNotify(String notifyData) {
//1.็ญพๅๆ ก้ช
PayResponse response = bestPayService.asyncNotify(notifyData);
log.info("response={}", response);
//2.้้ขๆ ก้ช๏ผไปๆฐๆฎๅบๆฅ่ฎขๅ๏ผ
//ๆฏ่พไธฅ้๏ผๆญฃๅธธๆ
ๅตไธๆฏไธไผๅ็็๏ผๅๅบๅ่ญฆ๏ผ้้ใ็ญไฟก
PayInfo payInfo = payInfoMapper.selectByByOrderNo(response.getOrderId());
if (payInfo == null) {
//todo:
throw new RuntimeException("้่ฟorderNoๆฅ่ฏขๅฐ็็ปๆๆฏnull");
}
//ๅฆๆ่ฎขๅๆฏไป็ถๆไธๆฏ"ๅทฒๆฏไป"
if (!payInfo.getPlatformStatus().equals(OrderStatusEnum.SUCCESS.name())) {
//Double็ฑปๅๆฏ่พๅคงๅฐ๏ผ็ฒพๅบฆใ1.00 1.0
if (payInfo.getPayAmount().compareTo(BigDecimal.valueOf(response.getOrderAmount())) != 0) {
//todo:ๅ่ญฆ
throw new RuntimeException("ๅผๆญฅ้็ฅไธญ็้้ขๅๆฐๆฎๅบ้็ไธไธ่ด๏ผorderNo=" + response.getOrderId());
}
//3. ไฟฎๆน่ฎขๅๆฏไป็ถๆ
payInfo.setPlatformStatus(OrderStatusEnum.SUCCESS.name());
payInfo.setPlatformNumber(response.getOutTradeNo());
payInfoMapper.updateByPrimaryKeySelective(payInfo);
}
//TODO totoroๅ้MQๆถๆฏ๏ผnatsumeๆฅๅMQๆถๆฏ, payInfoVo
messageProducer.sendPayInfo(payInfo);
if (response.getPayPlatformEnum() == BestPayPlatformEnum.WX) {
//4.ๅ่ฏๅพฎไฟกไธ่ฆๅจ้็ฅไบ
return "<xml>\n" +
" <return_code><![CDATA[SUCCESS]]></return_code>\n" +
" <return_msg><![CDATA[OK]]></return_msg>\n" +
"</xml>";
} else if (response.getPayPlatformEnum() == BestPayPlatformEnum.ALIPAY) {
return "success";
}
throw new RuntimeException("ๅผๆญฅ้็ฅไธญ้่ฏฏ็ๆฏไปๅนณๅฐ");
}
@Override
public PayInfo queryByOrderId(String orderId) {
return payInfoMapper.selectByByOrderNo(orderId);
}
/**
* ๆฅ่ฏข่ฎขๅๆฅๅฃ
* @param orderId
* @param payTypeEnum
* @return
*/
private String query(String orderId, BestPayTypeEnum payTypeEnum) {
PayInfo payInfo = payInfoMapper.selectByByOrderNo(orderId);
if (payInfo != null) {
OrderQueryRequest queryRequest = new OrderQueryRequest();
queryRequest.setOrderId(orderId);
queryRequest.setPlatformEnum(payTypeEnum.getPlatform());
//ๆดๆฐ็ถๆ
OrderQueryResponse queryResponse = bestPayService.query(queryRequest);
payInfo.setPlatformStatus(queryResponse.getOrderStatusEnum().name());
// update็ถๆ: payInfoMapper.updateByPrimaryKeySelective(payInfo);
if (queryResponse.getOrderStatusEnum().equals(OrderStatusEnum.CLOSED)
|| queryResponse.getOrderStatusEnum().equals(OrderStatusEnum.SUCCESS)) {
}
}
return "";
}
}
| [
"hetengjiao@chinamobile.com"
] | hetengjiao@chinamobile.com |
a257afa503e05e42ceda393e57d17c4c085b12e2 | df72d2a31adf86da1e2355a5879a57b1e7d0f3d9 | /CompiladorMJ/microLIR/src/microLIR/parser/sym.java | 50566f35a5850158860b1f7789c5cd862be4c712 | [] | no_license | in-silico/in-silico | 81c79a973f202a7cf604707ccc7c78804179634e | 042a8bbcadfb70354506b2855e16a06f9e8831c3 | refs/heads/master | 2020-04-13T14:11:00.745975 | 2015-06-19T17:13:52 | 2015-06-19T17:13:52 | 37,735,182 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,019 | java |
//----------------------------------------------------
// The following code was generated by CUP v0.10k TUM Edition 20050516
// Tue Jan 02 00:59:58 GMT+02:00 2007
//----------------------------------------------------
package microLIR.parser;
/** CUP generated class containing symbol constants. */
public class sym {
/* terminals */
public static final int MOVEARRAY = 11;
public static final int STATICCALL = 35;
public static final int MOVEFIELD = 13;
public static final int XOR = 25;
public static final int REG = 40;
public static final int LIBRARY = 36;
public static final int NOT = 22;
public static final int AND = 23;
public static final int LP = 2;
public static final int OR = 24;
public static final int COMMA = 7;
public static final int JUMPTRUE = 28;
public static final int JUMPGE = 31;
public static final int INC = 19;
public static final int DIV = 17;
public static final int RP = 3;
public static final int ASSIGN = 9;
public static final int DOT = 6;
public static final int EOF = 0;
public static final int RETURN = 37;
public static final int LB = 4;
public static final int error = 1;
public static final int MUL = 16;
public static final int RB = 5;
public static final int JUMPFALSE = 29;
public static final int ADD = 14;
public static final int JUMP = 27;
public static final int NUMBER = 38;
public static final int MOD = 18;
public static final int ARRAYLENGTH = 12;
public static final int VIRTUALLCALL = 34;
public static final int MOVE = 10;
public static final int COMPARE = 26;
public static final int COLON = 8;
public static final int NEG = 21;
public static final int JUMPLE = 33;
public static final int JUMPL = 32;
public static final int STRING = 42;
public static final int JUMPG = 30;
public static final int DEC = 20;
public static final int LABEL = 41;
public static final int SUB = 15;
public static final int VAR = 39;
}
| [
"santigutierrez1@gmail.com"
] | santigutierrez1@gmail.com |
87798b86ceda70da38e4413e279dac7dd6c49df7 | 69d5ca85c4ca839fd779abcb57a61a96f26f2cd2 | /src/main/java/com/rafinha/bettinghelper/controller/LoginController.java | b16da44091f6f2a5268229e55be3906ebcb00011 | [] | no_license | rafalmoczydlowski/betting-helper | 1aa89108e212309d3d3908916e28fb06d15f2540 | 30ac7679bfa6220cb558e957c92d00385650c8f2 | refs/heads/master | 2023-08-25T19:01:54.762857 | 2021-10-12T17:39:21 | 2021-10-12T17:39:21 | 410,322,737 | 0 | 0 | null | 2021-10-02T12:25:18 | 2021-09-25T16:24:25 | Java | UTF-8 | Java | false | false | 374 | java | package com.rafinha.bettinghelper.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping("/login")
public class LoginController {
@GetMapping
public String loadLoginPage() {
return "login";
}
}
| [
"moczydlowski7@wp.pl"
] | moczydlowski7@wp.pl |
0e7b861e33ecd75c80452b0e62bb4bc2734c3801 | 01ad3f62ffdcb62029db57d628cab5f069b124e6 | /src/main/java/com/dry3/controller/backend/ProductManageController.java | 78d181beb1b8e7517411def598dd6c150b7ff2a8 | [] | no_license | Initail/mmall | 342ef0fc918450b3e4af92f1f20f2c1f4b3c7a09 | 538bd94332fcb6a6a9d4abc00aa0c27c0ecbdd10 | refs/heads/v1.1 | 2022-12-29T04:22:35.166917 | 2019-06-28T14:56:51 | 2019-06-28T14:56:51 | 117,155,211 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,669 | java | package com.dry3.controller.backend;
import com.dry3.common.Const;
import com.dry3.common.ResponseCode;
import com.dry3.common.ServerResponse;
import com.dry3.pojo.Product;
import com.dry3.pojo.User;
import com.dry3.service.IFileService;
import com.dry3.service.IProductService;
import com.dry3.service.IUserService;
import com.dry3.util.PropertiesUtil;
import com.dry3.vo.ProductDetailVO;
import com.github.pagehelper.PageInfo;
import com.google.common.collect.Maps;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.util.Map;
/**
* Created by dry3
*/
@Controller
@RequestMapping("/manage/product")
public class ProductManageController {
@Autowired
private IUserService iUserService;
@Autowired
private IProductService iProductService;
@Autowired
private IFileService iFileService;
@RequestMapping(value = "list.do")
@ResponseBody
public ServerResponse<PageInfo> listProduct(HttpSession session, @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum, @RequestParam(value = "pageSize", defaultValue = "10") Integer pageSize) {
User user = (User) session.getAttribute(Const.CURRENT_USER);
if (user == null) {
return ServerResponse.createByErrorCodeMessage(ResponseCode.NEED_LOGIN.getCode(), "็จๆทๆช็ปๅฝ,่ฏท็ปๅฝ");
}
if (iUserService.checkAdminRole(user).isSuccess()) {
//ๆฃ้ช้่ฟ
return iProductService.listProduct(pageNum, pageSize);
}
return ServerResponse.createByErrorMessage("้็ฎก็ๅ,ๆ ๆ้ๆไฝ");
}
@RequestMapping(value = "save.do")
@ResponseBody
public ServerResponse saveProduct(HttpSession session, Product product) {
User user = (User) session.getAttribute(Const.CURRENT_USER);
if (user == null) {
return ServerResponse.createByErrorCodeMessage(ResponseCode.NEED_LOGIN.getCode(), "็จๆทๆช็ปๅฝ,่ฏท็ปๅฝ");
}
if (iUserService.checkAdminRole(user).isSuccess()) {
//ๆฃ้ช้่ฟ
return iProductService.saveOrUpdateProduct(product);
}
return ServerResponse.createByErrorMessage("้็ฎก็ๅ,ๆ ๆ้ๆไฝ");
}
@RequestMapping(value = "setSaleStatus.do")
@ResponseBody
public ServerResponse setSaleStatusProduct(HttpSession session, Integer productId, Integer status) {
User user = (User) session.getAttribute(Const.CURRENT_USER);
if (user == null) {
return ServerResponse.createByErrorCodeMessage(ResponseCode.NEED_LOGIN.getCode(), "็จๆทๆช็ปๅฝ,่ฏท็ปๅฝ");
}
if (iUserService.checkAdminRole(user).isSuccess()) {
return iProductService.setSaleStatusProduct(productId, status);
}
return ServerResponse.createByErrorMessage("้็ฎก็ๅ,ๆ ๆ้ๆไฝ");
}
@RequestMapping(value = "detail.do")
@ResponseBody
public ServerResponse<ProductDetailVO> detailProductById(HttpSession session, Integer productId) {
User user = (User) session.getAttribute(Const.CURRENT_USER);
if (user == null) {
return ServerResponse.createByErrorCodeMessage(ResponseCode.NEED_LOGIN.getCode(), "็จๆทๆช็ปๅฝ๏ผ่ฏท็ปๅฝ");
}
if (iUserService.checkAdminRole(user).isSuccess()) {
return iProductService.detailProductById(productId);
}
return ServerResponse.createByErrorMessage("้็ฎก็ๅ,ๆ ๆ้ๆไฝ");
}
@RequestMapping(value = "search.do")
@ResponseBody
public ServerResponse<PageInfo> searchProduct(HttpSession session, Integer productId, String productName,
@RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum,
@RequestParam(value = "pageSize", defaultValue = "10") Integer pageSize) {
User user = (User) session.getAttribute(Const.CURRENT_USER);
if (user == null) {
return ServerResponse.createByErrorCodeMessage(ResponseCode.NEED_LOGIN.getCode(), "็จๆทๆช็ปๅฝ,่ฏท็ปๅฝ");
}
if (iUserService.checkAdminRole(user).isSuccess()) {
//ๆฃ้ช้่ฟ
return iProductService.searchProduct(productId, productName, pageNum, pageSize);
}
return ServerResponse.createByErrorMessage("้็ฎก็ๅ,ๆ ๆ้ๆไฝ");
}
@RequestMapping(value = "upload.do")
@ResponseBody
public ServerResponse<Map> uploadProduct(HttpSession session, HttpServletRequest request,
@RequestParam(value = "upload_file", required = false) MultipartFile file) {
User user = (User) session.getAttribute(Const.CURRENT_USER);
if (user == null) {
return ServerResponse.createByErrorCodeMessage(ResponseCode.NEED_LOGIN.getCode(), "็จๆทๆช็ปๅฝ,่ฏท็ปๅฝ");
}
if (iUserService.checkAdminRole(user).isSuccess()) {
String path = request.getSession().getServletContext().getRealPath("upload");
String targetFileName = iFileService.upload(file, path);
if (StringUtils.isBlank(targetFileName)) {
return ServerResponse.createByErrorMessage("ไธไผ ๅคฑ่ดฅ");
}
String url = PropertiesUtil.getProperty("ftp.server.http.prefix") + targetFileName;
Map fileMap = Maps.newHashMap();
fileMap.put("uri", targetFileName);
fileMap.put("url", url);
return ServerResponse.createBySuccess(fileMap);
}
return ServerResponse.createByErrorMessage("้็ฎก็ๅ,ๆ ๆ้ๆไฝ");
}
@RequestMapping(value = "richText_img_upload.do")
@ResponseBody
public Map richTextImgUpload(HttpSession session, HttpServletRequest request, HttpServletResponse response,
@RequestParam(value = "upload_file", required = false) MultipartFile file) {
Map uploadMap = Maps.newHashMap();
User user = (User) session.getAttribute(Const.CURRENT_USER);
if (user == null) {
uploadMap.put("success", false);
uploadMap.put("msg", "่ฏท็ปๅฝ่ดฆๅท");
return uploadMap;
}
if (iUserService.checkAdminRole(user).isSuccess()) {
String path = request.getSession().getServletContext().getRealPath("upload");
String targetFileName = iFileService.upload(file, path);
if (StringUtils.isBlank(targetFileName)) {
uploadMap.put("success", false);
uploadMap.put("msg", "ไธไผ ๅคฑ่ดฅ");
return uploadMap;
}
String url = PropertiesUtil.getProperty("ftp.server.http.prefix") + targetFileName;
uploadMap.put("success", true);
uploadMap.put("msg", "ไธไผ ๆๅ");
uploadMap.put("file_path", url);
//้่ฆๆ่ง่ไฟฎๆน่ฏทๆฑๅคด
response.addHeader("Access-Control-Allow-Headers", "X-File-Name");
return uploadMap;
}
uploadMap.put("success", false);
uploadMap.put("msg", "่ฏฅ่ดฆๅทๆ ๆ้ๆไฝ");
return uploadMap;
}
}
| [
"zyl@dry3.cn"
] | zyl@dry3.cn |
6195f7f6c85ac78a8f90ce8de01fb8e879ae414a | 50f2414d8ac0cd374cf32433bde71c1ece6da381 | /app/src/main/java/com/worldunion/dylanapp/module/image/GlideConfig.java | 99fd6309c3956e17aee985b780f9aa92694e74e0 | [] | no_license | dylanqing/DylanApp | 8f8b35937f955bc17b5a723709d58f56cba59871 | 195ce1872bd445012e86895a10b4f422ab8124d8 | refs/heads/master | 2020-03-19T06:39:10.544540 | 2018-06-04T15:09:17 | 2018-06-04T15:09:17 | 135,185,035 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,246 | java | package com.worldunion.dylanapp.module.image;
import android.content.Context;
import com.bumptech.glide.Glide;
import com.bumptech.glide.GlideBuilder;
import com.bumptech.glide.load.DecodeFormat;
import com.bumptech.glide.load.engine.bitmap_recycle.LruBitmapPool;
import com.bumptech.glide.load.engine.cache.InternalCacheDiskCacheFactory;
import com.bumptech.glide.load.engine.cache.LruResourceCache;
import com.bumptech.glide.load.engine.cache.MemorySizeCalculator;
import com.bumptech.glide.module.GlideModule;
import com.bumptech.glide.request.target.ViewTarget;
import com.worldunion.dylanapp.R;
/**
* @author Dylan
* @time 2016/11/8 16:50
* @des Glide้
็ฝฎ
* @updateAuthor $Author$
* @updateDate $Date$
* @updateDes ${TODO}
*/
public class GlideConfig implements GlideModule {
int diskSize = 1024 * 1024 * 100;
int memorySize = (int) (Runtime.getRuntime().maxMemory()) / 8; // ๅ1/8ๆๅคงๅ
ๅญไฝไธบๆๅคง็ผๅญ
@Override
public void applyOptions(Context context, GlideBuilder builder) {
// ๅฎไน็ผๅญๅคงๅฐๅไฝ็ฝฎ
builder.setDiskCache(new InternalCacheDiskCacheFactory(context, "image_cache", diskSize)); //ๅ
ๅญไธญ
// builder.setDiskCache(new ExternalCacheDiskCacheFactory(context, "image_cache", diskSize)); //sdๅกไธญ
// ้ป่ฎคๅ
ๅญๅๅพ็ๆฑ ๅคงๅฐ
MemorySizeCalculator calculator = new MemorySizeCalculator(context);
int defaultMemoryCacheSize = calculator.getMemoryCacheSize(); // ้ป่ฎคๅ
ๅญๅคงๅฐ
int defaultBitmapPoolSize = calculator.getBitmapPoolSize(); // ้ป่ฎคๅพ็ๆฑ ๅคงๅฐ
builder.setMemoryCache(new LruResourceCache(defaultMemoryCacheSize));
builder.setBitmapPool(new LruBitmapPool(defaultBitmapPoolSize));
// ่ชๅฎไนๅ
ๅญๅๅพ็ๆฑ ๅคงๅฐ
builder.setMemoryCache(new LruResourceCache(memorySize));
builder.setBitmapPool(new LruBitmapPool(memorySize));
// ๅฎไนๅพ็ๆ ผๅผ
//builder.setDecodeFormat(DecodeFormat.PREFER_ARGB_8888);
builder.setDecodeFormat(DecodeFormat.PREFER_RGB_565); // ้ป่ฎค
ViewTarget.setTagId(R.id.glide_tag_id);//่ฎพ็ฝฎtag
}
@Override
public void registerComponents(Context context, Glide glide) {
}
}
| [
"dylanqing@163.com"
] | dylanqing@163.com |
08a878a147216002e0b2fc884e2d80c9f35da8f1 | 3221b6bc93eea51d46d9baec8b76ac6f24b90313 | /Studio/plugins/com.wizzer.mle.studio.dwp/src/java/com/wizzer/mle/studio/dwp/ui/DwpMediaRefTargetContextMenuHandler.java | 38ab908f32cccc09062e159df645bcdae56da7f8 | [
"MIT"
] | permissive | magic-lantern-studio/mle-studio | 67224f61d0ba8542b39c4a6ed6bd65b60beab15d | 06520cbff5b052b98c7280f51f25e528b1c98b64 | refs/heads/master | 2022-01-12T04:11:56.033265 | 2022-01-06T23:40:11 | 2022-01-06T23:40:11 | 128,479,137 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,744 | java | /*
* DwpMediaRefTargetContextMenuHandler.java
*/
// COPYRIGHT_BEGIN
//
// The MIT License (MIT)
//
// Copyright (c) 2000-2020 Wizzer Works
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
// COPYRIGHT_END
// Declare package.
package com.wizzer.mle.studio.dwp.ui;
// Import Eclipse classes.
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.MenuItem;
// Import Magic Lantern Tool Framework classes.
import com.wizzer.mle.studio.framework.attribute.IAttribute;
import com.wizzer.mle.studio.framework.ui.AttributeTreeViewer;
import com.wizzer.mle.studio.dwp.attribute.DwpItemAttribute;
import com.wizzer.mle.studio.dwp.attribute.DwpMediaAttribute;
import com.wizzer.mle.studio.dwp.attribute.DwpMediaRefTargetAttribute;
import com.wizzer.mle.studio.dwp.attribute.DwpSceneAttribute;
/**
* This class is used to provide a handler for a context menu in an
* <code>AttributetreeViewer</code> for a <code>DwpMediaRefTargetAttribute</code>.
*
* @author Mark S. Millard
*/
public class DwpMediaRefTargetContextMenuHandler extends AbstractItemContextMenuHandler
{
// A menu item for adding a Media DWP item.
private MenuItem m_popupAddMediaItem = null;
// The current count of Media items.
private int m_mediaCount = 0;
/**
* The default constructor.
*/
public DwpMediaRefTargetContextMenuHandler()
{
super();
}
/**
* Initialize the handler.
* <p>
* This must be called prior to getting the context menu.
* </p>
*
* @param viewer The <code>AttributeTreeViewer</code> that will use the
* context menu.
*/
public void init(AttributeTreeViewer viewer)
{
super.init(viewer);
this.createContextMenu();
}
/**
* Create the context menu.
*/
protected void createContextMenu()
{
// Create a context menu for adding elements to the Attribute tree.
m_popupMenu = new Menu(m_viewer.getControl().getShell(),SWT.POP_UP);
// Add menu item for adding MediaRef Source DWP item.
m_popupAddMediaItem = new MenuItem(m_popupMenu,SWT.PUSH);
m_popupAddMediaItem.setText("Add DWP Media Item");
m_popupAddMediaItem.addListener(SWT.Selection,
new Listener()
{
public void handleEvent(Event e)
{
popupAddListElementActionPerformed(e,
DwpItemAttribute.TYPE_DWP_MEDIA);
}
});
super.createContextMenu();
}
/**
* Process the "Add List Element" action.
*
* @param event The selection event that caused this handler to be invoked.
* @param type The type of <code>Attribute</code> to add.
*/
public void popupAddListElementActionPerformed(Event event, String type)
{
DwpMediaRefTargetAttribute mref = (DwpMediaRefTargetAttribute)m_viewer.getSelectedAttribute();
if (type == DwpItemAttribute.TYPE_DWP_MEDIA)
{
Integer flags = new Integer(0);
String label = "source";
String url = "file://filename";
DwpMediaAttribute media = new DwpMediaAttribute(flags,label,url,false);
mref.addChild(media,m_viewer.getTable());
}
}
/**
* Get a context <code>Menu</code> for the specified <code>IAttribute</code>.
*
* @param attribute The <code>IAttribute</code> to create a context menu for.
*
* @return A reference to a <code>Menu</code> is returned.
*/
public Menu getContextMenu(IAttribute attribute, AttributeTreeViewer viewer)
{
Menu popup = null;
String type = attribute.getType();
IAttribute parent = attribute.getParent();
String parentType = parent.getType();
if (type == DwpSceneAttribute.TYPE_DWP_MEDIAREFTARGET)
{
init(viewer);
popup = m_popupMenu;
}
return popup;
}
}
| [
"msm@wizzerworks.com"
] | msm@wizzerworks.com |
2a196d6cd2fceabfde9b6c04232289952cefb0f3 | 0080e5270554a0c1be9eecad92ade5928320efb3 | /July2021JavaSelenium/src/com/icici/loans/carloans/FirstClass.java | 189fdd95f8703acf264f73ec87ee18c23b483091 | [] | no_license | BhaskarPL/TestAutomationCode | 95bbed948d355bf5e577121ce26838fe6d898f03 | dc106dbdf55a38a11abdaf288b0528cacb5f7c0a | refs/heads/master | 2023-07-08T05:16:04.294727 | 2021-08-21T01:33:58 | 2021-08-21T01:33:58 | 395,868,624 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 180 | java | package com.icici.loans.carloans;
public class FirstClass
{
public static void main(String[] args)
{
System.out.println("Hi! Welcome to selenium java");
}
}
| [
"bhaskarpl@gmail.com"
] | bhaskarpl@gmail.com |
aac9e3eef0e1b122f7f57fe48ba7b5d6ca6530f1 | cebd107c8658e2591372e8beba39865b3c2f1b3f | /src/main/java/com/imooc/o2o/dto/ShopExecution.java | 09b7b14132a17fba2d100e6c97adb59ece2c51ed | [] | no_license | thundermike/o2o-spring-boot | 93e6042433e762096e181440c69d2ec5920789b8 | 2735ccc8b78dbf7338217804ed59a88762954d21 | refs/heads/master | 2020-03-20T10:12:07.431673 | 2018-06-14T13:10:47 | 2018-06-14T13:10:47 | 137,362,394 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,968 | java | package com.imooc.o2o.dto;
import com.imooc.o2o.entity.Shop;
import com.imooc.o2o.enums.ShopStatusEnum;
import java.util.List;
/**
* Created by byinl on 2018/6/12 16:44.
*/
public class ShopExecution {
//็ปๆ็ถๆ
private int status;
//็ถๆๆ ่ฏ
private String statusInfo;
//ๅบ้บๆฐ้
private int shopCount;
//ๆไฝ็shop(ๅขๅ ๆน)
private Shop shop;
//shopๅ่กจ(ๆฅ่ฏข)
private List<Shop> shopList;
public ShopExecution() {
}
//ๅบ้บๆไฝๅคฑ่ดฅๆ
ๅต็ๆ้ ๅจ
public ShopExecution(ShopStatusEnum statusEnum) {
this.status = statusEnum.getStatus();
this.statusInfo = statusEnum.getStatusInfo();
}
//ๅบ้บๆไฝๆๅๆ
ๅต็ๆ้ ๅจ
public ShopExecution(ShopStatusEnum statusEnum, Shop shop) {
this.shop = shop;
this.status = statusEnum.getStatus();
this.statusInfo = statusEnum.getStatusInfo();
}
//ๅบ้บๆไฝๆๅๆ
ๅต็ๆ้ ๅจ
public ShopExecution(ShopStatusEnum statusEnum, List<Shop> shopList) {
this.shopList = shopList;
this.status = statusEnum.getStatus();
this.statusInfo = statusEnum.getStatusInfo();
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
public String getStatusInfo() {
return statusInfo;
}
public void setStatusInfo(String statusInfo) {
this.statusInfo = statusInfo;
}
public int getShopCount() {
return shopCount;
}
public void setShopCount(int shopCount) {
this.shopCount = shopCount;
}
public Shop getShop() {
return shop;
}
public void setShop(Shop shop) {
this.shop = shop;
}
public List<Shop> getShopList() {
return shopList;
}
public void setShopList(List<Shop> shopList) {
this.shopList = shopList;
}
}
| [
"Thunder4j@163.com"
] | Thunder4j@163.com |
ef6d5a9c8f29631c901f454a91e976fbb39e6e9c | d820d18eef6fca0110dfc367d8cfd2101d9c85e5 | /Uri1020.java | 25caf0e646a482cf43b98d46e77091ebbbc2493f | [] | no_license | paolaroberta84/JAVA | 9508c6d5a827854b6ecfe060a52cfb48c67140eb | 4691dd3c50c01f39b4d63a7c4186bd18febb9c06 | refs/heads/master | 2023-04-01T01:54:07.640280 | 2021-04-16T20:33:18 | 2021-04-16T20:33:18 | 358,710,190 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 224 | java | import java.util.Scanner;
public class Uri1020{
public static void main(String args[]){
Scanner teclado = new Scanner(System.in);
int ano, mes, dia, saida;
saida = teclado.nextInt();
| [
"paolaroberta84@gmail.com"
] | paolaroberta84@gmail.com |
1f91e016ea9f87bd07b764ded46b41967b342ced | 130d4e7c5c36e5e33cd99893a65e9b2dd540dee0 | /app/src/androidTest/java/com/example/showhour/ExampleInstrumentedTest.java | f031dee0d143860726716c3f9289b7828c18d104 | [] | no_license | aarshic/ShowHour | 48ba0ae00bd09a041608c48da3528f68b6b9edbd | 2fba8f7ea4fe83e3f440ffa2e9fec07ec0fb19cd | refs/heads/main | 2023-05-31T15:12:34.849531 | 2021-06-23T18:47:13 | 2021-06-23T18:47:13 | 377,481,960 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 754 | java | package com.example.showhour;
import android.content.Context;
import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("com.example.showhour", appContext.getPackageName());
}
} | [
"aarshi.1998@gmail.com"
] | aarshi.1998@gmail.com |
d803423b3eeecdbeadcf9b17216fbb2c33546a59 | eb97ee5d4f19d7bf028ae9a400642a8c644f8fe3 | /trunk/seasar-benchmark/src/main/java/benchmark/wire/Bean00862AImpl.java | 7579bb97348d9848588ac9d12246ebc711effb88 | [] | no_license | svn2github/s2container | 54ca27cf0c1200a93e1cb88884eb8226a9be677d | 625adc6c4e1396654a7297d00ec206c077a78696 | refs/heads/master | 2020-06-04T17:15:02.140847 | 2013-08-09T09:38:15 | 2013-08-09T09:38:15 | 10,850,644 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 340 | java | package benchmark.wire;
public class Bean00862AImpl implements Bean00862A {
private benchmark.wire.Bean00862B bean00862B;
public benchmark.wire.Bean00862B getBean00862B() {
return bean00862B;
}
public void setBean00862B(benchmark.wire.Bean00862B bean00862B) {
this.bean00862B = bean00862B;
}
}
| [
"manhole@319488c0-e101-0410-93bc-b5e51f62721a"
] | manhole@319488c0-e101-0410-93bc-b5e51f62721a |
71d47d056ec3b21ca906870686a0b038754886db | 68d8b6cac8dde453840819e20f35da2ff699f845 | /1_basicLearningOfJava/chapter_03/question_8/Mondai8_5.java | a42df7b2da86103c2ece48492ed1c8c03798d5f0 | [] | no_license | riha-git/work_sv | 3c22ed2416e985f5a0ec0219240299c1382193a7 | 2ee9fafcc94f2c8e33ae60535e17bc6c2ca925e5 | refs/heads/master | 2020-06-27T22:42:49.764865 | 2019-09-30T11:22:13 | 2019-09-30T11:22:13 | 200,072,361 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 153 | java | public class Mondai8_5
{
public static void main(String[] args)
{
int age1, age2;
age1 = 20;
age2 = 25;
System.out.println(age1 != age2);
}
}
| [
"d09048@shibaura-it.ac.jp"
] | d09048@shibaura-it.ac.jp |
16865b2e6db24b5bb230ecf358c59a3fb47c9475 | a89d313f1ac3865fd107e6b461d6e8f784a32022 | /src/main/java/com/java/petclinic/H2SecurityConfiguration.java | 8411f8ae8e060e669fe2110c327a5b30e7925f44 | [] | no_license | Brkcan/petclinic | dd25a2e523ca0bddcb0185103fe7dce9393af00b | 39c6d5fc0d5effea404de5be96722e2983320fff | refs/heads/master | 2022-11-11T15:40:05.513115 | 2020-06-29T16:16:46 | 2020-06-29T16:16:46 | 269,960,430 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 680 | java | package com.java.petclinic;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.annotation.Order;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
@Configuration
@Order(value = 0)
public class H2SecurityConfiguration extends WebSecurityConfigurerAdapter{
@Override
protected void configure(HttpSecurity http) throws Exception {
http.antMatcher("/h2-console/**");
http.authorizeRequests().anyRequest().permitAll();
http.csrf().disable();
http.headers().frameOptions().disable();
}
}
| [
"root@burak-computer"
] | root@burak-computer |
0533ffbbf8296eea7f9ed78edfe8021e8af78325 | 37cb01f2967bdf21f5038e4f774a5a86efdb224e | /src/main/java/com/webpu/WeixinApplication.java | 624705fa69cb3922395671251c1f38a7fbfaced7 | [] | no_license | webpu/spring-boot-weixin | 58f2325b8816c3e6e06c7288529ba24163d3f314 | 81a90cd38c34d95556c4f01975eefedb18bcf9c8 | refs/heads/master | 2020-03-12T00:03:45.367493 | 2018-04-28T01:59:05 | 2018-04-28T01:59:05 | 130,339,860 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 798 | java | package com.webpu;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
import tk.mybatis.spring.annotation.MapperScan;
@EnableScheduling
@EnableAsync
@SpringBootApplication
//ๆซๆ mybatis mapper ๅ
่ทฏๅพ
@MapperScan(basePackages = "com.webpu.m.mapper")
//ๆซๆ ๆๆ้่ฆ็ๅ
, ๅ
ๅซไธไบ่ช็จ็ๅทฅๅ
ท็ฑปๅ
ๆๅจ็่ทฏๅพ
@ComponentScan(basePackages= {"com.webpu.m","org.n3r.idworker"})
public class WeixinApplication {
public static void main(String[] args) {
SpringApplication.run(WeixinApplication.class, args);
}
}
| [
"legendjf@163.com"
] | legendjf@163.com |
7381343d0f42a45aa0fe717e0a265cbe38df2a06 | c26f9fb9f087a206b0460c9afdaa596b3aa132cf | /src/TopInterviewQuestions/Strings/Easy/ReverseInteger.java | badb6cac1a1c33678a02f663ab26f26d65b3b63c | [] | no_license | akalamaras/coding-interview-prep | 8e2a1176ea99688f87dacc8e6c520fb8777fbb99 | e6d5ce7c21e7a4998c3c80a85828d6521213ea9c | refs/heads/master | 2020-09-02T13:49:50.800733 | 2019-11-03T01:10:22 | 2019-11-03T01:10:22 | 219,234,533 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 510 | java | package TopInterviewQuestions.Strings.Easy;
public class ReverseInteger {
public int reverse(int x) {
long res = 0;
while(x != 0) {
res = res*10 + x%10;
x = x/10;
}
if(res > Integer.MAX_VALUE || res < Integer.MIN_VALUE)
return 0;
else
return (int)res;
}
public static void main(String[] args) {
ReverseInteger re = new ReverseInteger();
System.out.println(re.reverse(-2147483648));
}
}
| [
"34840338+akalamaras@users.noreply.github.com"
] | 34840338+akalamaras@users.noreply.github.com |
6f4dba0f05c29d8e9fd221a3070ff1a6d6eb773b | 780864acbf897bd9dfe4851de3a03954179d9b92 | /src/main/java/com/potato/spring/boot/blog/repository/CatalogRepository.java | 078828fb3b990444c04b141a4a9d86bbbc52e95b | [] | no_license | potatogit/the-juttys | f09b00987729e83f937b3d28295a7f4493133d6a | ad7f2bc4697194c197cc3c92b9800209a324c5d8 | refs/heads/master | 2020-03-27T23:33:49.956444 | 2018-10-11T06:57:55 | 2018-10-11T06:57:55 | 147,328,261 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 416 | java | package com.potato.spring.boot.blog.repository;
import java.util.List;
import org.springframework.data.jpa.repository.JpaRepository;
import com.potato.spring.boot.blog.domain.User;
import com.potato.spring.boot.blog.domain.Catalog;
public interface CatalogRepository extends JpaRepository<Catalog, Long> {
List<Catalog> findByUser(User user);
List<Catalog> findByUserAndName(User user, String name);
}
| [
"yang_yu@worksap.co.jp"
] | yang_yu@worksap.co.jp |
8aec80bca30f36c7959fed2ca88b11982e7792da | 10b44deb47d3fbe13b24f76dad3af7f63faabe4d | /app/src/main/java/com/ru/crypto/ui/fragments/CurrencyInfoFragment.java | 83547444d88071c6aa9822f404be8df7eac5386f | [] | no_license | Giksengik/Crypto-App | e9ac4afa907abd5180a59dd38c299f0748796e62 | 33462442e025c78929da9c0d8df053b5aa8f13d6 | refs/heads/main | 2023-04-30T23:59:43.035418 | 2021-05-19T11:24:06 | 2021-05-19T11:24:06 | 357,466,151 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,475 | java | package com.ru.crypto.ui.fragments;
import android.media.Image;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import androidx.recyclerview.widget.GridLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import com.bumptech.glide.Glide;
import com.bumptech.glide.request.RequestOptions;
import com.ru.crypto.R;
import com.ru.crypto.adapters.CharacteristicsBlockAdapter;
import com.ru.crypto.databinding.FragmentCurrencyInfoBinding;
import com.ru.crypto.models.CryptoCurrency;
import com.ru.crypto.utils.factories.DefaultCurrencyCharacteristicsMakerFactory;
import com.ru.crypto.utils.factories.ICurrencyCharacteristicsMaker;
public class CurrencyInfoFragment extends Fragment {
private ICurrencyCharacteristicsMaker characteristicsMaker;
private FragmentCurrencyInfoBinding binding;
public static CurrencyInfoFragment newInstance(CryptoCurrency currency) {
return new CurrencyInfoFragment(currency);
}
private CurrencyInfoFragment(CryptoCurrency currency) {
characteristicsMaker = new DefaultCurrencyCharacteristicsMakerFactory().getMaker();
characteristicsMaker.setCryptoCurrency(currency);
}
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
binding = FragmentCurrencyInfoBinding.inflate(inflater);
View root = binding.getRoot();
setData();
return root;
}
public void setData() {
characteristicsMaker.setIcon(binding.currencyInfoIcon);
binding.currencyInfoName.setText(characteristicsMaker.getCurrencyName());
binding.characteristicsBlockList.setLayoutManager(new GridLayoutManager(getContext(), 2));
CharacteristicsBlockAdapter adapter = new CharacteristicsBlockAdapter();
binding.characteristicsBlockList.setNestedScrollingEnabled(false);
binding.characteristicsBlockList.setAdapter(adapter);
adapter.setCurrencyCharacteristics(characteristicsMaker.getCharacteristics());
}
}
| [
"giksengik@gmail.com"
] | giksengik@gmail.com |
05fecbef88310b1a4cd680cd8e662184d93f96ef | 10277cb3b6cbe26036be8d1f8778a893120c156f | /src/test/java/service/AdRepositoryTest.java | 85c387464ff762ef6a710b1b3589f02034845041 | [] | no_license | SavvaMey/job4j_cars | dde583a2ff0255ec8d05821a89bec452b544799e | 7d038f9f5ca250815acd4f1ebb240e2fd4454349 | refs/heads/master | 2023-04-03T12:11:49.923792 | 2021-03-31T08:36:18 | 2021-03-31T08:36:18 | 350,420,188 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 87 | java | package service;
import static org.junit.Assert.*;
public class AdRepositoryTest {
} | [
"savva28031997@gmail.com"
] | savva28031997@gmail.com |
2d269032d37d4c5227393024946360439faa12c6 | 9f987a203bfe8a1bc7b2d5019e1efb5e3ae0f6bb | /Modern/wrapperPlugins/src/test/java/org/bonej/wrapperPlugins/CommonWrapperTests.java | dec00950d372286e467c46c25ea833513e17a2d7 | [
"BSD-2-Clause"
] | permissive | imagejan/BoneJ2 | d677d1d7b04fadc54f4bf9412a868493a7fa3075 | 6cbe7065f33903207faa7cca64b709bfb04b92b8 | refs/heads/master | 2021-05-15T13:51:13.384698 | 2017-10-13T17:26:48 | 2017-10-13T17:26:48 | 107,234,173 | 0 | 0 | null | 2017-10-17T07:38:29 | 2017-10-17T07:38:29 | null | UTF-8 | Java | false | false | 9,014 | java |
package org.bonej.wrapperPlugins;
import static org.bonej.wrapperPlugins.CommonMessages.BAD_CALIBRATION;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.ArgumentMatchers.startsWith;
import static org.mockito.Mockito.after;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import static org.scijava.ui.DialogPrompt.MessageType.WARNING_MESSAGE;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.stream.IntStream;
import net.imagej.ImageJ;
import net.imagej.ImgPlus;
import net.imagej.axis.Axes;
import net.imagej.axis.DefaultLinearAxis;
import net.imglib2.img.Img;
import net.imglib2.img.array.ArrayImgs;
import net.imglib2.type.numeric.real.DoubleType;
import org.scijava.command.Command;
import org.scijava.command.CommandModule;
import org.scijava.ui.DialogPrompt;
import org.scijava.ui.UserInterface;
import org.scijava.ui.swing.sdi.SwingDialogPrompt;
import ij.ImagePlus;
import ij.gui.NewImage;
import ij.measure.Calibration;
import ij.process.ImageStatistics;
/**
* Common tests for wrapper plugins
*
* @author Richard Domander
*/
public class CommonWrapperTests {
public static <C extends Command> void testNullImageCancelsPlugin(
final ImageJ imageJ, final Class<C> commandClass) throws Exception
{
// SETUP
final UserInterface mockUI = mockUIService(imageJ);
// EXECUTE
final CommandModule module = imageJ.command().run(commandClass, true,
"inputImage", null).get();
// VERIFY
assertTrue("Null image should have canceled the plugin", module
.isCanceled());
assertEquals("Cancel reason is incorrect", CommonMessages.NO_IMAGE_OPEN,
module.getCancelReason());
verify(mockUI, after(100)).dialogPrompt(anyString(), anyString(), any(),
any());
}
public static <C extends Command> void test2DImageCancelsPlugin(
final ImageJ imageJ, final Class<C> commandClass) throws Exception
{
// SETUP
final UserInterface mockUI = mockUIService(imageJ);
// Create an image with only two spatial dimensions
final DefaultLinearAxis xAxis = new DefaultLinearAxis(Axes.X);
final DefaultLinearAxis yAxis = new DefaultLinearAxis(Axes.Y);
final DefaultLinearAxis cAxis = new DefaultLinearAxis(Axes.CHANNEL);
final Img<DoubleType> img = ArrayImgs.doubles(10, 10, 3);
final ImgPlus<DoubleType> imgPlus = new ImgPlus<>(img, "Test image", xAxis,
yAxis, cAxis);
// EXECUTE
final CommandModule module = imageJ.command().run(commandClass, true,
"inputImage", imgPlus).get();
// VERIFY
assertTrue("2D image should have cancelled the plugin", module
.isCanceled());
assertEquals("Cancel reason is incorrect", CommonMessages.NOT_3D_IMAGE,
module.getCancelReason());
verify(mockUI, after(100)).dialogPrompt(anyString(), anyString(), any(),
any());
}
public static <C extends Command> void testNonBinaryImageCancelsPlugin(
final ImageJ imageJ, final Class<C> commandClass) throws Exception
{
// SETUP
final UserInterface mockUI = mockUIService(imageJ);
// Create a test image with more than two colors
final DefaultLinearAxis xAxis = new DefaultLinearAxis(Axes.X);
final DefaultLinearAxis yAxis = new DefaultLinearAxis(Axes.Y);
final DefaultLinearAxis zAxis = new DefaultLinearAxis(Axes.Z);
final Img<DoubleType> img = ArrayImgs.doubles(5, 5, 5);
final ImgPlus<DoubleType> imgPlus = new ImgPlus<>(img, "Test image", xAxis,
yAxis, zAxis);
final Iterator<Integer> intIterator = IntStream.iterate(0, i -> i + 1)
.iterator();
imgPlus.cursor().forEachRemaining(e -> e.setReal(intIterator.next()));
// EXECUTE
final CommandModule module = imageJ.command().run(commandClass, true,
"inputImage", imgPlus).get();
// VERIFY
assertTrue(
"An image with more than two colours should have cancelled the plugin",
module.isCanceled());
assertEquals("Cancel reason is incorrect", CommonMessages.NOT_BINARY, module
.getCancelReason());
verify(mockUI, after(100)).dialogPrompt(anyString(), anyString(), any(),
any());
}
public static <C extends Command> void testNoCalibrationShowsWarning(
final ImageJ imageJ, final Class<C> commandClass,
Object... additionalInputs) throws Exception
{
// SETUP
// Mock UI
final UserInterface mockUI = mock(UserInterface.class);
final SwingDialogPrompt mockPrompt = mock(SwingDialogPrompt.class);
when(mockUI.dialogPrompt(eq(BAD_CALIBRATION), anyString(), eq(
WARNING_MESSAGE), any())).thenReturn(mockPrompt);
imageJ.ui().setDefaultUI(mockUI);
// Create an hyperstack with no calibration
final DefaultLinearAxis xAxis = new DefaultLinearAxis(Axes.X);
final DefaultLinearAxis yAxis = new DefaultLinearAxis(Axes.Y);
final DefaultLinearAxis zAxis = new DefaultLinearAxis(Axes.Z);
final DefaultLinearAxis tAxis = new DefaultLinearAxis(Axes.TIME);
final Img<DoubleType> img = ArrayImgs.doubles(5, 5, 5, 2);
final ImgPlus<DoubleType> imgPlus = new ImgPlus<>(img, "Test image", xAxis,
yAxis, zAxis, tAxis);
final List<Object> inputs = new ArrayList<>();
inputs.add("inputImage");
inputs.add(imgPlus);
Collections.addAll(inputs, additionalInputs);
// EXECUTE
imageJ.command().run(commandClass, true, inputs.toArray()).get();
// VERIFY
verify(mockUI, after(100).times(1)).dialogPrompt(eq(BAD_CALIBRATION),
anyString(), eq(WARNING_MESSAGE), any());
}
public static <C extends Command> void testNonBinaryImagePlusCancelsPlugin(
final ImageJ imageJ, final Class<C> commandClass) throws Exception
{
// SETUP
final UserInterface mockUI = mockUIService(imageJ);
final ImagePlus nonBinaryImage = mock(ImagePlus.class);
final ImageStatistics stats = new ImageStatistics();
stats.pixelCount = 3;
stats.histogram = new int[256];
stats.histogram[0x00] = 1;
stats.histogram[0x01] = 1;
stats.histogram[0xFF] = 1;
when(nonBinaryImage.getStatistics()).thenReturn(stats);
when(nonBinaryImage.getNSlices()).thenReturn(2);
// EXECUTE
final CommandModule module = imageJ.command().run(commandClass, true,
"inputImage", nonBinaryImage).get();
// VERIFY
assertTrue(
"An image with more than two colours should have cancelled the plugin",
module.isCanceled());
assertEquals("Cancel reason is incorrect",
CommonMessages.NOT_8_BIT_BINARY_IMAGE, module.getCancelReason());
verify(mockUI, after(100)).dialogPrompt(anyString(), anyString(), any(),
any());
}
public static <C extends Command> void test2DImagePlusCancelsPlugin(
final ImageJ imageJ, final Class<C> commandClass) throws Exception
{
// SETUP
final UserInterface mockUI = mockUIService(imageJ);
final ImagePlus image = mock(ImagePlus.class);
when(image.getNSlices()).thenReturn(1);
// EXECUTE
final CommandModule module = imageJ.command().run(commandClass, true,
"inputImage", image).get();
// VERIFY
assertTrue("2D image should have cancelled the plugin", module
.isCanceled());
assertEquals("Cancel reason is incorrect", CommonMessages.NOT_3D_IMAGE,
module.getCancelReason());
verify(mockUI, after(100)).dialogPrompt(anyString(), anyString(), any(),
any());
}
public static UserInterface mockUIService(final ImageJ imageJ) {
final UserInterface mockUI = mock(UserInterface.class);
final SwingDialogPrompt mockPrompt = mock(SwingDialogPrompt.class);
when(mockUI.dialogPrompt(any(), anyString(), any(), any())).thenReturn(
mockPrompt);
imageJ.ui().setDefaultUI(mockUI);
return mockUI;
}
/**
* Tests that running the given command with an anisotropic {@link ImagePlus}
* shows a warning dialog that can be used to cancel the plugin
*/
public static <C extends Command> void testAnisotropyWarning(
final ImageJ imageJ, final Class<C> commandClass) throws Exception
{
// SETUP
final UserInterface mockUI = mock(UserInterface.class);
final SwingDialogPrompt mockPrompt = mock(SwingDialogPrompt.class);
when(mockPrompt.prompt()).thenReturn(DialogPrompt.Result.CANCEL_OPTION);
when(mockUI.dialogPrompt(startsWith("The image is anisotropic"),
anyString(), eq(WARNING_MESSAGE), any())).thenReturn(mockPrompt);
imageJ.ui().setDefaultUI(mockUI);
final Calibration calibration = new Calibration();
calibration.pixelWidth = 300;
calibration.pixelHeight = 1;
calibration.pixelDepth = 1;
final ImagePlus imagePlus = NewImage.createByteImage("", 5, 5, 5, 1);
imagePlus.setCalibration(calibration);
// EXECUTE
final CommandModule module = imageJ.command().run(commandClass, true,
"inputImage", imagePlus).get();
// VERIFY
verify(mockUI, after(100).times(1)).dialogPrompt(startsWith(
"The image is anisotropic"), anyString(), eq(WARNING_MESSAGE), any());
assertTrue("Pressing cancel on warning dialog should have cancelled plugin",
module.isCanceled());
}
}
| [
"rdomander@rvc.ac.uk"
] | rdomander@rvc.ac.uk |
0176aace61537141605bae83027854d4615bea71 | 2d62bbd24ebc6c2b109d39378b1e75985afbed81 | /bundles/Toometa/de.uka.ipd.sdq.dsexplore.qml.contract/src/de/uka/ipd/sdq/dsexplore/qml/contract/DeterministicEvaluationAspect.java | 962c22d14fd839de8e7c4b8114acb4e2d81282d5 | [
"Apache-2.0"
] | permissive | SebastianWeberKamp/KAMP | 1cc11c83da882f5b0660fe1de6a6c80e13386841 | 818206ab33c9a2c4f3983d40943e2598d034d18e | refs/heads/master | 2020-09-20T08:15:02.977029 | 2019-12-18T12:35:11 | 2019-12-18T12:35:11 | 224,419,712 | 0 | 0 | Apache-2.0 | 2019-11-27T11:54:14 | 2019-11-27T11:54:13 | null | UTF-8 | Java | false | false | 463 | java | /**
*/
package de.uka.ipd.sdq.dsexplore.qml.contract;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Deterministic Evaluation Aspect</b></em>'.
* <!-- end-user-doc -->
*
*
* @see de.uka.ipd.sdq.dsexplore.qml.contract.QMLContractPackage#getDeterministicEvaluationAspect()
* @model abstract="true"
* @generated
*/
public interface DeterministicEvaluationAspect extends EvaluationAspect {
} // DeterministicEvaluationAspect
| [
"layornos@gmail.com"
] | layornos@gmail.com |
c70f0e164ea47c7e2e79499ecf425121220eb02d | c81d0aac5a9f395433fe6f6bbab9a5a6b4c52aa1 | /app/src/main/java/me/rain/liteforfacebook/NotificationService.java | c98af38b8cb2b215ffd2ae39772df4a39ac3a3c6 | [
"MIT"
] | permissive | raininsummer/Messenger-for-Facebook | 673dd5236dd5140ff4ec18c67c410c2787205374 | 00747332bd8863998ffd9143659911cd9bd7b274 | refs/heads/master | 2020-08-04T19:44:27.790793 | 2016-08-31T02:30:30 | 2016-08-31T02:30:30 | 66,958,803 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,248 | java | package me.rain.liteforfacebook;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.res.Resources;
import android.graphics.Color;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Build;
import android.os.Handler;
import android.os.HandlerThread;
import android.os.IBinder;
import android.os.Looper;
import android.preference.PreferenceManager;
import android.support.v4.app.NotificationCompat;
import android.support.v4.app.TaskStackBuilder;
import android.util.Log;
import android.webkit.CookieManager;
import android.webkit.CookieSyncManager;
import android.widget.Toast;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
public class NotificationService extends Service {
// Facebook URL constants
private static final String BASE_URL = "https://mobile.facebook.com";
private static final String NOTIFICATIONS_URL = "https://m.facebook.com/notifications.php";
private static final String MESSAGES_URL = "https://m.facebook.com/messages";
private static final String MESSAGES_URL_BACKUP = "https://mobile.facebook.com/messages";
private static final String NOTIFICATION_OLD_MESSAGE_URL = "https://m.facebook.com/messages#";
// number of trials during notifications or messages checking
private static final int MAX_RETRY = 3;
private static final int JSOUP_TIMEOUT = 10000;
private static final String TAG;
// HandlerThread, Handler (final to allow synchronization) and its runnable
private final HandlerThread handlerThread;
private final Handler handler;
private static Runnable runnable;
// volatile boolean to safely skip checking while service is being stopped
private volatile boolean shouldContinue = true;
private static String userAgent;
private SharedPreferences preferences;
// static initializer
static {
TAG = NotificationService.class.getSimpleName();
}
// class constructor, starts a new thread in which checkers are being run
public NotificationService() {
handlerThread = new HandlerThread("Handler Thread");
handlerThread.start();
handler = new Handler(handlerThread.getLooper());
}
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
Log.i(TAG, "********** Service created! **********");
super.onCreate();
preferences = PreferenceManager.getDefaultSharedPreferences(this);
// create a runnable needed by a Handler
runnable = new HandlerRunnable();
// start a repeating checking, first run delay (3 seconds)
handler.postDelayed(runnable, 3000);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
return START_STICKY;
}
@Override
public void onDestroy() {
Log.i(TAG, "onDestroy: Service stopping...");
super.onDestroy();
synchronized (handler) {
shouldContinue = false;
handler.notify();
}
handler.removeCallbacksAndMessages(null);
handlerThread.quit();
}
/**
* A runnable used by the Handler to schedule checking.
*/
private class HandlerRunnable implements Runnable {
public void run() {
try {
// get time interval from tray preferences
final int timeInterval = Integer.parseInt(preferences.getString(SettingsActivity.KEY_PREF_NOTIFICATION_INTERVAL, "600000"));
// final int timeInterval = 10000;
Log.i(TAG, "Time interval: " + (timeInterval / 1000) + " seconds");
// time since last check = now - last check
final long now = System.currentTimeMillis();
final long sinceLastCheck = now - preferences.getLong("last_check", now);
final boolean ntfLastStatus = preferences.getBoolean("ntf_last_status", true);
final boolean msgLastStatus = preferences.getBoolean("msg_last_status", true);
if ((sinceLastCheck < timeInterval) && ntfLastStatus && msgLastStatus) {
final long waitTime = timeInterval - sinceLastCheck;
if (waitTime >= 1000) { // waiting less than a second is just stupid
Log.i(TAG, "I'm going to wait. Resuming in: " + (waitTime / 1000) + " seconds");
synchronized (handler) {
try {
handler.wait(waitTime);
} catch (InterruptedException ex) {
Log.i(TAG, "Thread interrupted");
} finally {
Log.i(TAG, "Lock is now released");
}
}
}
}
// when onDestroy() is run and lock is released, don't go on
if (shouldContinue) {
// start AsyncTasks if there is internet connection
// if (Connectivity.isConnected(getBaseContext())) {
// Log.i(TAG, "Internet connection active. Starting AsyncTask...");
// String connectionType = "Wi-Fi";
// if (Connectivity.isConnectedMobile(getBaseContext()))
// connectionType = "Mobile";
// Log.i(TAG, "Connection Type: " + connectionType);
userAgent = preferences.getString("webview_user_agent", System.getProperty("http.agent"));
Log.i(TAG, "User Agent: " + userAgent);
if (preferences.getBoolean(SettingsActivity.KEY_PREF_NOTIFICATIONS_ENABLED, false))
new CheckNotificationsTask().executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
if (preferences.getBoolean(SettingsActivity.KEY_PREF_NOTIFICATIONS_ENABLED, false))
new CheckMessagesTask().executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
// save current time (last potentially successful checking)
preferences.edit().putLong("last_check", System.currentTimeMillis()).apply();
} else
Log.i(TAG, "No internet connection. Skip checking.");
// set repeat time interval
handler.postDelayed(runnable, timeInterval);
// } else
// Log.i(TAG, "Notified to stop running. Exiting...");
} catch (RuntimeException re) {
Log.i(TAG, "RuntimeException caught");
restartItself();
}
}
}
/**
* Notifications checker task: it checks Facebook notifications only.
*/
private class CheckNotificationsTask extends AsyncTask<Void, Void, Element> {
boolean syncProblemOccurred = false;
private Element getElement(String connectUrl) {
try {
return Jsoup.connect(connectUrl).userAgent(userAgent).timeout(JSOUP_TIMEOUT)
.cookie("https://mobile.facebook.com", CookieManager.getInstance().getCookie("https://mobile.facebook.com")).get()
.select("a.touchable").not("a._19no").not("a.button").first();
} catch (IllegalArgumentException ex) {
Log.i("CheckNotificationsTask", "Cookie sync problem occurred");
if (!syncProblemOccurred) {
syncProblemToast();
syncProblemOccurred = true;
}
} catch (Exception ex) {
ex.printStackTrace();
}
return null;
}
@Override
protected Element doInBackground(Void... params) {
Element result = null;
int tries = 0;
syncCookies();
while (tries++ < MAX_RETRY && result == null) {
Log.i("CheckNotificationsTask", "doInBackground: Processing... Trial: " + tries);
Log.i("CheckNotificationsTask", "Trying: " + NOTIFICATIONS_URL);
Element notification = getElement(NOTIFICATIONS_URL);
if (notification != null)
result = notification;
}
return result;
}
@Override
protected void onPostExecute(Element result) {
try {
if (result == null)
return;
if (result.text() == null)
return;
String time = result.select("span.mfss.fcg").text();
String text = result.text().replace(time, "");
// if (!preferences.getBoolean("activity_visible", false) || preferences.getBoolean("notifications_everywhere", true)) {
if (!preferences.getString("last_notification_text", "").equals(text))
notifier(text, BASE_URL + result.attr("href"), false);
preferences.edit().putString("last_notification_text", text).apply();
// }
// save this check status
preferences.edit().putBoolean("ntf_last_status", true).apply();
Log.i("CheckNotificationsTask", "onPostExecute: Aight biatch ;)");
} catch (NumberFormatException ex) {
// save this check status
preferences.edit().putBoolean("ntf_last_status", false).apply();
Log.i("CheckNotificationsTask", "onPostExecute: Failure");
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
/**
* Messages checker task: it checks new messages only.
*/
private class CheckMessagesTask extends AsyncTask<Void, Void, String> {
boolean syncProblemOccurred = false;
private String getNumber(String connectUrl) {
try {
Elements message = Jsoup.connect(connectUrl).userAgent(userAgent).timeout(JSOUP_TIMEOUT)
.cookie("https://m.facebook.com", CookieManager.getInstance().getCookie("https://m.facebook.com")).get()
.select("div#viewport").select("div#page").select("div._129-")
.select("#messages_jewel").select("span._59tg");
return message.html();
} catch (IllegalArgumentException ex) {
Log.i("CheckMessagesTask", "Cookie sync problem occurred");
if (!syncProblemOccurred) {
syncProblemToast();
syncProblemOccurred = true;
}
} catch (Exception ex) {
ex.printStackTrace();
}
return "failure";
}
@Override
protected String doInBackground(Void... params) {
String result = null;
int tries = 0;
// sync cookies to get the right data
syncCookies();
while (tries++ < MAX_RETRY && result == null) {
Log.i("CheckMessagesTask", "doInBackground: Processing... Trial: " + tries);
// try to generate rss feed address
Log.i("CheckMsgTask:getNumber", "Trying: " + MESSAGES_URL);
String number = getNumber(MESSAGES_URL);
if (!number.matches("^[+-]?\\d+$")) {
Log.i("CheckMsgTask:getNumber", "Trying: " + MESSAGES_URL_BACKUP);
number = getNumber(MESSAGES_URL_BACKUP);
}
if (number.matches("^[+-]?\\d+$"))
result = number;
}
return result;
}
@Override
protected void onPostExecute(String result) {
try {
// parse a number of unread messages
int newMessages = Integer.parseInt(result);
// if (!preferences.getBoolean("activity_visible", false) || preferences.getBoolean("notifications_everywhere", true)) {
if (newMessages == 1)
notifier(getString(R.string.you_have_one_message), NOTIFICATION_OLD_MESSAGE_URL, true);
else if (newMessages > 1)
notifier(String.format(getString(R.string.you_have_n_messages), newMessages), NOTIFICATION_OLD_MESSAGE_URL, true);
// }
// save this check status
preferences.edit().putBoolean("msg_last_status", true).apply();
Log.i("CheckMessagesTask", "onPostExecute: Aight biatch ;)");
} catch (NumberFormatException ex) {
// save this check status
preferences.edit().putBoolean("msg_last_status", false).apply();
Log.i("CheckMessagesTask", "onPostExecute: Failure");
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
/**
* CookieSyncManager was deprecated in API level 21.
* We need it for API level lower than 21 though.
* In API level >= 21 it's done automatically.
*/
@SuppressWarnings("deprecation")
private void syncCookies() {
if (Build.VERSION.SDK_INT < 21) {
CookieSyncManager.createInstance(getApplicationContext());
CookieSyncManager.getInstance().sync();
}
}
// show a Sync Problem Toast while not being on UI Thread
private void syncProblemToast() {
Handler handler = new Handler(Looper.getMainLooper());
handler.post(new Runnable() {
@Override
public void run() {
Toast.makeText(getApplicationContext(), getString(R.string.error_facebook_noconnection),
Toast.LENGTH_SHORT).show();
}
});
}
// restart the service from inside the service
private void restartItself() {
final Context context = getApplicationContext();
final Intent intent = new Intent(context, NotificationService.class);
context.stopService(intent);
context.startService(intent);
}
// create a notification and display it
private void notifier(String title, String url, boolean isMessage) {
// let's display a notification, dude!
final String contentTitle;
if (isMessage)
contentTitle = getString(R.string.app_name) + ": " + getString(R.string.menu_messages);
else
contentTitle = getString(R.string.app_name) + ": " + getString(R.string.notifications_setting_title);
// log line (show what type of notification is about to be displayed)
Log.i(TAG, "Start notification - isMessage: " + isMessage);
// start building a notification
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this)
.setStyle(new NotificationCompat.BigTextStyle().bigText(title))
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle(contentTitle)
.setContentText(title)
.setTicker(title)
.setWhen(System.currentTimeMillis())
.setAutoCancel(true);
// // ringtone
// String ringtoneKey = "ringtone";
// if (isMessage)
// ringtoneKey = "ringtone_msg";
Uri ringtoneUri = Uri.parse("content://settings/system/notification_sound");
mBuilder.setSound(ringtoneUri);
// vibration
if (preferences.getBoolean(SettingsActivity.KEY_PREF_NOTIFICATION_VIBRATE, true))
mBuilder.setVibrate(new long[]{500, 500});
else
mBuilder.setVibrate(new long[]{0L});
// LED light
// if (preferences.getBoolean("led_light", false)) {
Resources resources = getResources(), systemResources = Resources.getSystem();
mBuilder.setLights(Color.CYAN,
resources.getInteger(systemResources.getIdentifier("config_defaultNotificationLedOn", "integer", "android")),
resources.getInteger(systemResources.getIdentifier("config_defaultNotificationLedOff", "integer", "android")));
// }
// priority for Heads-up
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN)
mBuilder.setPriority(Notification.PRIORITY_HIGH);
// intent with notification url in extra
Intent intent = new Intent(this, MainActivity.class);
intent.setAction(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
// final notification building
TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);
stackBuilder.addParentStack(MainActivity.class);
stackBuilder.addNextIntent(intent);
PendingIntent resultPendingIntent = PendingIntent.getActivity(getApplicationContext(), 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
mBuilder.setContentIntent(resultPendingIntent);
mBuilder.setOngoing(false);
Notification note = mBuilder.build();
// LED light flag
// if (preferences.getBoolean("led_light", false))
note.flags |= Notification.FLAG_SHOW_LIGHTS;
// display a notification
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
// because message notifications are displayed separately
if (isMessage)
mNotificationManager.notify(1, note);
else
mNotificationManager.notify(0, note);
}
// cancel all the notifications which are visible at the moment
// public static void cancelAllNotifications() {
// NotificationManager notificationManager = (NotificationManager)
// MyApplication.getContextOfApplication().getSystemService(Context.NOTIFICATION_SERVICE);
// notificationManager.cancelAll();
// }
}
| [
"duan1000dong@gmail.com"
] | duan1000dong@gmail.com |
a754cec4ab7e8ce26d5ad58c2a86a244eaaab8dc | a3b4feae4dd50b2a59839cafe8c5da330d18654e | /app/src/main/java/com/example/user/vnote/CourseInfo.java | 1f8cb308566b3b872f40302cf0a7652a7e876eb1 | [] | no_license | deshanjali/VNote-mobileApp | 9065361f4de1401d7d21e9cafd9f80107a082495 | 252bab1e149259576ce270d365aba845bd8b6a88 | refs/heads/master | 2020-04-05T12:46:29.870176 | 2018-12-13T04:31:48 | 2018-12-13T04:31:48 | 156,879,955 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,601 | java | package com.example.user.vnote;
import android.database.Cursor;
import android.os.Parcel;
import android.os.Parcelable;
import java.util.ArrayList;
import java.util.List;
public final class CourseInfo implements Parcelable {
private final String mCourseId;
private final String mTitle;
private final List<ModuleInfo> mModules;
public CourseInfo(String courseId, String title, List<ModuleInfo> modules) {
mCourseId = courseId;
mTitle = title;
mModules = modules;
}
private CourseInfo(Parcel source){
mCourseId = source.readString();
mTitle = source.readString();
mModules = new ArrayList<>();
source.readTypedList(mModules, ModuleInfo.CREATOR);
}
public static final Creator<CourseInfo> CREATOR = new Creator<CourseInfo>() {
@Override
public CourseInfo createFromParcel(Parcel source) {
return new CourseInfo(source);
}
@Override
public CourseInfo[] newArray(int size) {
return new CourseInfo[size];
}
};
public String getCourseId() {
return mCourseId;
}
public String getTitle() {
return mTitle;
}
public List<ModuleInfo> getModules() {
return mModules;
}
public boolean[] getModulesCompletionStatus() {
boolean[] status = new boolean[mModules.size()];
for(int i=0; i < mModules.size(); i++)
status[i] = mModules.get(i).isComplete();
return status;
}
public void setModulesCompletionStatus(boolean[] status) {
for(int i=0; i < mModules.size(); i++)
mModules.get(i).setComplete(status[i]);
}
public ModuleInfo getModule(String moduleId) {
for(ModuleInfo moduleInfo: mModules) {
if(moduleId.equals(moduleInfo.getModuleId()))
return moduleInfo;
}
return null;
}
@Override
public String toString() {
return mTitle;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CourseInfo that = (CourseInfo) o;
return mCourseId.equals(that.mCourseId);
}
@Override
public int hashCode() {
return mCourseId.hashCode();
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeString(mCourseId);
dest.writeString(mTitle);
dest.writeTypedList(mModules);
}
}
| [
"deshanjali1996824diyasena@gmail.com"
] | deshanjali1996824diyasena@gmail.com |
f4a1dd0b03c8e2f639f44ddd037e6418e678e8f7 | d28269a7d4848240b39fbe11efefb20e140d0bad | /src/ch/idsia/agents/reinforcementlearningcs175/GeneticNNMain.java | 7ccf5c01dd456cbd7de08f3fcc652eb3b2de4468 | [] | no_license | amrose91/CS175-Fall-2013-MarioAI | d63179f50bca43721a900c85e6c720065aba7904 | a728d29d9bb5d45bade6f5e0216b170d74ed4c43 | refs/heads/master | 2020-04-29T16:50:26.381316 | 2013-12-04T22:23:05 | 2013-12-04T22:23:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,216 | java | package ch.idsia.agents.reinforcementlearningcs175;
import java.util.Arrays;
public final class GeneticNNMain
{
public static void main(String[] args)
{
IProjectManager projectManager = new ProjectManager();
float[] best = new float[119];
float best_score = -(Float.MIN_VALUE);
// Config me if you want!!
int generations_to_run = 60;
int size_of_generation = 15;
int level_seed = 50;
projectManager.setLevelSeed(level_seed);
for(int i = 0; i < generations_to_run; i++)
{
//projectManager.setGUIEnabled(false);
//projectManager.setGUIEnabled(true);
projectManager.genAndRunNewAgents(size_of_generation);
System.err.println("Generation " + i + " TopScore: " + projectManager.getBestAgent().getAgentScore());
if(projectManager.getBestAgent().getAgentScore() > best_score)
{
best_score = projectManager.getBestAgent().getAgentScore();
best = Arrays.copyOf(projectManager.getBestAgent().getAgentWeights(), projectManager.getBestAgent().getAgentWeights().length);
}
projectManager.purgeCurrentGeneration();
}
System.err.println("Best score: " + best_score);
projectManager.setGUIEnabled(true);
projectManager.runWeights(best);
System.exit(0);
}
}
| [
"lawlyu@gmail.com"
] | lawlyu@gmail.com |
71b19ec4636866a7e9613963eb242d2fd878abe0 | a9ff03101432cef24cb880af1fbbd018d697fc82 | /src/Condori/johanna34739934/Empresa.java | eabd4bb25ec750f2314f846a01cd7151edad5e02 | [] | no_license | johannaCondori/PB2TNVALIDACION20202CCondoriJohanna | d9de1227ebe63bc059afc776e922b3010cb10a85 | b2358d9c61c759174d504f695c85a8a5e4ee94a5 | refs/heads/main | 2023-01-30T15:08:19.699886 | 2020-12-15T20:17:28 | 2020-12-15T20:17:28 | 315,766,117 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 781 | java | package Condori.johanna34739934;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.TreeSet;
public class Empresa {
// completar la clase Empresa
// si es necesraio agregue los metodos atributos y clases que crea que sea
// conveniente
private String nombre;
private HashMap<Integer, Camion> flota;
public Empresa() {
}
public void agregarCamion(Camion camion) {
// se agrega uncamion el primer camion tiene como identificador 0 el el segundo
// 1 2 3.4
Integer key=-1;
Integer contador= key+1;
flota.put( contador, camion);
}
public Integer cantidadDeCamiones() {
return flota.size();
}
public TreeSet<Camion> obtenerTiendascamionOrdenadoPorPatente() {
return null;
}
}
| [
"jocondori@alumno.unlam.edu.ar"
] | jocondori@alumno.unlam.edu.ar |
f4319db57f9f1549d08a57b763af152bebb9e0a0 | 0c9a8cf069f23cd019d3d2dc8011754820664d80 | /demo/src/main/java/com/github/vedenin/gwt/dnd/demo/client/DragProxyBehaviorPanel.java | 25a0baad6e9e7dce48a3c10aaf78b37b7fb9a229 | [
"Apache-2.0"
] | permissive | Vedenin/gwt-dnd | 639c45f8cbdf63d6e6d4d9f05f256cc1a7493fda | 124b07bd76d4f6b86eeda75755e7ef2c6f065abe | refs/heads/master | 2021-05-03T17:26:27.488506 | 2018-02-22T21:48:55 | 2018-02-22T21:48:55 | 120,447,084 | 3 | 1 | null | 2018-02-06T11:42:38 | 2018-02-06T11:42:38 | null | UTF-8 | Java | false | false | 1,808 | java | /*
* Copyright 2009 Fred Sauer
*
* 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.github.vedenin.gwt.dnd.demo.client;
import com.github.vedenin.gwt.dnd.client.PickupDragController;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
import com.google.gwt.user.client.ui.RadioButton;
class DragProxyBehaviorPanel extends BehaviorPanel {
public DragProxyBehaviorPanel(final PickupDragController dragController) {
super("Drag Proxy Behavior", "getBehaviorDragProxy() / setBehaviorDragProxy(boolean)");
final RadioButton classicButton = newButton("Widget is dragged",
"PickupDragController#setBehaviorDragProxy(false)");
final RadioButton proxyButton = newButton("Use drag proxies",
"PickupDragController#setBehaviorDragProxy(true)");
add(classicButton);
add(proxyButton);
if (dragController.getBehaviorDragProxy()) {
proxyButton.setValue(true);
} else {
classicButton.setValue(true);
}
ClickHandler handler = new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
dragController.setBehaviorDragProxy(proxyButton.getValue());
}
};
classicButton.addClickHandler(handler);
proxyButton.addClickHandler(handler);
}
}
| [
"vedenin1980@gmail.com"
] | vedenin1980@gmail.com |
a1921a7ebf510756f673a4b1e9c917316f96c8f3 | ef1fecf531b78454e66ccbcf29a6c1bb2e1d2451 | /src/com/finance/util/DownloadUtil.java | 07943339e159a30a6e62b9ad2c4dcf6937b0556a | [] | no_license | ryanbpmn/ff | 5d57ab06ee9f4b7e7cabab508bdfebee7b214cd1 | 8cc562f3b7ddd76ab2378bfb6b23a5e4d4b9699c | refs/heads/master | 2020-12-31T04:28:34.714957 | 2016-02-27T09:28:18 | 2016-02-27T09:28:18 | 52,607,418 | 0 | 0 | null | null | null | null | WINDOWS-1258 | Java | false | false | 2,781 | java | package com.finance.util;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
public class DownloadUtil {
public static String baseUrl = "http://market.finance.sina.com.cn/downxls.php?date=[#]&symbol=$$";
//2015-6-10.
public void downloadCJMX(String b,String code,Date from,Date to,String filePath){
Calendar calendar = new GregorianCalendar();
URL url;
Date temp = from;
try {
while (temp.before(to) || temp.equals(to)) {
String burl = b;
String date = temp.getYear()+1900 + "-"+
(temp.getMonth()+1 >=10 ? temp.getMonth()+1 : "0"+(temp.getMonth()+1)) +
"-"+(temp.getDate() >=10 ? temp.getDate() : "0"+temp.getDate());
//System.out.println(temp.getYear()+"-"+date);
burl = burl.replace("[#]",date);
if (code.startsWith("6"))
burl = burl.replace("$$", "sh"+code);
if (code.startsWith("0") )
burl = burl.replace("$$", "sz"+code);
if (code.startsWith("3") )
burl = burl.replace("$$", "sz"+code);
if (code.startsWith("2"))
burl = burl.replace("$$", "sh"+code);
//System.out.println("urlยฃยบ"+burl);
url = new URL(burl);
System.out.println("url:"+url);
URLConnection conn = url.openConnection();
InputStream is = conn.getInputStream();
FileOutputStream fs = new FileOutputStream(filePath+"\\"+code+"_"+date+".xls");
byte[] buffer = new byte[1024];
int length=0;
while ((length = is.read(buffer)) != -1) {
fs.write(buffer, 0, length);
}
calendar.setTime(temp);
calendar.add(calendar.DATE,1);
temp = calendar.getTime();
//System.out.println(temp);
}
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (Exception e) {
calendar.setTime(temp);
calendar.add(calendar.DATE,1);
temp = calendar.getTime();
downloadCJMX(b,"",temp, to,filePath);
}
}
public static void main(String[] args) {
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
try {
Date from = df.parse("2015-08-05");
Date to = df.parse("2015-08-07");
String filePath = "";
new DownloadUtil().downloadCJMX(baseUrl,"600399",from,to,filePath);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
| [
"lvrui@yichenghome.com"
] | lvrui@yichenghome.com |
21793bbeee8089473a29872084e14817046d4b8f | 52c7122fdce778694f7cfd3eaeaab67f2cb20275 | /yizhigou-search-service/src/main/java/com/yizhigou/search/service/impl/SearchServiceImpl.java | d6e6908e426ed12cf5f10ad885418709413588df | [] | no_license | qiaoyizhuo/yizhigou-parent | 344fa0372598816c06579373d336fb0e25d99313 | 571d7fdb3d928a7f78334baf1e1197f7c1178b0a | refs/heads/master | 2020-03-18T19:41:54.340524 | 2018-05-30T03:47:10 | 2018-05-30T03:47:10 | 135,171,183 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,656 | java | package com.yizhigou.search.service.impl;
import com.alibaba.dubbo.config.annotation.Service;
import com.yizhigou.pojo.TbBrand;
import com.yizhigou.pojo.TbItem;
import com.yizhigou.search.service.SearchService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Sort;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.solr.core.SolrTemplate;
import org.springframework.data.solr.core.query.*;
import org.springframework.data.solr.core.query.result.*;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
//่ฏทๆฑๆถ้ด็ญๅพ
ๆถ้ด
@Service(timeout = 3000)
public class SearchServiceImpl implements SearchService {
@Autowired
private SolrTemplate solrTemplate;
/**
* ๆ นๆฎๅ
ณ้ฎๅญๆ็ดขๅ่กจ
* @return
*/
@Override
public Map<String, Object> search(Map searchMap) {
Map<String,Object> map = new HashMap<>();
//ๅ
ณ้ฎๅญ็ฉบๆ ผๅค็
String str = (String) searchMap.get("keywords");
if(str!=null){
searchMap.put("keywords",str.replace(" ",""));
}
//1ใๆฅ่ฏขๅ่กจ๏ผ้ซไบฎๆพ็คบ๏ผๆฅ่ฏข
map.putAll(searchList(searchMap));
//2ใๆ นๆฎๅ
ณ้ฎๅญๆกไปถๆฅ่ฏข
List categoryList = searchCategoryList(searchMap);
map.put("categoryList",categoryList);
//3ใๆ นๆฎๅ็ฑปๅ็งฐ๏ผๅๅบ็ผๅญไธญ็ๅ็ๅ่กจๅ่งๆ ผ้กนๅ่กจ
if(categoryList.size()>0){
map.putAll(searchBrandAndSpecList((String) categoryList.get(0)));
}
//4ใๆ นๆฎๅ็ฑปๅ็งฐๆฅ่ฏขๅฏนๅบๅ็
//ๅๅบๅ็ฑปๅ็งฐ
String categoryName = (String) searchMap.get("category");
if(!"".equals(categoryName)){
map.putAll(searchBrandAndSpecList(categoryName));
}else{
if(categoryList.size()>0) {
//ๅฆๆๆฒกๆ๏ผๆ็
งๅ็ไธ็ฌฌไธไธชๅ็ฑปๅ็งฐไฝไธบๆฅ่ฏขๆกไปถ
map.putAll(searchBrandAndSpecList((String) categoryList.get(0)));
}
}
return map;
}
/**
* ๆ นๆฎๅ
ณ้ฎๅญๆ็ดขๅ่กจ
* @return
*/
private Map searchList(Map searchMap){
Map map = new HashMap<>();
//1.่ฎพ็ฝฎ้ซไบฎๆพ็คบๆฅ่ฏข
HighlightQuery query = new SimpleHighlightQuery();
//1.1ๆ็
งๅ็ฑปๅก้
if(!"".equals(searchMap.get("category"))){
//ๅขๅ ไธไธชๆ็ดขๆกไปถ
/* Criteria criteria = new Criteria("item_category").is(searchMap.get("category"));*/
Criteria criteria=new Criteria("item_category").is(searchMap.get("category"));
//ๆทปๅ ่ฟๆปคๆกไปถ
FilterQuery filterQuery = new SimpleFacetQuery(criteria);
query.addFilterQuery(filterQuery);
}
//1.2ๆๅ็็ญ้
if(!"".equals(searchMap.get("brand"))){
Criteria filterCriteria=new Criteria("item_brand").is(searchMap.get("brand"));
FilterQuery filterQuery=new SimpleFilterQuery(filterCriteria);
query.addFilterQuery(filterQuery);
}
//1.3่ฟๆปค่งๆ ผ
if(searchMap.get("spec")!=null){
Map<String,String> specMap= (Map) searchMap.get("spec");
for(String key:specMap.keySet() ){
Criteria filterCriteria=new Criteria("item_spec_"+key).is( specMap.get(key) );
//ๆทปๅ ่ฟๆปคๆกไปถ
FilterQuery filterQuery=new SimpleFilterQuery(filterCriteria);
query.addFilterQuery(filterQuery);
}
}
//1.4ๆ็
งไปทๆ ผ่ฟ่ก่ฟๆปคๆฅ่ฏข
//ไผ ๅ
ฅไปทๆ ผ้็ฉบ้ช่ฏ
if (!"".equals(searchMap.get("price"))){
//ๆๅไผ ๅ
ฅ็ๅๆฐ ///ไผ ๅ
ฅๅๆฐๆฏ0-500
String[] price = ((String) searchMap.get("price")).split("-");
//ๅฆๆ็ฌฌไธไฝไธ็ญ0
if(!price[0].equals("0")){
Criteria criteria = new Criteria("item_price").greaterThanEqual(price[0]);
FilterQuery filterQuery = new SimpleFacetQuery(criteria);
query.addFilterQuery(filterQuery);
}
//3000-*
if(!price[1].equals("*")){
Criteria criteria = new Criteria("item_price").lessThanEqual(price[1]);
FilterQuery filterQuery = new SimpleFacetQuery(criteria);
query.addFilterQuery(filterQuery);
}
}
//1.5ๅ้กต
Integer pageNo = (Integer) searchMap.get("pageNo");//่ทๅๅฝๅ้กต
//้ป่ฎคๅฝๅ้กต
if(pageNo==null){
pageNo=1;
}
//่ทๅๆฏ้กตๆกๆฐ
Integer pageSize = (Integer) searchMap.get("pageSize");
//้ป่ฎคๅฝๆฏ้กตๆพ็คบ
if(pageSize==null){
pageSize=40;
}
//่ฎก็ฎๅบไป็ฌฌๅ ๆกๅผๅงๆพ็คบ
query.setOffset((pageNo-1)*pageSize);
query.setRows(pageSize);
//1.6ๆๅบ
//่ทๅๆๅบๆนๅผ
String sortValue= (String) searchMap.get("sort");//ASC DESC
//่ทๅๆๅบ็ๅญๆฎต
String sortField = (String) searchMap.get("sortField");
//ๅๅบ
if(sortValue.equals("ASC")){
Sort sort = new Sort(Sort.Direction.ASC,"item_"+sortField);
query.addSort(sort);
}
//้ๅบ
if(sortValue.equals("DESC")){
Sort sort = new Sort(Sort.Direction.DESC,"item_"+sortField);
query.addSort(sort);
}
//2ใ้ซไบฎๆพ็คบ็ๅญๆฎต
HighlightOptions highlightOptions = new HighlightOptions().addField("item_title");
//3ใ่ฎพ็ฝฎ้ซไบฎๆพ็คบ็ๅ็ผๅๅ็ผ
highlightOptions.setSimplePrefix("<em style='color:red'>");//ๅ็ผ
highlightOptions.setSimplePostfix("</em>");//ๅ็ผ
//4ใ่ฎพ็ฝฎ้ซไบฎๆพ็คบ็้้กน
query.setHighlightOptions(highlightOptions);
//5ใ่ทๅ้ซไบฎๆพ็คบๅญๆฎตๅ
ๅฎน
//ๆ็
งๅ
ณ้ฎๅญๆฅ------ๆฅ่ฏขๆฅๆบ๏ผ้
็ฝฎ็ๅจๆๅ
Criteria criteria = new Criteria("item_keywords").is(searchMap.get("keywords"));
query.addCriteria(criteria);
HighlightPage<TbItem> page = solrTemplate.queryForHighlightPage(query, TbItem.class);
//ๅพช็ฏ้ซไบฎๅ
ฅๅฃ้ๅ
for (HighlightEntry<TbItem> h:page.getHighlighted()){
//่ทๅๅๅฎไพไฝ
TbItem item = h.getEntity();
if(h.getHighlights().size()>0 && h.getHighlights().get(0).getSnipplets().size()>0){
//่ฎพ็ฝฎ้ซไบฎ็ปๆ
item.setTitle(h.getHighlights().get(0).getSnipplets().get(0));
}
}
map.put("rows",page.getContent());
//ไบงๅฏปๅค็ๆฐๆฎ๏ผๆปๆกๆฐๆพๅ
ฅmap
map.put("totalPages",page.getTotalPages());//ๆป้กตๆฐ
map.put("total",page.getTotalElements());//ๆปๆกๆฐ
return map;
}
/**
* ๆฅ่ฏขๅๅๅ็ฑป
* @return
*/
private List searchCategoryList(Map searchMap){
ArrayList<Object> list = new ArrayList<>();
//1.่ฎพ็ฝฎๆฅ่ฏขๆกไปถ
Query query = new SimpleQuery();
//2ใ่ฎพ็ฝฎๆ็ดขๅ
ณ้ฎๅญ
Criteria criteria = new Criteria("item_keywords").is(searchMap.get("keywords"));
//ๆทปๅ ๆ็ดขๆกไปถ
query.addCriteria(criteria);
//3ใ่ฎพ็ฝฎๅ็ป้้กน
GroupOptions groupOptions = new GroupOptions().addGroupByField("item_category");
query.setGroupOptions(groupOptions);
//4ใๅพๅฐๅ็ปๅ
GroupPage<TbItem> page = solrTemplate.queryForGroupPage(query, TbItem.class);
//5ใๆ นๆฎๅ็ปๅๅพๅฐๅ็ป็ปๆ
GroupResult<TbItem> groupResult = page.getGroupResult("item_category");
//6ใๆ นๆฎๅ็ป็ปๆ้ๆพๅฐๅ
ฅๅฃ้กต
Page<GroupEntry<TbItem>> groupEntries = groupResult.getGroupEntries();
List<GroupEntry<TbItem>> content = groupEntries.getContent();
//7ใๅๅบๅ็ป็ปๆๆพๅ
ฅlistไธญ
for(GroupEntry<TbItem> entry:content){
//่ทๅๅฐๅ็ป็ปๆๅฐList
list.add(entry.getGroupValue());
}
return list;
}
@Autowired
private RedisTemplate redisTemplate;
/**
* ๆ นๆฎๅ็ฑปๅ็งฐ๏ผๆฅ่ฏขๅ็ๅ่กจๅ่งๆ ผ้กนๅ่กจ
* @return
*/
private Map searchBrandAndSpecList(String categoryName){
Map map = new HashMap();
Long typeId = (Long) redisTemplate.boundHashOps("itemCat").get(categoryName);
if(typeId!=null){
//ๅๅบๅ็ๅ่กจ
List<TbBrand> brandList = (List<TbBrand>) redisTemplate.boundHashOps("brandList").get(typeId);
//ๆพๅ
ฅmap้ๅ
map.put("brandList",brandList);
//ๅๅบ่งๆ ผๅ่กจ
List specList = (List) redisTemplate.boundHashOps("specList").get(typeId);
//ๆพๅ
ฅmap้ๅ
map.put("specList",specList);
}
return map;
}
/**
* ๅฏผๅ
ฅๆฐๆฎๅฐsolr
*/
@Override
public void importList(List list) {
//ๅผๅงๅฏผๅ
ฅๅฐsolr
solrTemplate.saveBeans(list);
solrTemplate.commit();
}
/**
* ๅ ้คsolr็ดขๅผๅบ
*/
@Override
public void deleteByGoodsIds(List goodsIdList) {
Query query = new SimpleQuery();
Criteria criteria = new Criteria("item_goodsId").in(goodsIdList);
query.addCriteria(criteria);
//ๅ ้ค
solrTemplate.delete(query);
//ๆไบค
solrTemplate.commit();
}
}
| [
"17600465591@163.com"
] | 17600465591@163.com |
4bb4fbf086e2e06a29cc35a940031981e5b52727 | 0f071b8665e884ab263f67aedf2e33121d74c409 | /ruoyi-production/src/main/java/com/ruoyi/production/utils/Mutil.java | b9edaee23f2c8acc4abc899fcb2b8e7e50759a76 | [
"MIT"
] | permissive | jinmu1/mynetwork | 5fefb77173d32777d14974f7a77ab3da9a5a27b9 | 917e0eb46a0824608e39f94e8c193049149412b8 | refs/heads/master | 2023-08-15T20:02:41.176742 | 2021-09-21T08:50:01 | 2021-09-21T08:50:01 | 385,117,362 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,322 | java | package com.ruoyi.production.utils;
import java.math.BigDecimal;
public final class Mutil {
/**
* ย * @ๆ่ฟฐ: ๅ ๆณ <br/>
* ย * @ๆนๆณๅ: add <br/>
* ย * @param v1 <br/>
* ย * @param v2 <br/>
* ย * @return <br/>
* ย * @่ฟๅ็ฑปๅ double <br/>
* ย * @ๅๅปบไบบ micheal <br/>
* ย * @ๅๅปบๆถ้ด 2019ๅนด1ๆ5ๆฅไธๅ9:37:50 <br/>
* ย * @ไฟฎๆนไบบ micheal <br/>
* ย * @ไฟฎๆนๆถ้ด 2019ๅนด1ๆ5ๆฅไธๅ9:37:50 <br/>
* ย * @ไฟฎๆนๅคๆณจ <br/>
* ย * @since <br/>
* ย * @throws ย
*/
public static double add(double v1, double v2) {
BigDecimal b1 = new BigDecimal(Double.toString(v1));
BigDecimal b2 = new BigDecimal(Double.toString(v2));
return b1.add(b2).doubleValue();
}
/**
* ย * @ๆ่ฟฐ: ๅๆณ <br/>
* ย * @ๆนๆณๅ: subtract <br/>
* ย * @param v1 <br/>
* ย * @param v2 <br/>
* ย * @return <br/>
* ย * @่ฟๅ็ฑปๅ double <br/>
* ย * @ๅๅปบไบบ micheal <br/>
* ย * @ๅๅปบๆถ้ด 2019ๅนด1ๆ5ๆฅไธๅ9:38:16 <br/>
* ย * @ไฟฎๆนไบบ micheal <br/>
* ย * @ไฟฎๆนๆถ้ด 2019ๅนด1ๆ5ๆฅไธๅ9:38:16 <br/>
* ย * @ไฟฎๆนๅคๆณจ <br/>
* ย * @since <br/>
* ย * @throws ย
*/
public static double subtract(double v1, double v2) {
BigDecimal b1 = new BigDecimal(Double.toString(v1));
BigDecimal b2 = new BigDecimal(Double.toString(v2));
return b1.subtract(b2).doubleValue();
}
/**
* ย * @ๆ่ฟฐ: ไนๆณ <br/>
* ย * @ๆนๆณๅ: mul <br/>
* ย * @param d1 <br/>
* ย * @param d2 <br/>
* ย * @return <br/>
* ย * @่ฟๅ็ฑปๅ double <br/>
* ย * @ๅๅปบไบบ micheal <br/>
* ย * @ๅๅปบๆถ้ด 2019ๅนด1ๆ5ๆฅไธๅ9:38:33 <br/>
* ย * @ไฟฎๆนไบบ micheal <br/>
* ย * @ไฟฎๆนๆถ้ด 2019ๅนด1ๆ5ๆฅไธๅ9:38:33 <br/>
* ย * @ไฟฎๆนๅคๆณจ <br/>
* ย * @since <br/>
* ย * @throws ย
*/
public static double multiply(double d1, double d2) {// ่ฟ่กไนๆณ่ฟ็ฎ
BigDecimal b1 = new BigDecimal(d1);
BigDecimal b2 = new BigDecimal(d2);
return b1.multiply(b2).doubleValue();
}
/**
* ย * @ๆ่ฟฐ: ้คๆณ ๏ผๅ่ไบๅ
ฅ<br/>
* ย * @ๆนๆณๅ: div <br/>
* ย * @param d1 <br/>
* ย * @param d2 <br/>
* ย * @param len ๏ผไฟ็็ๅฐๆฐไฝๆฐ<br/>
* ย * @return <br/>
* ย * @่ฟๅ็ฑปๅ double <br/>
* ย * @ๅๅปบไบบ micheal <br/>
* ย * @ๅๅปบๆถ้ด 2019ๅนด1ๆ5ๆฅไธๅ9:38:59 <br/>
* ย * @ไฟฎๆนไบบ micheal <br/>
* ย * @ไฟฎๆนๆถ้ด 2019ๅนด1ๆ5ๆฅไธๅ9:38:59 <br/>
* ย * @ไฟฎๆนๅคๆณจ <br/>
* ย * @since <br/>
* ย * @throws ย
*/
public static double divide(double d1, double d2, int len) {// ่ฟ่ก้คๆณ่ฟ็ฎ
BigDecimal b1 = new BigDecimal(d1);
BigDecimal b2 = new BigDecimal(d2);
return b1.divide(b2, len, BigDecimal.ROUND_HALF_UP).doubleValue();
}
/**
* ย * @ๆ่ฟฐ: ้คๆณ๏ผๅ่ไบๅ
ฅๅๆดๆฐ ,ไพๅฆ๏ผ5/2=3(2.5ๅ่ไบๅ
ฅ); 5/3=2(1.6ๅ่ไบๅ
ฅ);<br/>
* ย * @ๆนๆณๅ: div <br/>
* ย * @param d1 <br/>
* ย * @param d2 <br/>
* ย * @return <br/>
* ย * @่ฟๅ็ฑปๅ double <br/>
* ย * @ๅๅปบไบบ micheal <br/>
* ย * @ๅๅปบๆถ้ด 2019ๅนด1ๆ5ๆฅไธๅ10:54:51 <br/>
* ย * @ไฟฎๆนไบบ micheal <br/>
* ย * @ไฟฎๆนๆถ้ด 2019ๅนด1ๆ5ๆฅไธๅ10:54:51 <br/>
* ย * @ไฟฎๆนๅคๆณจ <br/>
* ย * @since <br/>
* ย * @throws <br/>
* ย
*/
public static double divide(double d1, double d2) {// ่ฟ่ก้คๆณ่ฟ็ฎ
BigDecimal b1 = new BigDecimal(d1);
BigDecimal b2 = new BigDecimal(d2);
return b1.divide(b2, BigDecimal.ROUND_HALF_UP).doubleValue();
}
/**
* ย * @ๆ่ฟฐ: ๅ่ไบๅ
ฅ <br/>
* ย * @ๆนๆณๅ: round ย * @param d <br/>
* ย * @param len <br/>
* ย * @return <br/>
* ย * @่ฟๅ็ฑปๅ double <br/>
* ย * @ๅๅปบไบบ micheal <br/>
* ย * @ๅๅปบๆถ้ด 2019ๅนด1ๆ5ๆฅไธๅ9:39:13 <br/>
* ย * @ไฟฎๆนไบบ micheal <br/>
* ย * @ไฟฎๆนๆถ้ด 2019ๅนด1ๆ5ๆฅไธๅ9:39:13 <br/>
* ย * @ไฟฎๆนๅคๆณจ <br/>
* ย * @since <br/>
* ย * @throws <br/>
* ย
*/
public static double round(double d, int len) {
BigDecimal b1 = new BigDecimal(d);
BigDecimal b2 = new BigDecimal(1);
// ไปปไฝไธไธชๆฐๅญ้คไปฅ1้ฝๆฏๅๆฐๅญ
// ROUND_HALF_UPๆฏBigDecimal็ไธไธชๅธธ้๏ผ่กจ็คบ่ฟ่กๅ่ไบๅ
ฅ็ๆไฝ
return b1.divide(b2, len, BigDecimal.ROUND_HALF_UP).doubleValue();
}
public static double find_average(double[] arr) {
double sum=0.0d;
for(int i=0;i<arr.length;i++){
sum+=arr[i];
}
//ๅฐ่ฎก็ฎ็ปๆ่ฟๅ
return sum/arr.length;
}
public static double min(double[] res) {
double Min = res[0];
for (int i = 1; i < res.length; i++) {
if (Min > res[i]) {
Min = res[i];
}
}
return Min;
}
public static double max(double[] res) {
double Max = res[0];
for (int i = 1; i < res.length; i++) {
if (Max < res[i]) {
Max = res[i];
}
}
return Max;
}
} | [
"1612429531@qq.com"
] | 1612429531@qq.com |
9d619243e5d4a412e804a592ad458e820ad57579 | 5c22adc1c4a05963279898a92c092dc659a6f6db | /src/test/java/com/eurekles/sandbox/security/SecurityUtilsUnitTest.java | 3c77ef55a6a653e6a228441c1859816a6acda3c5 | [] | no_license | Reda-Belkadi/jhipster_sandbox | b09a438ba31083dc4899cecf6a87aba5081d3c63 | 97b65bc761a40ad4e400c3bb155ed19f84194600 | refs/heads/master | 2022-12-07T21:47:08.248538 | 2020-09-01T12:35:43 | 2020-09-01T12:35:43 | 291,994,788 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,202 | java | package com.eurekles.sandbox.security;
import org.junit.jupiter.api.Test;
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.authority.SimpleGrantedAuthority;
import org.springframework.security.core.context.SecurityContext;
import org.springframework.security.core.context.SecurityContextHolder;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Optional;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Test class for the {@link SecurityUtils} utility class.
*/
public class SecurityUtilsUnitTest {
@Test
public void testGetCurrentUserLogin() {
SecurityContext securityContext = SecurityContextHolder.createEmptyContext();
securityContext.setAuthentication(new UsernamePasswordAuthenticationToken("admin", "admin"));
SecurityContextHolder.setContext(securityContext);
Optional<String> login = SecurityUtils.getCurrentUserLogin();
assertThat(login).contains("admin");
}
@Test
public void testgetCurrentUserJWT() {
SecurityContext securityContext = SecurityContextHolder.createEmptyContext();
securityContext.setAuthentication(new UsernamePasswordAuthenticationToken("admin", "token"));
SecurityContextHolder.setContext(securityContext);
Optional<String> jwt = SecurityUtils.getCurrentUserJWT();
assertThat(jwt).contains("token");
}
@Test
public void testIsAuthenticated() {
SecurityContext securityContext = SecurityContextHolder.createEmptyContext();
securityContext.setAuthentication(new UsernamePasswordAuthenticationToken("admin", "admin"));
SecurityContextHolder.setContext(securityContext);
boolean isAuthenticated = SecurityUtils.isAuthenticated();
assertThat(isAuthenticated).isTrue();
}
@Test
public void testAnonymousIsNotAuthenticated() {
SecurityContext securityContext = SecurityContextHolder.createEmptyContext();
Collection<GrantedAuthority> authorities = new ArrayList<>();
authorities.add(new SimpleGrantedAuthority(AuthoritiesConstants.ANONYMOUS));
securityContext.setAuthentication(new UsernamePasswordAuthenticationToken("anonymous", "anonymous", authorities));
SecurityContextHolder.setContext(securityContext);
boolean isAuthenticated = SecurityUtils.isAuthenticated();
assertThat(isAuthenticated).isFalse();
}
@Test
public void testIsCurrentUserInRole() {
SecurityContext securityContext = SecurityContextHolder.createEmptyContext();
Collection<GrantedAuthority> authorities = new ArrayList<>();
authorities.add(new SimpleGrantedAuthority(AuthoritiesConstants.USER));
securityContext.setAuthentication(new UsernamePasswordAuthenticationToken("user", "user", authorities));
SecurityContextHolder.setContext(securityContext);
assertThat(SecurityUtils.isCurrentUserInRole(AuthoritiesConstants.USER)).isTrue();
assertThat(SecurityUtils.isCurrentUserInRole(AuthoritiesConstants.ADMIN)).isFalse();
}
}
| [
"reda.belkadi@supinfo.com"
] | reda.belkadi@supinfo.com |
e10d9091b1ebf361c658da6d01fa13dd1a43a742 | 172092c48eea1c2498f8a3f95970308696932321 | /Servo-Online/src/com/minds/servo/service/impl/UserServiceImpl.java | 89b8de8b26c1dce35dc10f7c3a604632f9b94e3a | [
"BSD-2-Clause"
] | permissive | mindsolvit/servoil-master | e3c66db00c2d528d4c8a33541c7bf7e2713aea72 | d6c823f9fe43281b126cce3288cea18baa78afe0 | refs/heads/master | 2020-12-24T19:17:28.164384 | 2014-12-26T11:31:57 | 2014-12-26T11:31:57 | 28,481,540 | 0 | 1 | null | 2016-03-09T05:35:15 | 2014-12-25T12:53:32 | JavaScript | UTF-8 | Java | false | false | 999 | java | package com.minds.servo.service.impl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.minds.servo.dao.UserDAO;
import com.minds.servo.model.User;
import com.minds.servo.model.UserType;
import com.minds.servo.iservice.UserService;
@Service
public class UserServiceImpl implements UserService {
@Autowired private UserDAO userDAO;
public void insertUser(User user) {
userDAO.insertUser(user);
}
public User getUserByID(String id) {
//userDAO.getUserById(id);
return null;
}
public User getUserByName(String userName) {
//userDAO.getUserByName(userName);
return null;
}
public User getUserByEmailId(String emailId) {
User user = userDAO.getUserByemailId(emailId);
return user;
}
public void deleteUser(String ID) {
// TODO Auto-generated method stub
}
public UserType getUserTypeByRole(String role){
UserType userType = userDAO.getUserTypeByRole(role);
return userType;
}
}
| [
"lenovo@lenovo-PC"
] | lenovo@lenovo-PC |
870769dded45f5e98649aa88607d85a9984e8179 | be4edf2d04163639a282b39d3ca4e5f04dc7c935 | /src/PlannerApp/CreateEventController.java | 763e0698fac604d6c50e73bc986591fa8c6c1489 | [] | no_license | rroberts4/StudentEventPlannerApp | 60358d632f23458e56c8c7d5ae7561206c6116a1 | bb8d36a53b63d7d7f13cb8a1683e311580f47924 | refs/heads/main | 2023-06-18T00:06:46.859135 | 2021-07-09T18:22:47 | 2021-07-09T18:22:47 | 384,302,860 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,690 | java | ///////////////////////////////////////////////////////////////////////////////
//
// Title: PlannerApp
// Main Class File: PlannerApp.Main.java
// File: CreateEventController.java
// Date: June 2021
//
// Author: Ryan Jordan Roberts
/*
* This Application simulates a student daily planner.
* Allowing users to create an account and login.
* Users are able to add and see upcoming events in their planner.
* Login and event planner info are stored using a MYSQL Database.
*/
///////////////////////////////////////////////////////////////////////////////
package PlannerApp;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.stage.Stage;
import java.net.URL;
import java.sql.Connection;
import java.sql.Statement;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.util.ResourceBundle;
public class CreateEventController implements Initializable {
@FXML
private DatePicker datePicker;
@FXML
private TextField eventNameTextField;
@FXML
private Button confirmButton, returnButton;
@FXML
private Label errorLabel;
@FXML
private ComboBox<String> eventTypeComboBox;
String eventDueDate;
@Override
public void initialize(URL location, ResourceBundle resources) {
confirmButton.setVisible(false); //user must select a due date before confirm button is visible
fillEventTypeComboBox();
disablePastDatesFromUserDatePicker();
}
public void setEventDueDate(){
LocalDate selectedDate = datePicker.getValue();
eventDueDate = selectedDate.format(DateTimeFormatter.ofPattern("yyyy-MM-dd"));
confirmButton.setVisible(true);
}
public void fillEventTypeComboBox(){
ObservableList<String> eventList = FXCollections.observableArrayList("Classwork", "Homework", "School Event","Exam", "Midterm","Final","Quiz", "Test", "Meeting", "Other");
eventTypeComboBox.setItems(eventList);
}
public void disablePastDatesFromUserDatePicker(){
datePicker.setDayCellFactory(param -> new DateCell() {
@Override
public void updateItem(LocalDate date, boolean empty) {
super.updateItem(date, empty);
setDisable(empty || date.compareTo(LocalDate.now()) < 0);
}
});
}
public void returnButtonAction(ActionEvent event) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("PlannerHomeScene.fxml"));
Stage window = (Stage) returnButton.getScene().getWindow();
window.setScene(new Scene(root, 800, 600));
}
public void confirmButtonAction(ActionEvent event){
if(checkIfEventInfoIsEmpty()){
return;
}
createNewStudentEvent();
}
public boolean checkIfEventInfoIsEmpty(){
if (eventTypeComboBox.getSelectionModel().isEmpty()){
errorLabel.setText("Please make an Event type selection!");
return true;
}
if(eventNameTextField.getText().isEmpty()){
errorLabel.setText("Please enter the name of your Event!");
return true;
}
return false;
}
public void createNewStudentEvent(){
DatabaseConnection connectNow = new DatabaseConnection();
Connection con = connectNow.getConnection();
String eventName = eventNameTextField.getText();
String eventType = eventTypeComboBox.getSelectionModel().getSelectedItem();
int studentId = LoginSceneController.getStudentId(); //getStudent Id from Login Page
//Query uses all obtain Info from User to create a new Event
String insertField = "INSERT INTO student_activity (student_id,activity_name,activity_type,due_date) Values('";
String insertValues = studentId + "','" + eventName + "','" + eventType +"','" + eventDueDate + "');";
String studentInsertedValues = insertField + insertValues;
try {
Statement statement = con.createStatement();
statement.executeUpdate(studentInsertedValues);
Parent root = FXMLLoader.load(getClass().getResource("PlannerHomeScene.fxml"));
Stage window = (Stage) confirmButton.getScene().getWindow();
window.setScene(new Scene(root, 800, 600));
} catch (Exception e) {
e.printStackTrace();
e.getCause();
}
}
}
| [
"rroberts4dc@gmail.com"
] | rroberts4dc@gmail.com |
9ca187bc44831a61126ac07984b19d9420bb6fc6 | e3c7db733b85f2b7a25ec829bd85b80d994a5494 | /app-cms/src/main/java/vn/vmg/ptdv/hola/cms/rest/servicepack/ServicePackJSONRequest.java | 78bff29c3be8807bbdc13df54fddf0d9f5a75503 | [] | no_license | HoangHieuBK/Holaship | c15cc1c47367ede4de4d7bac12850b2201d85c98 | c49f0dcf82f5886080e024fa3802d628e4808ea8 | refs/heads/master | 2022-12-31T00:04:20.974666 | 2020-10-15T06:26:52 | 2020-10-15T06:26:52 | 304,214,124 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,473 | java | package vn.vmg.ptdv.hola.cms.rest.servicepack;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.time.Instant;
@Data
public class ServicePackJSONRequest {
private Long id;
private String name;
private String code;
private Instant effectiveAt;
private Instant createAt;
private Long createdBy;
// private Instant createdAtFrom;
// private Instant createdAtTo;
private Boolean state;
private Integer status;
private String note;
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSZ", timezone = "UTC")
private Instant uTimestamp;
// private Long id;
// private String name;
// private String code;
// private String note;
// private Integer active;
// private Integer status;
// private Integer maxTime;
// private Integer maxDistance;
// private Integer maxPoint;
// private Integer maxOrder;
// private Integer baseDistance;
// private Integer basePoint;
// private Integer baseCost;
// private Integer baseOrderDetail;
// private Long surchargeDistance;
// private Long surchargePoint;
// private Long surchargeOrderDetail;
// private Long porterFee;
// private Long doorDeliveryFee;
// private Long refundFee;
// private Long priceDeclareFee;
// private Integer type;
// private Long servicePackId;
// private Long otherCost;
//
// public ServicePackJSONRequest() {
// }
//
// public ServicePackJSONRequest(@Nullable @RequestParam String name,
// String code,
// String note,
// Integer active,
// Integer status,
// Integer maxTime,
// Integer maxDistance,
// Integer maxPoint,
// Integer maxOrder,
// Integer baseDistance,
// Integer basePoint,
// Integer baseCost,
// Integer baseOrderDetail,
// Long surchargeDistance,
// Long surchargePoint,
// Long surchargeOrderDetail,
// Long porterFee,
// Long doorDeliveryFee,
// Long refundFee,
// Long priceDeclareFee,
// Integer type,
// Long createdBy,
// LocalDate createdAt,
// Instant uTimestamp,
// @Nullable @RequestParam LocalDate effectiveAt) {
// this.id = id;
// this.name = name;
// this.code = code;
// this.note = note;
// this.active = active;
// this.status = status;
// this.maxTime = maxTime;
// this.maxDistance = maxDistance;
// this.maxPoint = maxPoint;
// this.maxOrder = maxOrder;
// this.baseDistance = baseDistance;
// this.basePoint = basePoint;
// this.baseCost = baseCost;
// this.baseOrderDetail = baseOrderDetail;
// this.surchargeDistance = surchargeDistance;
// this.surchargePoint = surchargePoint;
// this.surchargeOrderDetail = surchargeOrderDetail;
// this.porterFee = porterFee;
// this.doorDeliveryFee = doorDeliveryFee;
// this.refundFee = refundFee;
// this.priceDeclareFee = priceDeclareFee;
// this.type = type;
// this.createdBy = createdBy;
// this.createdAt = createdAt;
// this.servicePackId = servicePackId;
// this.otherCost = otherCost;
// this.effectiveAt = effectiveAt;
// this.uTimestamp = uTimestamp;
// }
}
| [
"hoanghieubk1996@gmail.com"
] | hoanghieubk1996@gmail.com |
04150ae917fef2972f07934bdc125e05ec4592d4 | e82c1473b49df5114f0332c14781d677f88f363f | /MED-CLOUD/med-service/src/main/java/nta/med/service/ihis/handler/invs/CheckData0101U01Handler.java | 0c11a535062f8d30b81bf857603af370e2a5d2f1 | [] | no_license | zhiji6/mih | fa1d2279388976c901dc90762bc0b5c30a2325fc | 2714d15853162a492db7ea8b953d5b863c3a8000 | refs/heads/master | 2023-08-16T18:35:19.836018 | 2017-12-28T09:33:19 | 2017-12-28T09:33:19 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,254 | java | package nta.med.service.ihis.handler.invs;
import javax.annotation.Resource;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.util.StringUtils;
import org.vertx.java.core.Vertx;
import nta.med.core.infrastructure.socket.handler.ScreenHandler;
import nta.med.data.dao.medi.inv.Inv0101Repository;
import nta.med.data.dao.medi.inv.Inv0102Repository;
import nta.med.service.ihis.proto.InvsServiceProto;
@Service
@Scope("prototype")
public class CheckData0101U01Handler extends ScreenHandler<InvsServiceProto.CheckData0101U01Request, InvsServiceProto.CheckData0101U01Response> {
private static final Log LOGGER = LogFactory.getLog(CheckData0101U01Handler.class);
@Resource
private Inv0101Repository inv0101Repository;
@Resource
private Inv0102Repository inv0102Repository;
@Override
@Transactional(readOnly = true)
public InvsServiceProto.CheckData0101U01Response handle(Vertx vertx, String clientId, String sessionId, long contextId, InvsServiceProto.CheckData0101U01Request request) throws Exception {
InvsServiceProto.CheckData0101U01Response.Builder response = InvsServiceProto.CheckData0101U01Response.newBuilder();
String resultDel = inv0102Repository.checkDRG0102U00CheckExitToDelete(getHospitalCode(vertx, sessionId), request.getCodeType(), getLanguage(vertx, sessionId));
if (!StringUtils.isEmpty(resultDel)) {
response.setDelDetail(resultDel);
}
String resultMaster = inv0101Repository.checkDRG0102U00GrdMasterGridColumnChanged(request.getCodeType(), getLanguage(vertx, sessionId));
if (!StringUtils.isEmpty(resultMaster)) {
response.setCheckMaster(resultMaster);
}
String resultDetail = inv0102Repository.checkDrg0102U01GrdDetail(getHospitalCode(vertx, sessionId), request.getCodeType(), request.getCode(), getLanguage(vertx, sessionId));
if (!StringUtils.isEmpty(resultDetail)) {
response.setCheckDetail(resultDetail);
}
return response.build();
}
}
| [
"duc_nt@nittsusystem-vn.com"
] | duc_nt@nittsusystem-vn.com |
3ff8330ba7a0fa83f247b7e2adc9e67ad9a40d19 | 8591bb5a721fb319e9645e9984ee7a3804105eae | /src/main/java/com/yshmeel/tenseicraft/client/Sounds.java | e07523a1e8d96b65892fa08516f163a9dbb1f63e | [] | no_license | Yshmeel/TenseiCraft | c0efb486cbbd32a3dcd4336dc6c43ee9b9c8a66e | 7912ba37206d2e701a94acaad1d1a77e191b0d55 | refs/heads/master | 2022-11-12T20:27:20.666570 | 2020-07-01T14:39:54 | 2020-07-01T14:39:54 | 238,059,373 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,918 | java | package com.yshmeel.tenseicraft.client;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.SoundEvent;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import java.util.HashMap;
@Mod.EventBusSubscriber
public class Sounds {
public static ResourceLocation LEVEL_UP_SOUND =
new ResourceLocation("tenseicraft", "level_up");
public static ResourceLocation NINJA_CARD_OPEN_SOUND =
new ResourceLocation("tenseicraft", "ninja_card_open");
public static ResourceLocation JUTSU_SOUND =
new ResourceLocation("tenseicraft", "jutsu_sound");
public static ResourceLocation HMM_CUTSCENE =
new ResourceLocation("tenseicraft", "hmm_cutscene");
public static ResourceLocation TELEPORT =
new ResourceLocation("tenseicraft", "teleport_sound");
public static HashMap<String, SoundEvent> registeredSounds = new HashMap<>();
@SubscribeEvent
public static void registerSounds(RegistryEvent.Register<SoundEvent> event){
final SoundEvent[] soundEvents = {
new SoundEvent(LEVEL_UP_SOUND).setRegistryName("level_up"),
new SoundEvent(NINJA_CARD_OPEN_SOUND).setRegistryName("ninja_card_open"),
new SoundEvent(JUTSU_SOUND).setRegistryName("jutsu_sound"),
new SoundEvent(HMM_CUTSCENE).setRegistryName("hmm_cutscene"),
new SoundEvent(TELEPORT).setRegistryName("teleport_sound")
};
for(SoundEvent sound : soundEvents) {
registeredSounds.put(sound.getRegistryName().toString().replace("tenseicraft:", ""), sound);
}
event.getRegistry().registerAll(soundEvents);
}
public static SoundEvent valueOf(String name) {
return registeredSounds.get(name);
}
}
| [
"yshmeelwili@gmail.com"
] | yshmeelwili@gmail.com |
9905f36b4ae7af51376956ee9cf1a3156dd3ce87 | 3b481b302b02edf57b816acac9e5ff3b7ec602e2 | /src/android/support/v4/widget/ScrollerCompat$ScrollerCompatImplBase.java | 044686a34cff4106f66032158e2b409a070224ea | [] | no_license | reverseengineeringer/com.twitter.android | 53338ae009b2b6aa79551a8273875ec3728eda99 | f834eee04284d773ccfcd05487021200de30bd1e | refs/heads/master | 2021-04-15T04:35:06.232782 | 2016-07-21T03:51:19 | 2016-07-21T03:51:19 | 63,835,046 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,984 | java | package android.support.v4.widget;
import android.content.Context;
import android.view.animation.Interpolator;
import android.widget.Scroller;
class ScrollerCompat$ScrollerCompatImplBase
implements ScrollerCompat.ScrollerCompatImpl
{
public void abortAnimation(Object paramObject)
{
((Scroller)paramObject).abortAnimation();
}
public boolean computeScrollOffset(Object paramObject)
{
return ((Scroller)paramObject).computeScrollOffset();
}
public Object createScroller(Context paramContext, Interpolator paramInterpolator)
{
if (paramInterpolator != null) {
return new Scroller(paramContext, paramInterpolator);
}
return new Scroller(paramContext);
}
public void fling(Object paramObject, int paramInt1, int paramInt2, int paramInt3, int paramInt4, int paramInt5, int paramInt6, int paramInt7, int paramInt8)
{
((Scroller)paramObject).fling(paramInt1, paramInt2, paramInt3, paramInt4, paramInt5, paramInt6, paramInt7, paramInt8);
}
public void fling(Object paramObject, int paramInt1, int paramInt2, int paramInt3, int paramInt4, int paramInt5, int paramInt6, int paramInt7, int paramInt8, int paramInt9, int paramInt10)
{
((Scroller)paramObject).fling(paramInt1, paramInt2, paramInt3, paramInt4, paramInt5, paramInt6, paramInt7, paramInt8);
}
public float getCurrVelocity(Object paramObject)
{
return 0.0F;
}
public int getCurrX(Object paramObject)
{
return ((Scroller)paramObject).getCurrX();
}
public int getCurrY(Object paramObject)
{
return ((Scroller)paramObject).getCurrY();
}
public int getFinalX(Object paramObject)
{
return ((Scroller)paramObject).getFinalX();
}
public int getFinalY(Object paramObject)
{
return ((Scroller)paramObject).getFinalY();
}
public boolean isFinished(Object paramObject)
{
return ((Scroller)paramObject).isFinished();
}
public boolean isOverScrolled(Object paramObject)
{
return false;
}
public void notifyHorizontalEdgeReached(Object paramObject, int paramInt1, int paramInt2, int paramInt3) {}
public void notifyVerticalEdgeReached(Object paramObject, int paramInt1, int paramInt2, int paramInt3) {}
public boolean springBack(Object paramObject, int paramInt1, int paramInt2, int paramInt3, int paramInt4, int paramInt5, int paramInt6)
{
return false;
}
public void startScroll(Object paramObject, int paramInt1, int paramInt2, int paramInt3, int paramInt4)
{
((Scroller)paramObject).startScroll(paramInt1, paramInt2, paramInt3, paramInt4);
}
public void startScroll(Object paramObject, int paramInt1, int paramInt2, int paramInt3, int paramInt4, int paramInt5)
{
((Scroller)paramObject).startScroll(paramInt1, paramInt2, paramInt3, paramInt4, paramInt5);
}
}
/* Location:
* Qualified Name: android.support.v4.widget.ScrollerCompat.ScrollerCompatImplBase
* Java Class Version: 6 (50.0)
* JD-Core Version: 0.7.1
*/ | [
"reverseengineeringer@hackeradmin.com"
] | reverseengineeringer@hackeradmin.com |
7426b25d5f3ecfb7c9d5f0135af0fc358905ba5f | 8228efa27043e0a236ca8003ec0126012e1fdb02 | /L2JOptimus_Core/java/net/sf/l2j/gameserver/scripting/quests/Q636_TruthBeyondTheGate.java | d80221c9a1035d77518216ddb3ff57f399f3b399 | [] | no_license | wan202/L2JDeath | 9982dfce14ae19a22392955b996b42dc0e8cede6 | e0ab026bf46ac82c91bdbd048a0f50dc5213013b | refs/heads/master | 2020-12-30T12:35:59.808276 | 2017-05-16T18:57:25 | 2017-05-16T18:57:25 | 91,397,726 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,622 | java | package net.sf.l2j.gameserver.scripting.quests;
import net.sf.l2j.gameserver.model.actor.Creature;
import net.sf.l2j.gameserver.model.actor.Npc;
import net.sf.l2j.gameserver.model.actor.instance.Player;
import net.sf.l2j.gameserver.model.zone.L2ZoneType;
import net.sf.l2j.gameserver.scripting.Quest;
import net.sf.l2j.gameserver.scripting.QuestState;
import net.sf.l2j.gameserver.scripting.quests.audio.Sound;
public class Q636_TruthBeyondTheGate extends Quest
{
private static final String qn = "Q636_TruthBeyondTheGate";
// NPCs
private static final int ELIYAH = 31329;
private static final int FLAURON = 32010;
// Reward
private static final int VISITOR_MARK = 8064;
private static final int FADED_VISITOR_MARK = 8065;
public Q636_TruthBeyondTheGate()
{
super(636, "The Truth Beyond the Gate");
addStartNpc(ELIYAH);
addTalkId(ELIYAH, FLAURON);
addEnterZoneId(100000);
}
@Override
public String onAdvEvent(String event, Npc npc, Player player)
{
String htmltext = event;
QuestState st = player.getQuestState(qn);
if (st == null)
return htmltext;
if (event.equalsIgnoreCase("31329-04.htm"))
{
st.setState(STATE_STARTED);
st.set("cond", "1");
st.playSound(Sound.SOUND_ACCEPT);
}
else if (event.equalsIgnoreCase("32010-02.htm"))
{
st.giveItems(VISITOR_MARK, 1);
st.playSound(Sound.SOUND_FINISH);
st.exitQuest(false);
}
return htmltext;
}
@Override
public String onTalk(Npc npc, Player player)
{
String htmltext = getNoQuestMsg();
QuestState st = player.getQuestState(qn);
if (st == null)
return htmltext;
switch (st.getState())
{
case STATE_CREATED:
htmltext = (player.getLevel() < 73) ? "31329-01.htm" : "31329-02.htm";
break;
case STATE_STARTED:
switch (npc.getNpcId())
{
case ELIYAH:
htmltext = "31329-05.htm";
break;
case FLAURON:
htmltext = (st.hasQuestItems(VISITOR_MARK)) ? "32010-03.htm" : "32010-01.htm";
break;
}
break;
case STATE_COMPLETED:
htmltext = getAlreadyCompletedMsg();
break;
}
return htmltext;
}
@Override
public final String onEnterZone(Creature character, L2ZoneType zone)
{
// QuestState already null on enter because quest is finished
if (character instanceof Player)
{
if (character.getActingPlayer().destroyItemByItemId("Mark", VISITOR_MARK, 1, character, false))
character.getActingPlayer().addItem("Mark", FADED_VISITOR_MARK, 1, character, true);
}
return null;
}
} | [
"wande@DESKTOP-DM71DUV"
] | wande@DESKTOP-DM71DUV |
50bf7601fd3aa664c8136a9a82200e487dbc79a6 | bc4e37aaefd4d9a859638d900428709fd32ee0ca | /src/test/java/com/mesw/playerfinder/web/rest/UserResourceIntTest.java | 3c8b330d9eed8c07c75aab89a057e14363dad76b | [] | no_license | LES1718-TeamC/player-finder | b18065dcb0fa8d6484356a3f100dc2f4ac129b20 | e3ca9ad67bf0299e2bd8259486b1f4512b061bf9 | refs/heads/master | 2021-05-08T04:39:17.876783 | 2017-11-21T22:29:46 | 2017-11-21T22:29:46 | 106,477,218 | 2 | 0 | null | 2017-10-18T20:26:20 | 2017-10-10T22:14:29 | null | UTF-8 | Java | false | false | 24,535 | java | package com.mesw.playerfinder.web.rest;
import com.mesw.playerfinder.PlayerFinderApp;
import com.mesw.playerfinder.domain.Authority;
import com.mesw.playerfinder.domain.User;
import com.mesw.playerfinder.repository.UserRepository;
import com.mesw.playerfinder.security.AuthoritiesConstants;
import com.mesw.playerfinder.service.MailService;
import com.mesw.playerfinder.service.UserService;
import com.mesw.playerfinder.service.dto.UserDTO;
import com.mesw.playerfinder.service.mapper.UserMapper;
import com.mesw.playerfinder.web.rest.errors.ExceptionTranslator;
import com.mesw.playerfinder.web.rest.vm.ManagedUserVM;
import org.apache.commons.lang3.RandomStringUtils;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.MockitoAnnotations;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.web.PageableHandlerMethodArgumentResolver;
import org.springframework.http.MediaType;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import org.springframework.transaction.annotation.Transactional;
import javax.persistence.EntityManager;
import java.time.Instant;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.delete;
import static org.assertj.core.api.Assertions.assertThat;
import static org.hamcrest.Matchers.hasItem;
import static org.hamcrest.Matchers.containsInAnyOrder;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;
/**
* Test class for the UserResource REST controller.
*
* @see UserResource
*/
@RunWith(SpringRunner.class)
@SpringBootTest(classes = PlayerFinderApp.class)
public class UserResourceIntTest {
private static final Long DEFAULT_ID = 1L;
private static final String DEFAULT_LOGIN = "johndoe";
private static final String UPDATED_LOGIN = "jhipster";
private static final String DEFAULT_PASSWORD = "passjohndoe";
private static final String UPDATED_PASSWORD = "passjhipster";
private static final String DEFAULT_EMAIL = "johndoe@localhost";
private static final String UPDATED_EMAIL = "jhipster@localhost";
private static final String DEFAULT_FIRSTNAME = "john";
private static final String UPDATED_FIRSTNAME = "jhipsterFirstName";
private static final String DEFAULT_LASTNAME = "doe";
private static final String UPDATED_LASTNAME = "jhipsterLastName";
private static final String DEFAULT_IMAGEURL = "http://placehold.it/50x50";
private static final String UPDATED_IMAGEURL = "http://placehold.it/40x40";
private static final String DEFAULT_LANGKEY = "en";
private static final String UPDATED_LANGKEY = "fr";
@Autowired
private UserRepository userRepository;
@Autowired
private MailService mailService;
@Autowired
private UserService userService;
@Autowired
private UserMapper userMapper;
@Autowired
private MappingJackson2HttpMessageConverter jacksonMessageConverter;
@Autowired
private PageableHandlerMethodArgumentResolver pageableArgumentResolver;
@Autowired
private ExceptionTranslator exceptionTranslator;
@Autowired
private EntityManager em;
private MockMvc restUserMockMvc;
private User user;
@Before
public void setup() {
MockitoAnnotations.initMocks(this);
UserResource userResource = new UserResource(userRepository, mailService, userService);
this.restUserMockMvc = MockMvcBuilders.standaloneSetup(userResource)
.setCustomArgumentResolvers(pageableArgumentResolver)
.setControllerAdvice(exceptionTranslator)
.setMessageConverters(jacksonMessageConverter)
.build();
}
/**
* Create a User.
*
* This is a static method, as tests for other entities might also need it,
* if they test an entity which has a required relationship to the User entity.
*/
public static User createEntity(EntityManager em) {
User user = new User();
user.setLogin(DEFAULT_LOGIN);
user.setPassword(RandomStringUtils.random(60));
user.setActivated(true);
user.setEmail(DEFAULT_EMAIL);
user.setFirstName(DEFAULT_FIRSTNAME);
user.setLastName(DEFAULT_LASTNAME);
user.setImageUrl(DEFAULT_IMAGEURL);
user.setLangKey(DEFAULT_LANGKEY);
return user;
}
@Before
public void initTest() {
user = createEntity(em);
}
@Test
@Transactional
public void createUser() throws Exception {
int databaseSizeBeforeCreate = userRepository.findAll().size();
// Create the User
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
null,
DEFAULT_LOGIN,
DEFAULT_PASSWORD,
DEFAULT_FIRSTNAME,
DEFAULT_LASTNAME,
DEFAULT_EMAIL,
true,
DEFAULT_IMAGEURL,
DEFAULT_LANGKEY,
null,
null,
null,
null,
authorities);
restUserMockMvc.perform(post("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isCreated());
// Validate the User in the database
List<User> userList = userRepository.findAll();
assertThat(userList).hasSize(databaseSizeBeforeCreate + 1);
User testUser = userList.get(userList.size() - 1);
assertThat(testUser.getLogin()).isEqualTo(DEFAULT_LOGIN);
assertThat(testUser.getFirstName()).isEqualTo(DEFAULT_FIRSTNAME);
assertThat(testUser.getLastName()).isEqualTo(DEFAULT_LASTNAME);
assertThat(testUser.getEmail()).isEqualTo(DEFAULT_EMAIL);
assertThat(testUser.getImageUrl()).isEqualTo(DEFAULT_IMAGEURL);
assertThat(testUser.getLangKey()).isEqualTo(DEFAULT_LANGKEY);
}
@Test
@Transactional
public void createUserWithExistingId() throws Exception {
int databaseSizeBeforeCreate = userRepository.findAll().size();
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
1L,
DEFAULT_LOGIN,
DEFAULT_PASSWORD,
DEFAULT_FIRSTNAME,
DEFAULT_LASTNAME,
DEFAULT_EMAIL,
true,
DEFAULT_IMAGEURL,
DEFAULT_LANGKEY,
null,
null,
null,
null,
authorities);
// An entity with an existing ID cannot be created, so this API call must fail
restUserMockMvc.perform(post("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isBadRequest());
// Validate the User in the database
List<User> userList = userRepository.findAll();
assertThat(userList).hasSize(databaseSizeBeforeCreate);
}
@Test
@Transactional
public void createUserWithExistingLogin() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
int databaseSizeBeforeCreate = userRepository.findAll().size();
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
null,
DEFAULT_LOGIN, // this login should already be used
DEFAULT_PASSWORD,
DEFAULT_FIRSTNAME,
DEFAULT_LASTNAME,
"anothermail@localhost",
true,
DEFAULT_IMAGEURL,
DEFAULT_LANGKEY,
null,
null,
null,
null,
authorities);
// Create the User
restUserMockMvc.perform(post("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isBadRequest());
// Validate the User in the database
List<User> userList = userRepository.findAll();
assertThat(userList).hasSize(databaseSizeBeforeCreate);
}
@Test
@Transactional
public void createUserWithExistingEmail() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
int databaseSizeBeforeCreate = userRepository.findAll().size();
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
null,
"anotherlogin",
DEFAULT_PASSWORD,
DEFAULT_FIRSTNAME,
DEFAULT_LASTNAME,
DEFAULT_EMAIL, // this email should already be used
true,
DEFAULT_IMAGEURL,
DEFAULT_LANGKEY,
null,
null,
null,
null,
authorities);
// Create the User
restUserMockMvc.perform(post("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isBadRequest());
// Validate the User in the database
List<User> userList = userRepository.findAll();
assertThat(userList).hasSize(databaseSizeBeforeCreate);
}
@Test
@Transactional
public void getAllUsers() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
// Get all the users
restUserMockMvc.perform(get("/api/users?sort=id,desc")
.accept(MediaType.APPLICATION_JSON))
.andExpect(status().isOk())
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8_VALUE))
.andExpect(jsonPath("$.[*].login").value(hasItem(DEFAULT_LOGIN)))
.andExpect(jsonPath("$.[*].firstName").value(hasItem(DEFAULT_FIRSTNAME)))
.andExpect(jsonPath("$.[*].lastName").value(hasItem(DEFAULT_LASTNAME)))
.andExpect(jsonPath("$.[*].email").value(hasItem(DEFAULT_EMAIL)))
.andExpect(jsonPath("$.[*].imageUrl").value(hasItem(DEFAULT_IMAGEURL)))
.andExpect(jsonPath("$.[*].langKey").value(hasItem(DEFAULT_LANGKEY)));
}
@Test
@Transactional
public void getUser() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
// Get the user
restUserMockMvc.perform(get("/api/users/{login}", user.getLogin()))
.andExpect(status().isOk())
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8_VALUE))
.andExpect(jsonPath("$.login").value(user.getLogin()))
.andExpect(jsonPath("$.firstName").value(DEFAULT_FIRSTNAME))
.andExpect(jsonPath("$.lastName").value(DEFAULT_LASTNAME))
.andExpect(jsonPath("$.email").value(DEFAULT_EMAIL))
.andExpect(jsonPath("$.imageUrl").value(DEFAULT_IMAGEURL))
.andExpect(jsonPath("$.langKey").value(DEFAULT_LANGKEY));
}
@Test
@Transactional
public void getNonExistingUser() throws Exception {
restUserMockMvc.perform(get("/api/users/unknown"))
.andExpect(status().isNotFound());
}
@Test
@Transactional
public void updateUser() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
int databaseSizeBeforeUpdate = userRepository.findAll().size();
// Update the user
User updatedUser = userRepository.findOne(user.getId());
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
updatedUser.getId(),
updatedUser.getLogin(),
UPDATED_PASSWORD,
UPDATED_FIRSTNAME,
UPDATED_LASTNAME,
UPDATED_EMAIL,
updatedUser.getActivated(),
UPDATED_IMAGEURL,
UPDATED_LANGKEY,
updatedUser.getCreatedBy(),
updatedUser.getCreatedDate(),
updatedUser.getLastModifiedBy(),
updatedUser.getLastModifiedDate(),
authorities);
restUserMockMvc.perform(put("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isOk());
// Validate the User in the database
List<User> userList = userRepository.findAll();
assertThat(userList).hasSize(databaseSizeBeforeUpdate);
User testUser = userList.get(userList.size() - 1);
assertThat(testUser.getFirstName()).isEqualTo(UPDATED_FIRSTNAME);
assertThat(testUser.getLastName()).isEqualTo(UPDATED_LASTNAME);
assertThat(testUser.getEmail()).isEqualTo(UPDATED_EMAIL);
assertThat(testUser.getImageUrl()).isEqualTo(UPDATED_IMAGEURL);
assertThat(testUser.getLangKey()).isEqualTo(UPDATED_LANGKEY);
}
@Test
@Transactional
public void updateUserLogin() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
int databaseSizeBeforeUpdate = userRepository.findAll().size();
// Update the user
User updatedUser = userRepository.findOne(user.getId());
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
updatedUser.getId(),
UPDATED_LOGIN,
UPDATED_PASSWORD,
UPDATED_FIRSTNAME,
UPDATED_LASTNAME,
UPDATED_EMAIL,
updatedUser.getActivated(),
UPDATED_IMAGEURL,
UPDATED_LANGKEY,
updatedUser.getCreatedBy(),
updatedUser.getCreatedDate(),
updatedUser.getLastModifiedBy(),
updatedUser.getLastModifiedDate(),
authorities);
restUserMockMvc.perform(put("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isOk());
// Validate the User in the database
List<User> userList = userRepository.findAll();
assertThat(userList).hasSize(databaseSizeBeforeUpdate);
User testUser = userList.get(userList.size() - 1);
assertThat(testUser.getLogin()).isEqualTo(UPDATED_LOGIN);
assertThat(testUser.getFirstName()).isEqualTo(UPDATED_FIRSTNAME);
assertThat(testUser.getLastName()).isEqualTo(UPDATED_LASTNAME);
assertThat(testUser.getEmail()).isEqualTo(UPDATED_EMAIL);
assertThat(testUser.getImageUrl()).isEqualTo(UPDATED_IMAGEURL);
assertThat(testUser.getLangKey()).isEqualTo(UPDATED_LANGKEY);
}
@Test
@Transactional
public void updateUserExistingEmail() throws Exception {
// Initialize the database with 2 users
userRepository.saveAndFlush(user);
User anotherUser = new User();
anotherUser.setLogin("jhipster");
anotherUser.setPassword(RandomStringUtils.random(60));
anotherUser.setActivated(true);
anotherUser.setEmail("jhipster@localhost");
anotherUser.setFirstName("java");
anotherUser.setLastName("hipster");
anotherUser.setImageUrl("");
anotherUser.setLangKey("en");
userRepository.saveAndFlush(anotherUser);
// Update the user
User updatedUser = userRepository.findOne(user.getId());
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
updatedUser.getId(),
updatedUser.getLogin(),
updatedUser.getPassword(),
updatedUser.getFirstName(),
updatedUser.getLastName(),
"jhipster@localhost", // this email should already be used by anotherUser
updatedUser.getActivated(),
updatedUser.getImageUrl(),
updatedUser.getLangKey(),
updatedUser.getCreatedBy(),
updatedUser.getCreatedDate(),
updatedUser.getLastModifiedBy(),
updatedUser.getLastModifiedDate(),
authorities);
restUserMockMvc.perform(put("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isBadRequest());
}
@Test
@Transactional
public void updateUserExistingLogin() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
User anotherUser = new User();
anotherUser.setLogin("jhipster");
anotherUser.setPassword(RandomStringUtils.random(60));
anotherUser.setActivated(true);
anotherUser.setEmail("jhipster@localhost");
anotherUser.setFirstName("java");
anotherUser.setLastName("hipster");
anotherUser.setImageUrl("");
anotherUser.setLangKey("en");
userRepository.saveAndFlush(anotherUser);
// Update the user
User updatedUser = userRepository.findOne(user.getId());
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
updatedUser.getId(),
"jhipster", // this login should already be used by anotherUser
updatedUser.getPassword(),
updatedUser.getFirstName(),
updatedUser.getLastName(),
updatedUser.getEmail(),
updatedUser.getActivated(),
updatedUser.getImageUrl(),
updatedUser.getLangKey(),
updatedUser.getCreatedBy(),
updatedUser.getCreatedDate(),
updatedUser.getLastModifiedBy(),
updatedUser.getLastModifiedDate(),
authorities);
restUserMockMvc.perform(put("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isBadRequest());
}
@Test
@Transactional
public void deleteUser() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
int databaseSizeBeforeDelete = userRepository.findAll().size();
// Delete the user
restUserMockMvc.perform(delete("/api/users/{login}", user.getLogin())
.accept(TestUtil.APPLICATION_JSON_UTF8))
.andExpect(status().isOk());
// Validate the database is empty
List<User> userList = userRepository.findAll();
assertThat(userList).hasSize(databaseSizeBeforeDelete - 1);
}
@Test
@Transactional
public void getAllAuthorities() throws Exception {
restUserMockMvc.perform(get("/api/users/authorities")
.accept(TestUtil.APPLICATION_JSON_UTF8)
.contentType(TestUtil.APPLICATION_JSON_UTF8))
.andExpect(status().isOk())
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8_VALUE))
.andExpect(jsonPath("$").isArray())
.andExpect(jsonPath("$").value(containsInAnyOrder("ROLE_USER", "ROLE_ADMIN")));
}
@Test
@Transactional
public void testUserEquals() throws Exception {
TestUtil.equalsVerifier(User.class);
User user1 = new User();
user1.setId(1L);
User user2 = new User();
user2.setId(user1.getId());
assertThat(user1).isEqualTo(user2);
user2.setId(2L);
assertThat(user1).isNotEqualTo(user2);
user1.setId(null);
assertThat(user1).isNotEqualTo(user2);
}
@Test
public void testUserFromId() {
assertThat(userMapper.userFromId(DEFAULT_ID).getId()).isEqualTo(DEFAULT_ID);
assertThat(userMapper.userFromId(null)).isNull();
}
@Test
public void testUserDTOtoUser() {
UserDTO userDTO = new UserDTO(
DEFAULT_ID,
DEFAULT_LOGIN,
DEFAULT_FIRSTNAME,
DEFAULT_LASTNAME,
DEFAULT_EMAIL,
true,
DEFAULT_IMAGEURL,
DEFAULT_LANGKEY,
DEFAULT_LOGIN,
null,
DEFAULT_LOGIN,
null,
Stream.of(AuthoritiesConstants.USER).collect(Collectors.toSet()));
User user = userMapper.userDTOToUser(userDTO);
assertThat(user.getId()).isEqualTo(DEFAULT_ID);
assertThat(user.getLogin()).isEqualTo(DEFAULT_LOGIN);
assertThat(user.getFirstName()).isEqualTo(DEFAULT_FIRSTNAME);
assertThat(user.getLastName()).isEqualTo(DEFAULT_LASTNAME);
assertThat(user.getEmail()).isEqualTo(DEFAULT_EMAIL);
assertThat(user.getActivated()).isEqualTo(true);
assertThat(user.getImageUrl()).isEqualTo(DEFAULT_IMAGEURL);
assertThat(user.getLangKey()).isEqualTo(DEFAULT_LANGKEY);
assertThat(user.getCreatedBy()).isNull();
assertThat(user.getCreatedDate()).isNotNull();
assertThat(user.getLastModifiedBy()).isNull();
assertThat(user.getLastModifiedDate()).isNotNull();
assertThat(user.getAuthorities()).extracting("name").containsExactly(AuthoritiesConstants.USER);
}
@Test
public void testUserToUserDTO() {
user.setId(DEFAULT_ID);
user.setCreatedBy(DEFAULT_LOGIN);
user.setCreatedDate(Instant.now());
user.setLastModifiedBy(DEFAULT_LOGIN);
user.setLastModifiedDate(Instant.now());
Set<Authority> authorities = new HashSet<>();
Authority authority = new Authority();
authority.setName(AuthoritiesConstants.USER);
authorities.add(authority);
user.setAuthorities(authorities);
UserDTO userDTO = userMapper.userToUserDTO(user);
assertThat(userDTO.getId()).isEqualTo(DEFAULT_ID);
assertThat(userDTO.getLogin()).isEqualTo(DEFAULT_LOGIN);
assertThat(userDTO.getFirstName()).isEqualTo(DEFAULT_FIRSTNAME);
assertThat(userDTO.getLastName()).isEqualTo(DEFAULT_LASTNAME);
assertThat(userDTO.getEmail()).isEqualTo(DEFAULT_EMAIL);
assertThat(userDTO.isActivated()).isEqualTo(true);
assertThat(userDTO.getImageUrl()).isEqualTo(DEFAULT_IMAGEURL);
assertThat(userDTO.getLangKey()).isEqualTo(DEFAULT_LANGKEY);
assertThat(userDTO.getCreatedBy()).isEqualTo(DEFAULT_LOGIN);
assertThat(userDTO.getCreatedDate()).isEqualTo(user.getCreatedDate());
assertThat(userDTO.getLastModifiedBy()).isEqualTo(DEFAULT_LOGIN);
assertThat(userDTO.getLastModifiedDate()).isEqualTo(user.getLastModifiedDate());
assertThat(userDTO.getAuthorities()).containsExactly(AuthoritiesConstants.USER);
assertThat(userDTO.toString()).isNotNull();
}
@Test
public void testAuthorityEquals() throws Exception {
Authority authorityA = new Authority();
assertThat(authorityA).isEqualTo(authorityA);
assertThat(authorityA).isNotEqualTo(null);
assertThat(authorityA).isNotEqualTo(new Object());
assertThat(authorityA.hashCode()).isEqualTo(0);
assertThat(authorityA.toString()).isNotNull();
Authority authorityB = new Authority();
assertThat(authorityA).isEqualTo(authorityB);
authorityB.setName(AuthoritiesConstants.ADMIN);
assertThat(authorityA).isNotEqualTo(authorityB);
authorityA.setName(AuthoritiesConstants.USER);
assertThat(authorityA).isNotEqualTo(authorityB);
authorityB.setName(AuthoritiesConstants.USER);
assertThat(authorityA).isEqualTo(authorityB);
assertThat(authorityA.hashCode()).isEqualTo(authorityB.hashCode());
}
}
| [
"jo.paiva.cp@gmail.com"
] | jo.paiva.cp@gmail.com |
6687318fd0047d5eba55609dc746e1c5a19d1fbc | 23fc4e3460428e73a98da66c4ef2651dc5b276b4 | /gen/Models/Basic/VariableRes.java | f5bb7db1868fa332f625f96acd810f3b80638026 | [] | no_license | mastermobin/JythonParser | 9284a40c6dae5e9ebe49dde4b6742029bdbeb63e | b1aa1528275d8e42eabf1b6e9fa6a1b8046506ec | refs/heads/master | 2021-07-07T01:38:47.371208 | 2020-10-14T19:14:57 | 2020-10-14T19:14:57 | 190,899,280 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 397 | java | package Models.Basic;
public class VariableRes {
String type;
boolean array;
public VariableRes(String type, boolean array) {
this.type = type;
this.array = array;
}
public String getType() {
return type;
}
public boolean isArray() {
return array;
}
public void setArray(boolean array) {
this.array = array;
}
}
| [
"vahdatitorkha.mobin@mail.um.ac.ir"
] | vahdatitorkha.mobin@mail.um.ac.ir |
8bec5bef6968e0642aedc5479b5ccbac292e0dc0 | 074ae59dba57f9455e0a14295473b00e74f526c3 | /lab11/W3D1-DATA/src/main/java/edu/mum/cs544/books/IBookDao.java | 12f6b6d0cab612c1d27780fbc93cfce39a2c0dcf | [
"MIT"
] | permissive | bakhodir10/EA | 500c47e64d901034387768d20ac21cefcd19cbdc | bb2d6844c01afad5c251460fd9c1ca1e4d9a56ff | refs/heads/master | 2022-12-22T10:24:13.728778 | 2019-07-11T13:25:59 | 2019-07-11T13:25:59 | 193,561,346 | 0 | 0 | MIT | 2022-12-16T00:36:57 | 2019-06-24T18:50:25 | Java | UTF-8 | Java | false | false | 157 | java | package edu.mum.cs544.books;
import org.springframework.data.jpa.repository.JpaRepository;
public interface IBookDao extends JpaRepository<Book, Long> {
} | [
"bakhodir9293@gmail.com"
] | bakhodir9293@gmail.com |
1974218a9d16d884e067abdd2e7f5655aee75fa5 | 22de6eeaffd33f44959bce1572d310582381d885 | /app/src/main/java/com/example/myapplicationv2021/MainActivity.java | 78f213f5f8b713bfc2669639aea7fed1bdacfc93 | [] | no_license | krishnaibhosale/MyApplicationv2021v2 | fa72b6e0c36db535c127229869248a38650793e4 | 4c990e0cd170b61a37d9fb12d328066a82f5814b | refs/heads/master | 2023-08-02T16:07:12.796631 | 2021-10-07T17:15:29 | 2021-10-07T17:15:29 | 414,693,165 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 342 | java | package com.example.myapplicationv2021;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
} | [
"92112510+krishnaibhosale@users.noreply.github.com"
] | 92112510+krishnaibhosale@users.noreply.github.com |
a0e5a020f0b6b623f38fa4b013dd034cf8f06709 | be608e227e7e385cd8e68bdfae4c79283ee88595 | /service-edi271/src/main/java/org/delta/b2b/edi/handler/element/NM1SourceHandler.java | 9d76245deb42b25410bbb220088269c9ec1e80de | [] | no_license | msen2000/services | 4867cdc3e2be12e9b5f54f2568e7c9844e91af25 | cb84c48792aee88ab8533f407b8150430c5da2dd | refs/heads/master | 2016-08-04T19:08:09.872078 | 2014-02-16T08:11:16 | 2014-02-16T08:11:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,774 | java | package org.delta.b2b.edi.handler.element;
import javax.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
import org.delta.b2b.edi.parser.Row;
import org.delta.b2b.edi.t271.ENM101EntityIdentifierCode;
import org.delta.b2b.edi.t271.ENM102EntityTypeQualifier;
import org.delta.b2b.edi.t271.ENM103NameLastOrOrganizationName;
import org.delta.b2b.edi.t271.ENM104NameFirst;
import org.delta.b2b.edi.t271.ENM105NameMiddle;
import org.delta.b2b.edi.t271.ENM106NamePrefix;
import org.delta.b2b.edi.t271.ENM107NameSuffix;
import org.delta.b2b.edi.t271.ENM108IdentificationCodeQualifier;
import org.delta.b2b.edi.t271.ENM109IdentificationCode;
import org.delta.b2b.edi.t271.SNM1InformationSourceName;
public class NM1SourceHandler {
private SNM1InformationSourceName snm1;
public NM1SourceHandler(SNM1InformationSourceName snm1, Row row) {
this.snm1 = snm1;
process(row);
}
public void process(Row row) {
String[] arr = row.getElementsInArray();
System.out.println("NM1 array lenght :"+arr.length);
ENM101EntityIdentifierCode e01 = new ENM101EntityIdentifierCode();
e01.setValue(arr[0]);
snm1.setENM101EntityIdentifierCode(e01);
ENM102EntityTypeQualifier e02 = new ENM102EntityTypeQualifier();
e02.setValue(arr[1]);
snm1.setENM102EntityTypeQualifier(e02);
ENM103NameLastOrOrganizationName e03 = new ENM103NameLastOrOrganizationName();
e03.setValue(arr[2]);
snm1.setENM103NameLastOrOrganizationName(e03);
ENM104NameFirst e04 = new ENM104NameFirst();
e04.setValue(arr[3]);
JAXBElement<ENM104NameFirst> jaxe04 = new JAXBElement(QName.valueOf("E-NM104-Name_First"), ENM104NameFirst.class, null, e04);
snm1.setENM104NameFirst(jaxe04);
ENM105NameMiddle e05 = new ENM105NameMiddle();
e05.setValue(arr[4]);
JAXBElement<ENM105NameMiddle> jaxe05 = new JAXBElement(QName.valueOf("E-NM105-Name_Middle"), ENM105NameMiddle.class, null, e05);
snm1.setENM105NameMiddle(jaxe05);
ENM106NamePrefix e06 = new ENM106NamePrefix();
e06.setType(arr[5]);
JAXBElement<ENM106NamePrefix> jaxe06 = new JAXBElement(QName.valueOf("E-NM106-Name_Prefix"), ENM106NamePrefix.class, null, e06);
snm1.setENM106NamePrefix(jaxe06);
ENM107NameSuffix e07 = new ENM107NameSuffix();
e07.setValue(arr[6]);
JAXBElement<ENM107NameSuffix> jaxe07 = new JAXBElement(QName.valueOf("E-NM107-Name_Suffix"), ENM107NameSuffix.class, null, e07);
snm1.setENM107NameSuffix(jaxe07);
ENM108IdentificationCodeQualifier e08 = new ENM108IdentificationCodeQualifier();
e08.setValue(arr[7]);
snm1.setENM108IdentificationCodeQualifier(e08);
ENM109IdentificationCode e09 = new ENM109IdentificationCode();
e09.setValue(arr[8]);
snm1.setENM109IdentificationCode(e09);
/*
ENM110EntityRelationshipCode e10 = new ENM110EntityRelationshipCode();
e10.setType(arr[9]);
JAXBElement<ENM110EntityRelationshipCode> jaxe10 = new JAXBElement(QName.valueOf("E-NM110-Entity_Relationship_Code"), ENM110EntityRelationshipCode.class, null, e10);
snm1.setENM110EntityRelationshipCode(jaxe10);
ENM111EntityIdentifierCode e11 = new ENM111EntityIdentifierCode();
e11.setType(arr[10]);
JAXBElement<ENM111EntityIdentifierCode> jaxe11 = new JAXBElement(QName.valueOf("E-NM111-Entity_Identifier_Code"), ENM111EntityIdentifierCode.class, null, e11);
snm1.setENM111EntityIdentifierCode(jaxe11);
ENM112NameLastOrOrganizationName e12 = new ENM112NameLastOrOrganizationName();
e12.setType(arr[11]);
JAXBElement<ENM112NameLastOrOrganizationName> jaxe12 = new JAXBElement(QName.valueOf("E-NM112-Name_Last_or_Organization_Name"), ENM112NameLastOrOrganizationName.class, null, e12);
snm1.setENM112NameLastOrOrganizationName(jaxe12);
*/
}
}
| [
"msen2000@gmail.com"
] | msen2000@gmail.com |
5bb2d33815da5e50ae4954e2d693aca50245d000 | 8eaaf20f0f20240fb0e31cb62ff838b8bbca7770 | /DreamPvP [mc-1.3.1]/se/proxus/DreamPvP/Gui/Screens/ItemList.java | 813d3ab2d5a4bfcdd7300e90958c7e1918f09747 | [
"LicenseRef-scancode-public-domain",
"Unlicense"
] | permissive | Olivki/minecraft-clients | aa7e5d94596c3c67fa748816566ccce17160d000 | 19e00b00d3556e6b3cee5f968005638593d12c01 | refs/heads/master | 2020-04-13T05:30:22.073886 | 2019-03-04T20:52:54 | 2019-03-04T20:52:54 | 162,994,258 | 4 | 0 | null | null | null | null | WINDOWS-1252 | Java | false | false | 2,454 | java | package se.proxus.DreamPvP.Gui.Screens;
import java.io.File;
import net.minecraft.src.GuiButton;
import net.minecraft.src.GuiScreen;
import net.minecraft.src.GuiYesNo;
import net.minecraft.src.Item;
import net.minecraft.src.StringTranslate;
public class ItemList extends GuiScreen {
private GuiButton give;
private ItemListSlot mSlot;
public boolean deletePressed = false, focused = false;
public GuiButton xrayAdd, chat, friend;
@Override
public void initGui() {
mSlot = new ItemListSlot(this);
mSlot.registerScrollButtons(controlList, 7, 8);
give = new GuiButton(0, width / 2 - 100, height - 48, "Give yourself " + mSlot.getCurName() + " [" + mSlot.getCurID() + "].");
controlList.clear();
controlList.add(give);
controlList.add(new GuiButton(2, width / 2 - 100, height - 26, "Done."));
}
@Override
public void updateScreen() {
give = new GuiButton(0, width / 2 - 100, height - 48, "Give yourself " + mSlot.getCurName() + " [" + mSlot.getCurID() + "].");
controlList.clear();
controlList.add(give);
controlList.add(new GuiButton(2, width / 2 - 100, height - 26, "Done."));
}
@Override
protected void actionPerformed(GuiButton button) {
if(button.enabled) {
if(button.id == 0) {
mc.dp.utils.sendChat("/give " + mc.session.username + " " + mSlot.getCurID() + " 64");
} if(button.id == 1) {
/*int var1 = mc.dp.settings.xrayArray.get(mSlot.getSelected());
String id = StringTranslate.getInstance().translateNamedKey(Item.itemsList[var1].getItemName());
if (id != null) {
deletePressed = true;
StringTranslate stringtranslate = StringTranslate.getInstance();
String s1 = "Are you sure you want to delete this friend?";
String s2 = "\"" + id + "\" will be lost forever! (A long time!)";
String s3 = "Delete.";
String s4 = "Cancel.";
GuiYesNo guiyesno = new GuiYesNo(this, s1, s2, s3, s4, mSlot.getSelected());
mc.displayGuiScreen(guiyesno);
mc.dp.files.saveBaseFile(new File(mc.dp.files.baseFolder, "xRay.txt"), mc.dp.settings.xrayArray, false);
}*/
} if(button.id == 2) {
mc.displayGuiScreen(new Main_2());
} else {
mSlot.actionPerformed(button);
}
}
}
@Override
public void drawScreen(int I1, int I2, float I3) {
mSlot.drawScreen(I1, I2, I3);
drawCenteredString(fontRenderer, "Items list. [ยงe" + mc.dp.settings.itemArray.size() + "ยงr]", width / 2, 10, 0xFFFFFFFF);
super.drawScreen(I1, I2, I3);
}
} | [
"0liverb3rg@gmail.com"
] | 0liverb3rg@gmail.com |
892128c3f1e53dd6819985126f8dec1c5219bd51 | e96715579c81a110a5464af306fe049d9a640f37 | /app/src/main/java/com/fengzhi/basislearning/activity/hh/day28/MyViewActivity.java | 9b7cdcc7f4cf23457586f89feed7a6ecb31315c5 | [
"Apache-2.0"
] | permissive | smilemolj/BasisLearning | bdf9cc570b853d4fac0aee85a46fe56e27beda25 | 828c965acf7f1bf2a747cc7776f683dae39e90a3 | refs/heads/master | 2020-06-11T06:54:30.673160 | 2019-07-02T01:18:48 | 2019-07-02T01:18:48 | 193,882,721 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,055 | java | package com.fengzhi.basislearning.activity.hh.day28;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;
import androidx.annotation.Nullable;
import com.fengzhi.basislearning.R;
import com.fengzhi.basislearning.base.SlideBackBaseActivity;
import butterknife.BindView;
public class MyViewActivity extends SlideBackBaseActivity {
@BindView(R.id.title)
TextView title;
@BindView(R.id.img)
DownImg img;
@BindView(R.id.cv)
CustomView cv;
private String path = "https://www.baidu.com/img/bd_logo1.png?where=super";
@Override
protected void initView(@Nullable Bundle savedInstanceState) {
title.setText("MyViewActivity");
img.downLoad(path);
}
//็นๅป็กฎๅฎ่ดญไนฐ
public void btnSure(View view) {
int number = cv.getNumber();
Toast.makeText(this, "่ดญไนฐ็ๆฐ้ๆฏ" + number, Toast.LENGTH_LONG).show();
}
@Override
protected int getLayoutResId() {
return R.layout.activity_my_view;
}
}
| [
"smilemolj@gmail.com"
] | smilemolj@gmail.com |
aa17f064c16d9a505cb50a5f7444193ccafffd9a | 3b23debf2925d551f2cbac01e3e6945e885325b7 | /src/LangSi/LangSiLexer.java | a37685a02627fa1006c8a5ec89ba1c26aae33073 | [] | no_license | Dertiende/CompilerCourse | e9313d535842d4cfa23e08a94176bbdfd0a8dc9c | 08dbf0668739aac1092b57d4ef23dacb9e00a53d | refs/heads/master | 2023-05-15T02:58:57.179281 | 2021-05-24T05:46:03 | 2021-05-24T05:46:03 | 340,633,772 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,673 | java | // Generated from D:/Users/Alex/IdeaProjects/Compile/src/LangSi\LangSi.g4 by ANTLR 4.9.1
package LangSi;
import org.antlr.v4.runtime.Lexer;
import org.antlr.v4.runtime.CharStream;
import org.antlr.v4.runtime.Token;
import org.antlr.v4.runtime.TokenStream;
import org.antlr.v4.runtime.*;
import org.antlr.v4.runtime.atn.*;
import org.antlr.v4.runtime.dfa.DFA;
import org.antlr.v4.runtime.misc.*;
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"})
public class LangSiLexer extends Lexer {
static { RuntimeMetaData.checkVersion("4.9.1", RuntimeMetaData.VERSION); }
protected static final DFA[] _decisionToDFA;
protected static final PredictionContextCache _sharedContextCache =
new PredictionContextCache();
public static final int
T__0=1, T__1=2, T__2=3, T__3=4, T__4=5, T__5=6, T__6=7, T__7=8, T__8=9,
T__9=10, T__10=11, T__11=12, T__12=13, T__13=14, T__14=15, T__15=16, T__16=17,
T__17=18, T__18=19, T__19=20, T__20=21, T__21=22, T__22=23, T__23=24,
BOOLEAN=25, BREAK=26, CHAR=27, CONST=28, CONTINUE=29, FLOAT=30, IF=31,
INT=32, WHILE=33, DEF=34, RETURN=35, PRINT=36, MAIN=37, LETTERS=38, NUMBERS=39,
WS=40, COMMENT=41, LINE_COMMENT=42;
public static String[] channelNames = {
"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
};
public static String[] modeNames = {
"DEFAULT_MODE"
};
private static String[] makeRuleNames() {
return new String[] {
"T__0", "T__1", "T__2", "T__3", "T__4", "T__5", "T__6", "T__7", "T__8",
"T__9", "T__10", "T__11", "T__12", "T__13", "T__14", "T__15", "T__16",
"T__17", "T__18", "T__19", "T__20", "T__21", "T__22", "T__23", "BOOLEAN",
"BREAK", "CHAR", "CONST", "CONTINUE", "FLOAT", "IF", "INT", "WHILE",
"DEF", "RETURN", "PRINT", "MAIN", "LETTERS", "NUMBERS", "WS", "COMMENT",
"LINE_COMMENT"
};
}
public static final String[] ruleNames = makeRuleNames();
private static String[] makeLiteralNames() {
return new String[] {
null, "'{'", "'}'", "';'", "'('", "')'", "'='", "','", "'and'", "'or'",
"'=='", "'!='", "'>'", "'>='", "'<'", "'<='", "'*'", "'/'", "'%'", "'+'",
"'-'", "'true'", "'false'", "'''", "'.'", "'bool'", "'break'", "'char'",
"'const'", "'continue'", "'float'", "'if'", "'int'", "'while'", "'def'",
"'return'", "'print'", "'__main__()'"
};
}
private static final String[] _LITERAL_NAMES = makeLiteralNames();
private static String[] makeSymbolicNames() {
return new String[] {
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, "BOOLEAN", "BREAK", "CHAR", "CONST", "CONTINUE", "FLOAT", "IF",
"INT", "WHILE", "DEF", "RETURN", "PRINT", "MAIN", "LETTERS", "NUMBERS",
"WS", "COMMENT", "LINE_COMMENT"
};
}
private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
/**
* @deprecated Use {@link #VOCABULARY} instead.
*/
@Deprecated
public static final String[] tokenNames;
static {
tokenNames = new String[_SYMBOLIC_NAMES.length];
for (int i = 0; i < tokenNames.length; i++) {
tokenNames[i] = VOCABULARY.getLiteralName(i);
if (tokenNames[i] == null) {
tokenNames[i] = VOCABULARY.getSymbolicName(i);
}
if (tokenNames[i] == null) {
tokenNames[i] = "<INVALID>";
}
}
}
@Override
@Deprecated
public String[] getTokenNames() {
return tokenNames;
}
@Override
public Vocabulary getVocabulary() {
return VOCABULARY;
}
public LangSiLexer(CharStream input) {
super(input);
_interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
}
@Override
public String getGrammarFileName() { return "LangSi.g4"; }
@Override
public String[] getRuleNames() { return ruleNames; }
@Override
public String getSerializedATN() { return _serializedATN; }
@Override
public String[] getChannelNames() { return channelNames; }
@Override
public String[] getModeNames() { return modeNames; }
@Override
public ATN getATN() { return _ATN; }
public static final String _serializedATN =
"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2,\u010f\b\1\4\2\t"+
"\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+
"\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+
"\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+
"\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!"+
"\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\3"+
"\2\3\2\3\3\3\3\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\t\3\t"+
"\3\n\3\n\3\n\3\13\3\13\3\13\3\f\3\f\3\f\3\r\3\r\3\16\3\16\3\16\3\17\3"+
"\17\3\20\3\20\3\20\3\21\3\21\3\22\3\22\3\23\3\23\3\24\3\24\3\25\3\25\3"+
"\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3\31\3"+
"\31\3\32\3\32\3\32\3\32\3\32\3\33\3\33\3\33\3\33\3\33\3\33\3\34\3\34\3"+
"\34\3\34\3\34\3\35\3\35\3\35\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\36\3"+
"\36\3\36\3\36\3\36\3\37\3\37\3\37\3\37\3\37\3\37\3 \3 \3 \3!\3!\3!\3!"+
"\3\"\3\"\3\"\3\"\3\"\3\"\3#\3#\3#\3#\3$\3$\3$\3$\3$\3$\3$\3%\3%\3%\3%"+
"\3%\3%\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3\'\6\'\u00e5\n\'\r\'\16\'\u00e6"+
"\3(\3(\7(\u00eb\n(\f(\16(\u00ee\13(\3)\6)\u00f1\n)\r)\16)\u00f2\3)\3)"+
"\3*\3*\3*\3*\7*\u00fb\n*\f*\16*\u00fe\13*\3*\3*\3*\3*\3*\3+\3+\3+\3+\7"+
"+\u0109\n+\f+\16+\u010c\13+\3+\3+\3\u00fc\2,\3\3\5\4\7\5\t\6\13\7\r\b"+
"\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26"+
"+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S"+
"+U,\3\2\6\4\2C\\c|\3\2\62;\5\2\13\f\16\17\"\"\4\2\f\f\17\17\2\u0113\2"+
"\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2"+
"\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2"+
"\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2"+
"\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2"+
"\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2"+
"\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2"+
"\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U"+
"\3\2\2\2\3W\3\2\2\2\5Y\3\2\2\2\7[\3\2\2\2\t]\3\2\2\2\13_\3\2\2\2\ra\3"+
"\2\2\2\17c\3\2\2\2\21e\3\2\2\2\23i\3\2\2\2\25l\3\2\2\2\27o\3\2\2\2\31"+
"r\3\2\2\2\33t\3\2\2\2\35w\3\2\2\2\37y\3\2\2\2!|\3\2\2\2#~\3\2\2\2%\u0080"+
"\3\2\2\2\'\u0082\3\2\2\2)\u0084\3\2\2\2+\u0086\3\2\2\2-\u008b\3\2\2\2"+
"/\u0091\3\2\2\2\61\u0093\3\2\2\2\63\u0095\3\2\2\2\65\u009a\3\2\2\2\67"+
"\u00a0\3\2\2\29\u00a5\3\2\2\2;\u00ab\3\2\2\2=\u00b4\3\2\2\2?\u00ba\3\2"+
"\2\2A\u00bd\3\2\2\2C\u00c1\3\2\2\2E\u00c7\3\2\2\2G\u00cb\3\2\2\2I\u00d2"+
"\3\2\2\2K\u00d8\3\2\2\2M\u00e4\3\2\2\2O\u00e8\3\2\2\2Q\u00f0\3\2\2\2S"+
"\u00f6\3\2\2\2U\u0104\3\2\2\2WX\7}\2\2X\4\3\2\2\2YZ\7\177\2\2Z\6\3\2\2"+
"\2[\\\7=\2\2\\\b\3\2\2\2]^\7*\2\2^\n\3\2\2\2_`\7+\2\2`\f\3\2\2\2ab\7?"+
"\2\2b\16\3\2\2\2cd\7.\2\2d\20\3\2\2\2ef\7c\2\2fg\7p\2\2gh\7f\2\2h\22\3"+
"\2\2\2ij\7q\2\2jk\7t\2\2k\24\3\2\2\2lm\7?\2\2mn\7?\2\2n\26\3\2\2\2op\7"+
"#\2\2pq\7?\2\2q\30\3\2\2\2rs\7@\2\2s\32\3\2\2\2tu\7@\2\2uv\7?\2\2v\34"+
"\3\2\2\2wx\7>\2\2x\36\3\2\2\2yz\7>\2\2z{\7?\2\2{ \3\2\2\2|}\7,\2\2}\""+
"\3\2\2\2~\177\7\61\2\2\177$\3\2\2\2\u0080\u0081\7\'\2\2\u0081&\3\2\2\2"+
"\u0082\u0083\7-\2\2\u0083(\3\2\2\2\u0084\u0085\7/\2\2\u0085*\3\2\2\2\u0086"+
"\u0087\7v\2\2\u0087\u0088\7t\2\2\u0088\u0089\7w\2\2\u0089\u008a\7g\2\2"+
"\u008a,\3\2\2\2\u008b\u008c\7h\2\2\u008c\u008d\7c\2\2\u008d\u008e\7n\2"+
"\2\u008e\u008f\7u\2\2\u008f\u0090\7g\2\2\u0090.\3\2\2\2\u0091\u0092\7"+
")\2\2\u0092\60\3\2\2\2\u0093\u0094\7\60\2\2\u0094\62\3\2\2\2\u0095\u0096"+
"\7d\2\2\u0096\u0097\7q\2\2\u0097\u0098\7q\2\2\u0098\u0099\7n\2\2\u0099"+
"\64\3\2\2\2\u009a\u009b\7d\2\2\u009b\u009c\7t\2\2\u009c\u009d\7g\2\2\u009d"+
"\u009e\7c\2\2\u009e\u009f\7m\2\2\u009f\66\3\2\2\2\u00a0\u00a1\7e\2\2\u00a1"+
"\u00a2\7j\2\2\u00a2\u00a3\7c\2\2\u00a3\u00a4\7t\2\2\u00a48\3\2\2\2\u00a5"+
"\u00a6\7e\2\2\u00a6\u00a7\7q\2\2\u00a7\u00a8\7p\2\2\u00a8\u00a9\7u\2\2"+
"\u00a9\u00aa\7v\2\2\u00aa:\3\2\2\2\u00ab\u00ac\7e\2\2\u00ac\u00ad\7q\2"+
"\2\u00ad\u00ae\7p\2\2\u00ae\u00af\7v\2\2\u00af\u00b0\7k\2\2\u00b0\u00b1"+
"\7p\2\2\u00b1\u00b2\7w\2\2\u00b2\u00b3\7g\2\2\u00b3<\3\2\2\2\u00b4\u00b5"+
"\7h\2\2\u00b5\u00b6\7n\2\2\u00b6\u00b7\7q\2\2\u00b7\u00b8\7c\2\2\u00b8"+
"\u00b9\7v\2\2\u00b9>\3\2\2\2\u00ba\u00bb\7k\2\2\u00bb\u00bc\7h\2\2\u00bc"+
"@\3\2\2\2\u00bd\u00be\7k\2\2\u00be\u00bf\7p\2\2\u00bf\u00c0\7v\2\2\u00c0"+
"B\3\2\2\2\u00c1\u00c2\7y\2\2\u00c2\u00c3\7j\2\2\u00c3\u00c4\7k\2\2\u00c4"+
"\u00c5\7n\2\2\u00c5\u00c6\7g\2\2\u00c6D\3\2\2\2\u00c7\u00c8\7f\2\2\u00c8"+
"\u00c9\7g\2\2\u00c9\u00ca\7h\2\2\u00caF\3\2\2\2\u00cb\u00cc\7t\2\2\u00cc"+
"\u00cd\7g\2\2\u00cd\u00ce\7v\2\2\u00ce\u00cf\7w\2\2\u00cf\u00d0\7t\2\2"+
"\u00d0\u00d1\7p\2\2\u00d1H\3\2\2\2\u00d2\u00d3\7r\2\2\u00d3\u00d4\7t\2"+
"\2\u00d4\u00d5\7k\2\2\u00d5\u00d6\7p\2\2\u00d6\u00d7\7v\2\2\u00d7J\3\2"+
"\2\2\u00d8\u00d9\7a\2\2\u00d9\u00da\7a\2\2\u00da\u00db\7o\2\2\u00db\u00dc"+
"\7c\2\2\u00dc\u00dd\7k\2\2\u00dd\u00de\7p\2\2\u00de\u00df\7a\2\2\u00df"+
"\u00e0\7a\2\2\u00e0\u00e1\7*\2\2\u00e1\u00e2\7+\2\2\u00e2L\3\2\2\2\u00e3"+
"\u00e5\t\2\2\2\u00e4\u00e3\3\2\2\2\u00e5\u00e6\3\2\2\2\u00e6\u00e4\3\2"+
"\2\2\u00e6\u00e7\3\2\2\2\u00e7N\3\2\2\2\u00e8\u00ec\t\3\2\2\u00e9\u00eb"+
"\t\3\2\2\u00ea\u00e9\3\2\2\2\u00eb\u00ee\3\2\2\2\u00ec\u00ea\3\2\2\2\u00ec"+
"\u00ed\3\2\2\2\u00edP\3\2\2\2\u00ee\u00ec\3\2\2\2\u00ef\u00f1\t\4\2\2"+
"\u00f0\u00ef\3\2\2\2\u00f1\u00f2\3\2\2\2\u00f2\u00f0\3\2\2\2\u00f2\u00f3"+
"\3\2\2\2\u00f3\u00f4\3\2\2\2\u00f4\u00f5\b)\2\2\u00f5R\3\2\2\2\u00f6\u00f7"+
"\7\61\2\2\u00f7\u00f8\7,\2\2\u00f8\u00fc\3\2\2\2\u00f9\u00fb\13\2\2\2"+
"\u00fa\u00f9\3\2\2\2\u00fb\u00fe\3\2\2\2\u00fc\u00fd\3\2\2\2\u00fc\u00fa"+
"\3\2\2\2\u00fd\u00ff\3\2\2\2\u00fe\u00fc\3\2\2\2\u00ff\u0100\7,\2\2\u0100"+
"\u0101\7\61\2\2\u0101\u0102\3\2\2\2\u0102\u0103\b*\2\2\u0103T\3\2\2\2"+
"\u0104\u0105\7\61\2\2\u0105\u0106\7\61\2\2\u0106\u010a\3\2\2\2\u0107\u0109"+
"\n\5\2\2\u0108\u0107\3\2\2\2\u0109\u010c\3\2\2\2\u010a\u0108\3\2\2\2\u010a"+
"\u010b\3\2\2\2\u010b\u010d\3\2\2\2\u010c\u010a\3\2\2\2\u010d\u010e\b+"+
"\2\2\u010eV\3\2\2\2\b\2\u00e6\u00ec\u00f2\u00fc\u010a\3\2\3\2";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
_decisionToDFA = new DFA[_ATN.getNumberOfDecisions()];
for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) {
_decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i);
}
}
} | [
"dertiende3@mail.ru"
] | dertiende3@mail.ru |
75bee055379e63f57b25eb0b71bc688f10d533f9 | f727c689c6916cb5d5b7bf986eec3bc1bf0543cd | /src/Accepted/RestoreIPAddress.java | 6253ee073ae083f5a82753a9870e5178b58252ff | [] | no_license | lizhieffe/LC150Round2 | 375a3e3f3a637bfdac7fe4babf337cb12b983bcb | 07dd4de65291637b96015412978d00bcde139cb4 | refs/heads/master | 2020-12-04T08:16:13.494103 | 2015-01-20T14:18:34 | 2015-01-20T14:18:34 | 25,339,447 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,396 | java | package Accepted;
import java.util.ArrayList;
import java.util.List;
public class RestoreIPAddress {
public List<String> restoreIpAddresses(String s) {
List<String> result = new ArrayList<String>();
if (s == null || s.length() < 4 || s.length() > 12)
return result;
List<String> solution = new ArrayList<String>();
restore(s, 0, solution, result);
return result;
}
private void restore(String s, int beg, List<String> solution, List<String> result) {
if (solution.size() == 4 && beg == s.length()) {
String tmp = solution.get(0) + '.' + solution.get(1) + '.' + solution.get(2) + '.' + solution.get(3);
result.add(tmp);
return;
}
if (solution.size() == 4 || beg >= s.length())
return;
for (int i = beg; i < beg + Math.min(3, s.length() - beg); i++) {
String tmpString = s.substring(beg, i + 1);
if ((Integer.parseInt(tmpString) <= 255) && (i == beg || tmpString.charAt(0) != '0')) {
List<String> tmpSolution = new ArrayList<String>(solution);
tmpSolution.add(tmpString);
restore(s, i + 1, tmpSolution, result);
}
}
}
public static void main(String[] args) {
String s = "010010";
new RestoreIPAddress().restoreIpAddresses(s);
}
}
| [
"lizhieffe@gmail.com"
] | lizhieffe@gmail.com |
9dd615c1e66569ccc75039f85cfba39943825253 | d132a32f07cdc583c021e56e61a4befff6228900 | /src/main/java/net/minecraft/client/resources/FolderResourcePack.java | 8ac2c7418b7f60596b399f2af0b907bc9610f1cf | [] | no_license | TechCatOther/um_clean_forge | 27d80cb6e12c5ed38ab7da33a9dd9e54af96032d | b4ddabd1ed7830e75df9267e7255c9e79d1324de | refs/heads/master | 2020-03-22T03:14:54.717880 | 2018-07-02T09:28:10 | 2018-07-02T09:28:10 | 139,421,233 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,538 | java | package net.minecraft.client.resources;
import com.google.common.collect.Sets;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.HashSet;
import java.util.Set;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import org.apache.commons.io.filefilter.DirectoryFileFilter;
@SideOnly(Side.CLIENT)
public class FolderResourcePack extends AbstractResourcePack
{
private static final String __OBFID = "CL_00001076";
public FolderResourcePack(File p_i1291_1_)
{
super(p_i1291_1_);
}
protected InputStream getInputStreamByName(String p_110591_1_) throws IOException
{
return new BufferedInputStream(new FileInputStream(new File(this.resourcePackFile, p_110591_1_)));
}
protected boolean hasResourceName(String p_110593_1_)
{
return (new File(this.resourcePackFile, p_110593_1_)).isFile();
}
public Set getResourceDomains()
{
HashSet hashset = Sets.newHashSet();
File file1 = new File(this.resourcePackFile, "assets/");
if (file1.isDirectory())
{
File[] afile = file1.listFiles((java.io.FileFilter)DirectoryFileFilter.DIRECTORY);
int i = afile.length;
for (int j = 0; j < i; ++j)
{
File file2 = afile[j];
String s = getRelativeName(file1, file2);
if (!s.equals(s.toLowerCase()))
{
this.logNameNotLowercase(s);
}
else
{
hashset.add(s.substring(0, s.length() - 1));
}
}
}
return hashset;
}
} | [
"alone.inbox@gmail.com"
] | alone.inbox@gmail.com |
3c405f67b30c50ff2f608566172f289b43940eb7 | 0a6e414a6a81bcdb1e4a627e7d218b62ba6cd662 | /SimpleParserSpring/src/main/java/com/ef/Parser.java | eb029f82aca8f13f8dfc223e262aabf901133034 | [] | no_license | terapupa/code_challenges | f4c877bfc434858260321a6f471516334e9169d9 | e1d3c21c1e5fbd0c40f6847bdcb2f6ddca5bb4d2 | refs/heads/master | 2022-02-28T09:00:34.982249 | 2022-02-20T17:06:36 | 2022-02-20T17:06:36 | 115,964,697 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 865 | java | package com.ef;
import com.ef.service.Commandline;
import com.ef.service.ParsingService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
@EnableAutoConfiguration
public class Parser implements CommandLineRunner {
@Autowired
ParsingService parsingService;
@Autowired
private Commandline commandline;
public static void main(String[] args) {
SpringApplication.run(Parser.class, args);
}
@Override
public void run(String... strings) {
if (commandline.parseCommandLine(strings)) {
parsingService.parse();
}
}
}
| [
"Vladislav_Samotessov@cable.comcast.com"
] | Vladislav_Samotessov@cable.comcast.com |
b4cc3450233f406a68f129f88ac7ace619473a04 | 0abba9840c17c253f63e62cd23cda20f3f2cbf41 | /2AutomationWOrkspace/AppiumDemo/src/test/java/com.iexceed/uiframework/steps/IOS/homePageActions.java | 5b1232566cc16707ca4826fe8a5790ffcf73caa7 | [] | no_license | divyakimtaehyung/git-addTemp2 | ed70861d2f6a15aa2ebe075335adff383a84fb34 | 12211d68a913a0dd31a9892e5280c5145af9915b | refs/heads/master | 2023-08-21T20:32:00.369964 | 2021-10-01T14:05:20 | 2021-10-01T14:05:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 268 | java | package com.iexceed.uiframework.steps.IOS;
import com.iexceed.uiframework.PageObjects.IOS.homePage;
public class homePageActions {
homePage homepage=new homePage();
public void selectLanguage() throws Exception {
homepage.selectLanguage();
}
}
| [
"diya16rbcs013@gmail.com"
] | diya16rbcs013@gmail.com |
ab6ab71b8486ad1e08c82a3ad18aca432b6f8049 | 01c2763c5f1d115e7686c98460a2cdd9a9986380 | /src/horus/datamining/wrapper/PurchasePricePredictionWrapper.java | d3e5a68e9adf05d82cab71380b64b9c591f25246 | [] | no_license | YuZhengya90/DataMining | edd5417487aca9501ac258ac868cdb7d968ce54a | eff0e306a48912103ee3bfeec82ba140ce56953b | refs/heads/master | 2020-03-27T08:18:19.235666 | 2018-08-23T12:02:28 | 2018-08-23T12:02:28 | 146,242,352 | 2 | 0 | null | 2018-08-27T03:29:00 | 2018-08-27T03:29:00 | null | UTF-8 | Java | false | false | 1,667 | java | package horus.datamining.wrapper;
import java.time.DayOfWeek;
import java.time.LocalDate;
import horus.datamining.env.Environment;
import horus.datamining.env.EnvironmentImpl;
import horus.datamining.model.*;
import horus.datamining.model.feature.FeatureVector;
public final class PurchasePricePredictionWrapper
{
private static Environment environment;
private static Model model;
public static void setModelPath(String modelPath) throws Exception
{
environment = new EnvironmentImpl();
environment.setModelPath(modelPath);
model = new PurchasePricePrediction(environment);
}
// Input: year - numeric, month - numeric, day - numeric
// Output: Price - numeric
public static double[] predictPrice(int year, int month, int day)
{
FeatureVector featureVector = model.createFeatureVector();
LocalDate date = LocalDate.of(year, month, day);
featureVector.setValue("Year", date.getYear());
featureVector.setValue("Month", date.getMonthValue());
featureVector.setValue("Day", date.getDayOfMonth());
int dayOfWeek = date.getDayOfWeek().getValue() % DayOfWeek.SUNDAY.getValue();
featureVector.setValue("WeekDay", dayOfWeek);
double[] result = null;
try
{
Suggestion suggestion = model.solve(featureVector);
result = new double[1];
result[0] = (double) suggestion.getFieldValue("Price");
}
catch (Exception e)
{
e.printStackTrace();
}
return result;
}
public static void test() throws Exception
{
PurchasePricePredictionWrapper.setModelPath("D:/my-git/data-mining/DataMining/models/");
double[] result = PurchasePricePredictionWrapper.predictPrice(2017, 4, 1);
System.out.println(result[0]);
}
}
| [
"expinc@outlook.com"
] | expinc@outlook.com |
525d864d0d29dfe38cfc1d81be8b1638d4e789f7 | a9330e4017dac2568a5e950d2c6096d0f7cc3268 | /app/src/main/java/com/jing/app/jjgallery/gdb/view/adapter/RecordGridDetailAdapter.java | 5eb3fd02f4b24fbce1531fc0cc3becf3872936e1 | [] | no_license | JasonKing0329/Gdb | 3714247181a944c13f7ca0bd0977cf685daf5f0b | 49324b68e5da3baf307ed2f3c6805983b644dce7 | refs/heads/master | 2021-07-17T13:36:38.717856 | 2018-08-17T06:35:04 | 2018-08-17T06:35:04 | 108,059,270 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,012 | java | package com.jing.app.jjgallery.gdb.view.adapter;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.jing.app.jjgallery.gdb.R;
import com.king.app.gdb.data.entity.Record;
import com.king.app.gdb.data.entity.Star;
import java.util.List;
/**
* ๆ่ฟฐ: only for pad landscape
* <p/>ไฝ่
๏ผๆฏ้ณ
* <p/>ๅๅปบๆถ้ด: 2017/8/7 11:44
*/
public class RecordGridDetailAdapter extends RecyclerView.Adapter<RecordGridDetailHolder> {
private List<Record> list;
private Star currentStar;
private OnDetailActionListener onDetailListener;
private int sortMode;
public void setCurrentStar(Star currentStar) {
this.currentStar = currentStar;
}
public void setSortMode(int sortMode) {
this.sortMode = sortMode;
}
public void setOnDetailListener(OnDetailActionListener onDetailListener) {
this.onDetailListener = onDetailListener;
}
public void setRecordList(List<Record> recordList) {
this.list = recordList;
}
@Override
public RecordGridDetailHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.adapter_gdb_record_grid_detail, parent, false);
return new RecordGridDetailHolder(view);
}
@Override
public void onBindViewHolder(RecordGridDetailHolder holder, int position) {
Record record = list.get(position);
holder.setCurrentStar(currentStar);
holder.setSortMode(sortMode);
holder.bindView(record, position, onDetailListener);
}
@Override
public int getItemCount() {
return list == null ? 0 : list.size();
}
public interface OnDetailActionListener {
void onClickCardItem(View v, Record record);
void onPopupMenu(View v, Record record);
void onClickStar(View v, Star star);
void onClickScene(View v, String scene);
}
}
| [
"jingyang@tcsl.com.cn"
] | jingyang@tcsl.com.cn |
1520c1d8a241fea5389d7cdd548df695ad02afb9 | 623bf5ac9080988d188494fed8c18afc7a818390 | /bdf3-parent/bdf3-dorado-jpa/src/main/java/com/bstek/bdf3/dorado/jpa/JpaUtil.java | 693f125d412c9d4d724ab8831dfec88d917a39b0 | [
"Apache-2.0"
] | permissive | uwitec/bdf3 | f934982d2d4d96f8316f13b861f326e3accbf9ac | 8a098331506a96539b539c6672cf4f5a53dbbccc | refs/heads/master | 2020-03-28T11:57:01.137569 | 2017-07-09T05:50:27 | 2017-07-09T05:50:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,469 | java | package com.bstek.bdf3.dorado.jpa;
import java.beans.PropertyDescriptor;
import java.io.Serializable;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Tuple;
import javax.persistence.TypedQuery;
import javax.persistence.criteria.CriteriaQuery;
import javax.persistence.metamodel.SingularAttribute;
import org.springframework.beans.BeanUtils;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.util.Assert;
import org.springframework.util.CollectionUtils;
import com.bstek.bdf3.dorado.jpa.lin.Linq;
import com.bstek.bdf3.dorado.jpa.lin.impl.LinqImpl;
import com.bstek.bdf3.dorado.jpa.policy.CriteriaPolicy;
import com.bstek.bdf3.dorado.jpa.policy.SaveContext;
import com.bstek.bdf3.dorado.jpa.policy.SavePolicy;
import com.bstek.bdf3.dorado.jpa.policy.impl.DirtyTreeSavePolicy;
import com.bstek.bdf3.jpa.lin.Lind;
import com.bstek.bdf3.jpa.lin.Linu;
import com.bstek.dorado.data.entity.EntityUtils;
/**
* @author Kevin Yang (mailto:kevin.yang@bstek.com)
* @since 2016ๅนด1ๆ31ๆฅ
*/
public abstract class JpaUtil {
private static CriteriaPolicy defaultQBCCriteriaPolicy;
private static SavePolicy defaultSavePolicy;
public static CriteriaPolicy getDefaultQBCCriteriaPolicy() {
return defaultQBCCriteriaPolicy;
}
public static void setDefaultQBCCriteriaPolicy(CriteriaPolicy criteriaPolicy) {
defaultQBCCriteriaPolicy = criteriaPolicy;
}
public static void setDefaultSavePolicy(SavePolicy savePolicy) {
defaultSavePolicy = savePolicy;
}
public static <T> Linq linq(Class<T> domainClass) {
return new LinqImpl(domainClass);
}
public static <T> Linq linq(Class<T> domainClass, Class<?> resultClass) {
return new LinqImpl(domainClass, resultClass);
}
public static Lind lind(Class<?> domainClass) {
return com.bstek.bdf3.jpa.JpaUtil.lind(domainClass);
}
public static Linu linu(Class<?> domainClass) {
return com.bstek.bdf3.jpa.JpaUtil.linu(domainClass);
}
/**
* ๆบ่ฝๆฐๆฎไฟๅญใ
* @param entityOrEntityList ๅฎไฝ็ฑปๅฏน่ฑกๆ่
ๅฎไฝ็ฑป้ๅ
*/
public static void save(Object entityOrEntityList) {
Class<?> entityClass = GenricTypeUtils.getGenricType(entityOrEntityList);
EntityManager entityManager = getEntityManager(entityClass);
SaveContext context = new SaveContext();
context.setEntity(entityOrEntityList);
context.setEntityManager(entityManager);
defaultSavePolicy.apply(context);
}
/**
* ๆบ่ฝๆฐๆฎไฟๅญใ
* <p>
* ๆนๆณๅ
้จไผๆ นๆฎๅฎไฝ็ฑปๆบ่ฝๅคๆญๆๅฑEntityManager๏ผ<br>
* ๅชๆๅฝๆไธชๅฎไฝ็ฑปๅฝๅฑไบๅคไธชEntityManager็ๆ
ๅตไธ๏ผไธๅฏไปฅไฝฟ็จๆญคๆนๆณ<br>
* ๅๆถๆบ่ฝๆๅ็ซไฝๆฐๆฎๆจกๅไธญ็ๅไธชๅฑ็บง็ๅฎไฝๆฐๆฎ๏ผไบค็ฑๅๆฐsavePolicyๆฅๅค็ๅ็ปง็ๆไน
ๅๆไฝใ
* </p>
*
* @param entityOrEntityList ๅฎไฝ็ฑปๅฏน่ฑกๆ่
ๅฎไฝ็ฑป้ๅ
* @param savePolicy ไฟๅญ็ญ็ฅ
*/
public static void save(Object entityOrEntityList, SavePolicy savePolicy) {
Assert.notNull(savePolicy, "savePolicy can not be null!");;
Class<?> entityClass = GenricTypeUtils.getGenricType(entityOrEntityList);
EntityManager entityManager = getEntityManager(entityClass);
DirtyTreeSavePolicy dirtyTreeSavePolicy = new DirtyTreeSavePolicy();
dirtyTreeSavePolicy.setSavePolicy(savePolicy);
SaveContext context = new SaveContext();
context.setEntity(entityOrEntityList);
context.setEntityManager(entityManager);
dirtyTreeSavePolicy.apply(context);
}
public static <T> T persist(T entity) {
save(entity, new SavePolicy() {
@Override
public void apply(SaveContext context) {
context.getEntityManager().persist(context.getEntity());
}
});
return entity;
}
public static <T> T merge(T entity) {
EntityManager em = getEntityManager(GenricTypeUtils.getGenricType(entity));
return em.merge(entity);
}
public static <T> List<T> persist(Iterable<? extends T> entities) {
List<T> result = new ArrayList<T>();
if (entities == null) {
return result;
}
for (T entity : entities) {
result.add(persist(entity));
}
return result;
}
public static <T> List<T> merge(Iterable<? extends T> entities) {
List<T> result = new ArrayList<T>();
if (entities == null) {
return result;
}
for (T entity : entities) {
result.add(merge(entity));
}
return result;
}
public static <T> T persistAndFlush(T entity) {
T result = persist(entity);
flush(entity);
return result;
}
public static <T> T mergeAndFlush(T entity) {
T result = merge(entity);
flush(entity);
return result;
}
public static <T> void remove(T entity) {
EntityManager em = getEntityManager(GenricTypeUtils.getGenricType(entity));
em.remove(entity);
}
public static <T> void remove(Iterable<? extends T> entities) {
Assert.notNull(entities, "The given Iterable of entities not be null!");
for (T entity : entities) {
remove(entity);
}
}
public static <T> void removeAll(Class<T> domainClass) {
com.bstek.bdf3.jpa.JpaUtil.removeAll(domainClass);
}
public static <T> void removeAllInBatch(Class<T> domainClass) {
com.bstek.bdf3.jpa.JpaUtil.removeAllInBatch(domainClass);
}
public static <T, ID extends Serializable> T getOne(Class<T> domainClass, ID id) {
return com.bstek.bdf3.jpa.JpaUtil.getOne(domainClass, id);
}
public static <T> T findOne(Class<T> domainClass) {
return com.bstek.bdf3.jpa.JpaUtil.findOne(domainClass);
}
public static <T> List<T> findAll(Class<T> domainClass) {
return com.bstek.bdf3.jpa.JpaUtil.findAll(domainClass);
}
public static <T> List<T> findAll(CriteriaQuery<T> cq) {
return com.bstek.bdf3.jpa.JpaUtil.findAll(cq);
}
public static <T> Page<T> findAll(Class<T> domainClass, Pageable pageable) {
return com.bstek.bdf3.jpa.JpaUtil.findAll(domainClass, pageable);
}
public static <T> Page<T> findAll(CriteriaQuery<T> cq, Pageable pageable) {
return com.bstek.bdf3.jpa.JpaUtil.findAll(cq, pageable);
}
public static <T> EntityManager getEntityManager(T entity) {
return com.bstek.bdf3.jpa.JpaUtil.getEntityManager(GenricTypeUtils.getGenricType(entity));
}
public static <T> EntityManager getEntityManager(Class<T> domainClass) {
return com.bstek.bdf3.jpa.JpaUtil.getEntityManager(domainClass);
}
public static <T> EntityManagerFactory getEntityManagerFactory(Class<T> domainClass) {
return com.bstek.bdf3.jpa.JpaUtil.getEntityManagerFactory(domainClass);
}
public static <T> boolean isEntityClass(Class<T> domainClass) {
return com.bstek.bdf3.jpa.JpaUtil.isEntityClass(domainClass);
}
public static <T> Long count(Class<T> domainClass) {
return com.bstek.bdf3.jpa.JpaUtil.count(domainClass);
}
public static <T> Long count(CriteriaQuery<T> cq) {
return com.bstek.bdf3.jpa.JpaUtil.count(cq);
}
public static <T> boolean exists(Class<T> domainClass) {
return com.bstek.bdf3.jpa.JpaUtil.exists(domainClass);
}
public static <T> boolean exists(CriteriaQuery<T> cq) {
return count(cq) > 0;
}
public static <T> void flush(T entity) {
Assert.notNull(entity, "entity can not be null.");
EntityManager em = getEntityManager(entity.getClass());
em.flush();
}
public static <T> void flush(Class<T> domainClass) {
com.bstek.bdf3.jpa.JpaUtil.flush(domainClass);
}
public static Long executeCountQuery(TypedQuery<Long> query) {
return com.bstek.bdf3.jpa.JpaUtil.executeCountQuery(query);
}
/**
* ๆ นๆฎๅฑๆงๆถ้ๅฑๆงๅฏนๅบ็ๆฐๆฎ
* @param source ๆบ
* @param propertyName ๅฑๆงๅ
* @param <T> ่ๅ
* @return source้ๅๆฏไธชๅฏน่ฑก็propertyNameๅฑๆงๅผ็ไธไธช้ๅ
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
public static <T> Set<T> collect(Collection<?> source, String propertyName) {
if (CollectionUtils.isEmpty(source)) {
return Collections.EMPTY_SET;
}
Set result = new HashSet(source.size());
for (Object obj : source) {
Object value = null;
if (obj instanceof Map) {
value = ((Map) obj).get(propertyName);
} else if (obj instanceof Tuple) {
value = ((Tuple) obj).get(propertyName);
} else if (EntityUtils.isEntity(obj)) {
value = EntityUtils.getValue(obj, propertyName);
} else if (obj != null) {
PropertyDescriptor pd = BeanUtils.getPropertyDescriptor(obj.getClass(), propertyName);
try {
value = pd.getReadMethod().invoke(obj, new Object[]{});
} catch (IllegalAccessException | IllegalArgumentException
| InvocationTargetException e) {
e.printStackTrace();
}
}
if (value != null) {
result.add(value);
}
}
return result;
}
/**
* ๆ นๆฎๅฑๆงๆถ้ๅฑๆงๅฏนๅบ็ๆฐๆฎ
* @param source ๆบ
* @param <T> ้ขๅ็ฑป๏ผๅฎไฝ็ฑป๏ผ่ๅ
* @return source้ๅๆฏไธชๅฏน่ฑก็propertyNameๅฑๆงๅผ็ไธไธช้ๅ
*/
@SuppressWarnings({"unchecked"})
public static <T> Set<T> collectId(Collection<?> source) {
if (CollectionUtils.isEmpty(source)) {
return Collections.EMPTY_SET;
}
String idName = getIdName(source.iterator().next().getClass());
return collect(source, idName);
}
/**
* source่ฝฌMap๏ผKeyไธบpropertyNameๅฏนๅบ็ๅผ๏ผValueไธบsourceไธญpropertyNameๅฑๆงๅผ็ธๅ็ๅ
็ด
* @param source ๆบ
* @param propertyName ๅฑๆงๅ
* @param <K> propertyNameๅฏนๅบ็ๅฑๆง็็ฑปๅ
* @param <V> source้ๅๅ
็ด ็ฑปๅ
* @return ๅ็ฑปMap
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
public static <K, V> Map<K, List<V>> classify(Collection<V> source, String propertyName) {
if (CollectionUtils.isEmpty(source)) {
return Collections.EMPTY_MAP;
}
Map result = new HashMap();
for (Object obj : source) {
Object value = getValue(obj, propertyName);
Object target = result.get(value);
if (target != null) {
((List) target).add(obj);
} else {
List list = new ArrayList();
list.add(obj);
result.put(value, list);
}
}
return result;
}
/**
* source่ฝฌMap๏ผKeyไธบsourceๅ
็ด ็propertyNameๅฑๆงๅผ๏ผValueไธบ่ฏฅๅ
็ด
* @param source ๆบ้ๅ
* @param propertyName ๅฑๆงๅ
* @param <K> propertyNameๅฏนๅบ็ๅฑๆง็็ฑปๅ
* @param <V> source้ๅๅ
็ด ็ฑปๅ
* @return ็ดขๅผMap
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
public static <K, V> Map<K, V> index(Collection<V> source, String propertyName) {
if (CollectionUtils.isEmpty(source)) {
return Collections.EMPTY_MAP;
}
Map result = new HashMap();
for (Object obj : source) {
Object value = getValue(obj, propertyName);
result.put(value, obj);
}
return result;
}
@SuppressWarnings("rawtypes")
public static Object getValue(Object obj, String propertyName) {
Object value = null;
if (obj instanceof Map) {
value = ((Map) obj).get(propertyName);
} else if (obj instanceof Tuple) {
value = ((Tuple) obj).get(propertyName);
} else if (EntityUtils.isEntity(obj)) {
value = EntityUtils.getValue(obj, propertyName);
} else if (obj != null) {
PropertyDescriptor pd = BeanUtils.getPropertyDescriptor(obj.getClass(), propertyName);
try {
value = pd.getReadMethod().invoke(obj, new Object[]{});
} catch (IllegalAccessException | IllegalArgumentException
| InvocationTargetException e) {
e.printStackTrace();
}
}
return value;
}
/**
* source่ฝฌMap๏ผKeyไธบsourceๅ
็ด ไธป้ฎๅฑๆงๅฑๆงๅผ๏ผValueไธบ่ฏฅๅ
็ด
* @param source ๆบ้ๅ
* @param <K> propertyNameๅฏนๅบ็ๅฑๆง็็ฑปๅ
* @param <V> source้ๅๅ
็ด ็ฑปๅ
* @return ็ดขๅผMap
*/
@SuppressWarnings("unchecked")
public static <K, V> Map<K, V> index(Collection<V> source) {
if (CollectionUtils.isEmpty(source)) {
return Collections.EMPTY_MAP;
}
String idName = getIdName(source.iterator().next().getClass());
return index(source, idName);
}
public static <T> TypedQuery<Long> getCountQuery(CriteriaQuery<T> cq) {
return com.bstek.bdf3.jpa.JpaUtil.getCountQuery(cq);
}
public static <T> String getIdName(Class<T> domainClass) {
return com.bstek.bdf3.jpa.JpaUtil.getIdName(domainClass);
}
public static <T> SingularAttribute<? super T, ?> getId(Class<T> domainClass) {
return com.bstek.bdf3.jpa.JpaUtil.getId(domainClass);
}
}
| [
"kevin.yang@bstek.com"
] | kevin.yang@bstek.com |
dff69e9130c1ead1eae7ee2feaf0dc26f02735b8 | 96a19b0464eb2325745de57cd3cca3ef5b2474be | /MuGA-master/src/com/evolutionary/problem/permutation/SinglePancakeSorting.java | 0b8b773dec28da0b7e7d0721f6967545729fd365 | [] | no_license | MartimViana/VArtificial-final-project | df8b503ff659b6d2dfe1dce0168f1f301e081892 | 583324b58d77e0ab27aed6a05dea28cd78e79982 | refs/heads/master | 2020-09-20T15:32:27.950176 | 2019-12-02T13:49:37 | 2019-12-02T13:49:37 | 224,522,457 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,911 | java | package com.evolutionary.problem.permutation;
import com.evolutionary.problem.permutation.PancakeSorting.Plate;
import javax.xml.crypto.dsig.SignedInfo;
import java.util.Random;
public class SinglePancakeSorting extends Permutations {
// plate size
private static int DEFAULT_SIZE = 128;
// seed that the random number generator has
private static final int SEED = 0;
// maximum length that the pancake can have
private static final int MAX_LENGTH = 1000;
// Problem that the individuals will attempt to solve
public Plate plate;
/**
* Class constructor.
*/
public SinglePancakeSorting() {
super(DEFAULT_SIZE, Optimization.MINIMIZE);
generateProblem(DEFAULT_SIZE, SEED, MAX_LENGTH);
}
protected void generateProblem(int n, long seed, int max_length) {
Random r = new Random(seed);
int temp[] = new int[n];
for (int i = 0; i < n; i++) {
// generate new pancake
temp[i] = (int) Math.floor(r.nextDouble() * max_length);
}
// create new plate
this.plate = new Plate(temp);
}
@Override
protected double evaluate(int[] genome) {
// create a clone of the problem, so as not to solve
// the original.
Plate clone = (Plate) this.plate.clone();
// execute series of flips
for(int i = 0;i < genome.length; i++) {
// flip the pancakes!
clone.flip(
Math.abs(genome[i])
);
// if the problem was already solved, return this evaluation
if (clone.isSolved()) return i;
// if the problem wasn't solved, return this evaluation
}
return genome.length;
}
@Override
public boolean isOptimum() {
return evaluate() <= MAX_LENGTH;
}
}
| [
"martimviana98@gmail.com"
] | martimviana98@gmail.com |
7b79ae9802b679c105ac832542bf45a6a1e6e182 | e15d1b02d09bd199918c9893c19fa5514f46bf53 | /account-web/src/main/java/com/xiutao/controller/user/UserController.java | 8945086dd76fcf3cbe70354c0c23c23687fc6252 | [] | no_license | TaoXiuxia/AccountBook | dbe053cf16778613b1df518767334e0153efa0b9 | cb5a34999d837e0378c1b5d5c61e127c1a8ae2c4 | refs/heads/master | 2022-12-21T22:22:41.184064 | 2020-08-16T02:48:21 | 2020-08-16T02:48:21 | 67,280,502 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,219 | java | package com.xiutao.controller.user;
import com.xiutao.exception.BusinessException;
import com.xiutao.pojo.user.SessionUser;
import com.xiutao.pojo.user.User;
import com.xiutao.serviceapi.item.ItemService;
import com.xiutao.serviceapi.paymethod.PayMethodService;
import com.xiutao.serviceapi.user.UserService;
import com.xiutao.util.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.io.IOException;
import java.net.URLEncoder;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
@Controller
@RequestMapping("/userController")
public class UserController {
private Logger logger=LoggerFactory.getLogger(UserController.class);
private UserService userService;
private ItemService itemService;
private PayMethodService payMethodService;
/**
* ๆณจๅ้กต้ข
* @param model
* @return
*/
@RequestMapping("/showUserRegister")
public String showUserRegister(Model model) {
return "pages/userRegister";
}
/**
* ๆฟๆดป้กต้ข
* @param model
* @return
*/
@RequestMapping("/showUserActive")
public String showUserActive(Model model) {
return "pages/userActive";
}
/**
* ็ป้็้ข
* @param model
* @return
*/
@RequestMapping("/showUserLogin")
public String showUserLogin(Model model) {
return "pages/userLogin";
}
/**
* ๆณจๅ็ฌฌไธๆญฅ๏ผๅคๆญๆฏๅฆๅทฒ็ปๆณจๅ๏ผๆ นๆฎ้ฎ็ฎฑ๏ผ๏ผ
* ๅทฒๆณจๅ ๅทฒๆฟๆดป -> ่ฏท็ดๆฅ็ปๅฝ
* ๅทฒๆณจๅ ๆชๆฟๆดป -> ่ฏทๅๅพๆฟๆดป
* ๆชๆณจๅ -> ๅๆฐๆฎๅบไธญๆๅ
ฅๆฐๆฎ
* @param session
* @param userName
* @param email
* @param password
* @return
*/
@RequestMapping(value = "/register.action", produces = "application/json;charset=UTF-8")
public @ResponseBody
Map<String ,Object> register(HttpSession session, String userName, String email, String password) {
Map<String, Object> map = new HashMap<String, Object>();
// 0:ๆชๆณจๅ;1:ๅทฒๆณจๅ๏ผๆชๆฟๆดป;2:ๅทฒๆณจๅ๏ผๅทฒๆฟๆดป
int emailState = userService.isEmailRegister(email);
if(emailState == 0 || emailState == 1){
User userChecked = userService.findUserByUserName(userName);
if(userChecked != null && !userChecked.getEmail().equals(email)){ // ็จๆทๅๅทฒๅญๅจ ไธ ็จๆทๅไธไธ่ฏฅemailๅน้
ๅฐฑๆฏ่ขซๅ ็จ
map.put("info", "็จๆทๅ่ขซๅ ็จ๏ผ่ฏทไฟฎๆน็จๆทๅ");
return map;
}
String activationCode = EmailUtil.sendEmail(email);
User user= new User();
user.setName(userName);
user.setEmail(email);
user.setPassword(password);
user.setIsActive(Constants.NOT_ACTIVE);
user.setActivationCode(activationCode);
user.setPassword(PasswordUtil.geneMD5WithSalt(user.getPassword()));
user.setRegisterTime(new Date());
user.setLastLoginTime(new Date());
user.setActivationCodeTime(DateTimeUtil.nowTime());
if(emailState == 0){ // ๆณจๅ็จๆท
int userId = userService.register(user);
// ๆๅ
ฅๅๅงๆฐๆฎ๏ผitem payMethod๏ผ
initItem(userId);
initPayMethod(userId);
}else if(emailState == 1){ // ๆดๆฐๆฐๆณจๅ็จๆท
int userId = userService.findUserByEmail(email).getId();
user.setId(userId);
userService.update(user);
}
session.setAttribute(Constants.EMAIL, email);
map.put("info", "ไธไธๆญฅ");
return map;
}else if(emailState == 2){ // ๅทฒๆณจๅ๏ผ่ฏท็ปๅฝ
map.put("info", "้ฎ็ฎฑๅทฒ็ปๆณจๅ๏ผ่ฏท็ปๅฝ");
return map;
}
return map;
}
/**
* ๆณจๅ็ฌฌไบๆญฅ๏ผๆฟๆดป้ฎ็ฎฑ๏ผ
*/
@RequestMapping(value = "/active.action", produces = "application/json;charset=UTF-8")
public @ResponseBody
Map<String ,Object> active(User user){
String result = userService.active(user.getEmail(), user.getActivationCode());
Map<String ,Object> map = new HashMap<String ,Object>();
map.put("info", result);
return map;
}
/**
* ็ปๅฝ
* @param session
* @param response
* @param account
* @param password
* @param checkCode
* @param rememberMe
* @return
*/
@RequestMapping(value = "/login.action", produces = "application/json;charset=UTF-8")
public @ResponseBody
Map<String ,Object> login(HttpSession session, HttpServletResponse response, String account, String password, String checkCode, String rememberMe) {
final String REMEMBERME ="true";
Map<String, Object> map = new HashMap<String, Object>();
try {
User user = userService.login(account, password, false);
SessionUser sessionUser = new SessionUser();
sessionUser.setUserId(user.getId());
sessionUser.setUserName(user.getName());
session.setAttribute(Constants.SESSION_USER_KEY, sessionUser);
session.setAttribute(Constants.USER_ID, user.getId());
// ่ฎฐไฝ็ปๅฝ็ถๆ
if (REMEMBERME.equals(rememberMe)) {
// ่ชๅจ็ปๅฝ๏ผไฟๅญ็จๆทๅๅฏ็ ๅฐCookie
String infor = URLEncoder.encode(account.toString(), "utf-8") + "|" + user.getPassword();
// ๆธ
้คไนๅ็Cookieไฟกๆฏ
Cookie cookie = new Cookie(Constants.COOKIE_USER_INFO, null);
cookie.setPath("/");
cookie.setMaxAge(0);
// ๅฐ็จๆทไฟกๆฏไฟๅญๅฐCookieไธญ
Cookie cookieInfo = new Cookie(Constants.COOKIE_USER_INFO, infor);
cookieInfo.setPath("/");
// ่ฎพ็ฝฎๆๅคง็ๅฝๅจๆไธบ1ๅนด
cookieInfo.setMaxAge(31536000);
response.addCookie(cookieInfo);
} else { //ๆธ
็ฉบcookie
Cookie cookie = new Cookie(Constants.COOKIE_USER_INFO, null);
cookie.setPath("/");
cookie.setMaxAge(0);
response.addCookie(cookie);
}
}catch(BusinessException e){
if(map.get("info")==null){
map.put("info", e.getMessage());
logger.info("็ปๅฝๅคฑ่ดฅ: "+ e.getMessage());
e.printStackTrace();
return map;
}
}catch (Exception e) {
if(map.get("info")==null){
map.put("info", "็ปๅฝๅคฑ่ดฅ");
logger.info("็ปๅฝๅคฑ่ดฅ");
}
e.printStackTrace();
return map;
}
map.put("info", "็ปๅฝๆๅ");
return map;
}
/**
* ๆณจ้
* @param session
* @return
*/
@RequestMapping(value = "/logout.action", produces = "application/json;charset=UTF-8")
public @ResponseBody
Map<String ,Object> logout(HttpSession session, HttpServletResponse response) {
Map<String, Object> map = new HashMap<String, Object>();
//ๆธ
็ฉบsession
session.setAttribute(Constants.SESSION_USER_KEY, null);
//ๆธ
็ฉบcookie
Cookie cookie = new Cookie(Constants.COOKIE_USER_INFO, null);
cookie.setPath("/");
cookie.setMaxAge(0);
response.addCookie(cookie);
map.put("info", "ๆณจ้ๆๅ");
return map;
}
/**
* ๅitem่กจไธญๆๅ
ฅๅๅง็item
* @param userId
*/
private void initItem(int userId) {
itemService.addItem(userId, " ", "็ฉบ้กน็ฎ", "in");
itemService.addItem(userId, "ๅทฅ่ต", " ", "in");
itemService.addItem(userId, "ๅ
ถไป", " ", "in");
itemService.addItem(userId, " ", "็ฉบ้กน็ฎ", "ex");
itemService.addItem(userId, "้ค้ฅฎ", " ", "ex");
itemService.addItem(userId, "ๆ้ฅฐ", " ", "ex");
itemService.addItem(userId, "ๅป็", " ", "ex");
itemService.addItem(userId, "ๅ
ถไป", " ", "ex");
}
/**
* ๅpay_method่กจไธญๆๅ
ฅๅๅง็payMethod
* @param userId
*/
private void initPayMethod(int userId) {
payMethodService.addPayMethod(userId, "ไฝ้ขๅฎ", -1, "in", "");
payMethodService.addPayMethod(userId, "็ฐ้", -1, "in", "");
payMethodService.addPayMethod(userId, "ๅพฎไฟก", -1, "in", "");
payMethodService.addPayMethod(userId, "้ถ่กๅก", -1, "in", "");
payMethodService.addPayMethod(userId, "ไฝ้ขๅฎ", 1, "ex", "");
payMethodService.addPayMethod(userId, "็ฐ้", 1, "ex", "");
payMethodService.addPayMethod(userId, "ๅพฎไฟก", 1, "ex", "");
payMethodService.addPayMethod(userId, "้ถ่กๅก", 1, "ex", "");
payMethodService.addPayMethod(userId, "่ฑๅ", 0, "ex", "");
payMethodService.addPayMethod(userId, "ไฟก็จๅก", 0, "ex", "");
}
// ====================== Getter & Setter =========================
public PayMethodService getPayMethodService() {
return payMethodService;
}
@Autowired
public void setPayMethodService(PayMethodService payMethodService) {
this.payMethodService = payMethodService;
}
public UserService getUserService() {
return userService;
}
@Autowired
public void setUserService(UserService userService) {
this.userService = userService;
}
public ItemService getItemService() {
return itemService;
}
@Autowired
public void setItemService(ItemService itemService) {
this.itemService = itemService;
}
}
/**
*
* .......................ๆไฝๆ
ๆฒ......................
* _oo0oo_
* o8888888o
* 88" . "88
* (| -_- |)
* 0\ = /0
* ___/`---'\___
* .' \\| |// '.
* / \\||| : |||// \
* / _||||| -ๅ-|||||- \
* | | \\\ - /// | |
* | \_| ''\---/'' |_/ |
* \ .-\__ '-' ___/-. /
* ___'. .' /--.--\ `. .'___
* ."" '< `.___\_<|>_/___.' >' "".
* | | : `- \`.;`\ _ /`;.`/ - ` : | |
* \ \ `_. \_ __\ /__ _/ .-` / /
* =====`-.____`.___ \_____/___.-`___.-'=====
* `=---='
*
*.....................ไฝ็ฅๅผๅ
,ๆฐธๆ BUG...................
*
*/
/**
* ไผ้ฒไธๅป๏ผ
* ่ฏทๅจ"ๅ"ไธญๆพ"ๅ"
* ๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅ
* ๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅ
* ๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅ
* ๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅ
* ๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅ
* ๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅ
* ๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅ
* ๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅ
* ๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅ
* ๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅ
* ๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅ
* ๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅๅ
**/ | [
"762417862@qq.com"
] | 762417862@qq.com |
50c29654b6aaaf2e4e6dbbac201d1ed7d34d1179 | 6b81c8428bc339721cca60eba21dd01e579b4c5b | /src/main/java/Page_Factory/pf_workflows.java | 219aa2babd9f78d3d901a6f4eed4cbe05e022df9 | [] | no_license | eMudhraScripts/emSigner_Latest | 7fa7ac859ade4b56811c0d5ade6a31dc7e480edc | 311f5b3d8b2028421c2c0e9abeec1f83d4f5d9ad | refs/heads/master | 2022-07-11T05:31:04.522708 | 2019-07-24T10:00:29 | 2019-07-24T10:00:29 | 188,006,069 | 0 | 0 | null | 2022-06-29T17:23:20 | 2019-05-22T09:26:49 | HTML | UTF-8 | Java | false | false | 10,326 | java | package Page_Factory;
import java.util.List;
import java.util.Random;
import org.apache.log4j.Logger;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindAll;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.How;
import org.openqa.selenium.support.PageFactory;
import Generic_Library.Basefunctions;
import Generic_Library.Utility;
public class pf_workflows extends pf_genericmethods {
final static Logger log = Logger.getLogger(pf_workflows.class);
Basefunctions b = new Basefunctions();
//workflow elements
@FindAll({@FindBy(how = How.XPATH, using = "//ul[@id='adminWorkflowMenu']/li[2]/ul/li")}) public List<WebElement> workflowlist;
String source ="//ul[@id='adminWorkflowMenu']/li[2]/ul/li[#DELIM#]/a/span[1]";
//Workflow submenu elements
@FindAll({@FindBy(how = How.XPATH, using = "//*[@id='adminWorkflowMenu']/li[2]/ul/li[1]/ul/li")}) public List<WebElement> submenuorkflowlist;
String submenusource = "//*[@id='adminWorkflowMenu']/li[2]/ul/li[#DELIM#]/ul/li[1]/a";
@FindBy(how = How.XPATH, using = "//span[@class='arrow open']") public WebElement arrowOpen;
@FindBy(how = How.ID, using = "frmSign") WebElement uploadDocPage;
@FindBy(how = How.XPATH, using = "//div[@class='workflow-section row ']") WebElement spcfyParticipantsPage;
//document list
@FindAll({@FindBy(how = How.XPATH, using = "//table[@id='tblDocDetails']/tbody/tr")}) public List<WebElement> docNamelist;
//Choose file button
@FindBy(how = How.XPATH, using = "//div[@class='content-body']/div/table/tbody/tr/td[3]/input") public WebElement chooseFile;
//without selecting file press continue button
@FindBy(how = How.XPATH, using = "//div[contains(text(),'Please upload document')]") WebElement withoutFileCBtn;
@FindBy(how = How.ID, using = "btnmsgok") WebElement okBtn;
//without signatory save and continue button
@FindBy(how = How.XPATH, using = "//div[contains(text(),'Please map user')]") WebElement withoutSignSaveBtn;
@FindBy(how = How.ID, using = "btnstep1") WebElement saveNContinueBtn;
//signatory 1
@FindBy(how = How.XPATH, using = "//div[@class='signerwrapper']/ul/li/ul/li/a") WebElement signatoryBtn;
@FindAll({@FindBy(how = How.XPATH, using = "//div[@class='signerwrapper']/ul/li")}) public List<WebElement> docmtList;
String documentList="//div[@class='signerwrapper']/ul/li[#DELIM#]";
//Signatory list
//@FindAll({@FindBy(how = How.XPATH, using = "//div[@class='signerwrapper']/ul/li/ul/li")}) public List<WebElement> signatoryList;
@FindAll({@FindBy(how = How.XPATH, using = "//div[@class='signerwrapper']/ul/li/ul/li")}) public List<WebElement> signatoryList;
String signatory="//div[@class='signerwrapper']/ul/li/ul/li[#DELIM#]/a";
// @FindAll({@FindBy(how = How.XPATH, using = "//div[@class='signerwrapper']/ul/li/ul/li/a[contains(text(),'Review')]")}) public List<WebElement> reviewList;
// String reviewer="//div[@class='signerwrapper']/ul/li/ul/li[#DELIM#]/a";
//Reviewer comment
@FindAll({@FindBy(how = How.XPATH, using = "//section[@class='box']/div[2]/div/div/div/div[1]/div/div")}) public List<WebElement> reviewerComntSize;
//String rcomment="//div[@class='documentContainment']/div/div[#DELIM#]/textarea";
String rcomment="//section[@class='box']/div[2]/div/div/div/div[#DELIM#]/div/div/textarea";
//comment count
@FindAll({@FindBy(how = How.XPATH, using = "//div[@id='singerWrapper']/div/div")}) public List<WebElement> rComntSize;
@FindAll({@FindBy(how = How.XPATH, using = "//div[@class='signatories-section']/ul/li")}) public List<WebElement> signatoryIDs;
//signatory radio button
String signatoryRButton="//div[@class='signatories-section']/ul/li[#DELIM#]/span/input";
//radio button
@FindBy(how = How.XPATH, using = "//span[@class='chk-signer']/input") WebElement radioBtn;
//apply button
@FindBy(how = How.ID, using = "btnSignatorySave") WebElement applyBtn;
//continue button
@FindBy(how = How.ID, using = "btnValue") WebElement continueBtn;
@FindBy(how = How.XPATH, using = "//*[@id=\"div-dsign\"]/label") public WebElement dsign;
@FindAll({@FindBy(how = How.XPATH, using = "//div[@class='sign-font-block']/ul/li")}) public List<WebElement> signs;
//String si = "//div[@class='sign-font-block']/ul/li[#DELIM#]/input";
String si = "//div[@class='innertab-panel']/div/ul/li[#DELIM#]/span[2]";
@FindBy(how = How.ID, using = "btnradiosign") WebElement signbutton;
public pf_workflows(WebDriver driver) {
PageFactory.initElements(driver, this);
}
public void selectWorkflow(WebDriver driver) throws Exception {
JavascriptExecutor js = (JavascriptExecutor)driver;
int size = workflowlist.size();
System.out.println("size"+size);
for(int s=7;s<=size;s++) {
// Random ran = new Random();
// int num = ran.nextInt(workflowlist.size());
// System.out.println(num);
WebElement fe = w.findElement(By.xpath(source.replace("#DELIM#",String.valueOf(s))));
System.out.println(fe.getText());
js.executeScript("arguments[0].scrollIntoView();",fe);
cl_click(fe);
Thread.sleep(20000);
try{
if(arrowOpen.isDisplayed()) {
cl_click(w.findElement(By.xpath(submenusource.replace("#DELIM#",String.valueOf(s)))));
Thread.sleep(40000);
}}catch(Exception e){
String url=w.getCurrentUrl();
System.out.println(url);
//boolean aa=continueBtn.isDisplayed();
if(url.contains("Verticalization")) {
int docList=docNamelist.size();
System.out.println("Doclist"+docList);
cl_click(continueBtn);
System.out.println("Without choosing file,press continue button: "+withoutFileCBtn.getText());
Thread.sleep(1000);
cl_click(okBtn);
String filePath=Utility.getpropertydetails("WorkflowChooseFilePath");
Thread.sleep(2000);
cl_entertext(chooseFile, filePath);
cl_click(continueBtn);
Thread.sleep(4000);
cl_click(saveNContinueBtn);
System.out.println("Without Signatory,press save and continue button: "+withoutSignSaveBtn.getText());
Thread.sleep(1000);
cl_click(okBtn);
int signatorysize=signatoryList.size();
System.out.println("signatory: "+signatoryList.size());
for(int k=1;k<=signatorysize;k++) {
cl_click(w.findElement(By.xpath(signatory.replace("#DELIM#",String.valueOf(k)))));
cl_click(w.findElement(By.xpath(signatoryRButton.replace("#DELIM#",String.valueOf(k)))));
Thread.sleep(2000);
cl_click(applyBtn);
Thread.sleep(3000);
}
int dSize=docmtList.size();
if(dSize>1) {
for(int i=2;i<=dSize;i++) {
cl_click(w.findElement(By.xpath(documentList.replace("#DELIM#",String.valueOf(i)))));
for(int k=1;k<=signatorysize;k++) {
cl_click(w.findElement(By.xpath(signatory.replace("#DELIM#",String.valueOf(k)))));
cl_click(w.findElement(By.xpath(signatoryRButton.replace("#DELIM#",String.valueOf(k)))));
Thread.sleep(2000);
cl_click(applyBtn);
Thread.sleep(3000);
}
}
}else {
Thread.sleep(2000);
cl_click(saveNContinueBtn);
Thread.sleep(5000);
cl_click(dsign);
Thread.sleep(2000);
int ss = signs.size();
Random r = new Random();
int n = r.nextInt(ss);
cl_click(w.findElement(By.xpath(si.replace("#DELIM#",String.valueOf(n)))));
Thread.sleep(1000);
cl_click(signbutton);
Thread.sleep(20000);
b.getScreenshot();
}
}
/*if(spcfyParticipantsPage.isDisplayed()) {*/
else {
cl_click(saveNContinueBtn);
System.out.println("Without Signatory,press save and continue button: "+withoutSignSaveBtn.getText());
Thread.sleep(1000);
cl_click(okBtn);
int signatorysize=signatoryList.size();
System.out.println("signatory: "+signatoryList.size());
//for having only one doc --Signatory
for(int k=1;k<=signatorysize;k++) {
cl_click(w.findElement(By.xpath(signatory.replace("#DELIM#",String.valueOf(k)))));
cl_click(w.findElement(By.xpath(signatoryRButton.replace("#DELIM#",String.valueOf(k)))));
Thread.sleep(2000);
cl_click(applyBtn);
Thread.sleep(3000);
}
int dSize=docmtList.size();
if(dSize>1) {
for(int i=2;i<=dSize;i++) {
cl_click(w.findElement(By.xpath(documentList.replace("#DELIM#",String.valueOf(i)))));
for(int k=1;k<=signatorysize;k++) {
cl_click(w.findElement(By.xpath(signatory.replace("#DELIM#",String.valueOf(k)))));
cl_click(w.findElement(By.xpath(signatoryRButton.replace("#DELIM#",String.valueOf(k)))));
Thread.sleep(2000);
cl_click(applyBtn);
Thread.sleep(3000);
}
}
}else {
Thread.sleep(2000);
int rcsize=reviewerComntSize.size();
System.out.println("rcsize"+rcsize);
int rsize=rComntSize.size();
System.out.println("rsize"+rsize);
if(rcsize>=1) {
for(int j=1;j<=rsize;j++) {
for(int i=1;i<=rcsize;i++) {
String comment=Utility.getpropertydetails("ReviewerComment");
WebElement comm=w.findElement(By.xpath(rcomment.replace("#DELIM#",String.valueOf(i))));
// WebElement comm = w.findElement(By.xpath(rcomment.replace("#DELIM#",String.valueOf(i))));
js.executeScript("arguments[0].scrollIntoView();",comm);
// cl_entertext(comm, comment);
// js.executeScript("window.scrollTo(0, document.body.scrollHeight);");
// js.executeScript("window.scrollTo(0, -document.body.scrollHeight);");
comm.sendKeys(comment);
}
}
}
Thread.sleep(4000);
cl_click(saveNContinueBtn);
Thread.sleep(10000);
cl_click(dsign);
int ss = signs.size();
Random r = new Random();
int n = r.nextInt(ss);
Thread.sleep(3000);
cl_click(w.findElement(By.xpath(si.replace("#DELIM#",String.valueOf(n)))));
Thread.sleep(3000);
cl_click(signbutton);
Thread.sleep(20000);
b.getScreenshot();
}
}
}
}
}
}
| [
"20954@CPU351.emudhra.local"
] | 20954@CPU351.emudhra.local |
8b8433ea41adb274da04fbf0e34da6e5856134d1 | 91a9d5825ee8597eef7ed023f65e40a383d2b660 | /src/main/java/com/skimmoa/web/config/TilesConfig.java | c0debdc9160213ab834a6827790128f6fbec462a | [] | no_license | ddonggi/skimmoa | e2885b8f41a4f8fda5c168f37dbcc6c6ebb78921 | 01e25739bb32fc7566cc1b84f485dbacfcdb477a | refs/heads/master | 2022-11-15T10:53:20.967848 | 2020-07-13T00:44:21 | 2020-07-13T00:44:21 | 274,352,706 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,449 | java | package com.skimmoa.web.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.view.UrlBasedViewResolver;
import org.springframework.web.servlet.view.tiles3.SimpleSpringPreparerFactory;
import org.springframework.web.servlet.view.tiles3.TilesConfigurer;
import org.springframework.web.servlet.view.tiles3.TilesView;
import org.springframework.web.servlet.view.tiles3.TilesViewResolver;
@Configuration
public class TilesConfig {
@Bean
public TilesConfigurer tilesConfigurer() {
TilesConfigurer tilesConfigurer = new TilesConfigurer();
tilesConfigurer.setDefinitions(new String[] {"/WEB-INF/tiles.xml"});
tilesConfigurer.setCheckRefresh(true);
//ViewPreparer์์ Autowired๊ฐ ๊ฐ๋ฅํ๊ฒ ํ๋ ์ค์
tilesConfigurer.setPreparerFactoryClass(SimpleSpringPreparerFactory.class);
return tilesConfigurer;
}
@Bean
public TilesViewResolver tilesViewResolver() {
TilesViewResolver viewResolver = new TilesViewResolver();
viewResolver.setViewClass(TilesView.class);
viewResolver.setOrder(1);
return viewResolver;
}
@Bean
public UrlBasedViewResolver viewResolver() {
final UrlBasedViewResolver resolver = new UrlBasedViewResolver();
resolver.setViewClass(TilesView.class);
resolver.setOrder(1);
return resolver;
}
} | [
"82105@Donggi-Laptop"
] | 82105@Donggi-Laptop |
5cd310879ae963d45501a3ff5dceda28cd18ac2c | 7ab3c3735493647fe7946dbf16375f847ff2607c | /Inheritance/interfaces/Jet.java | 32b29d1913d60c7b5bd9e4fdec9167fcfdeb25dc | [] | no_license | nimalvalath/javaprograms | 1c42fba8ea50dc36c25857e47e526cfa623768ba | 406bda30d0b73f15498f2f8ce387c63697808d31 | refs/heads/master | 2021-08-22T20:32:17.028000 | 2017-12-01T06:37:46 | 2017-12-01T06:37:46 | 110,806,113 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 424 | java | //inheritance using -interface
class Jet implements Flyable {
@Override
public void start(){
System.out.println("jet starts");
}
@Override
public void fly(){
System.out.println("Jet fly");
}
@Override
public void land(){
System.out.println("jet lands");
}
@Override
public void stop(){
System.out.println("Jet stops");
}
public void doSomething(){
System.out.println("jet is doing something");
}
} | [
"nimal@xeoscript.com"
] | nimal@xeoscript.com |
28df6d120a81966b513ca6c9cf4f65f5c33e89d4 | f56fab2838172dadb0b264525e9b6c4edee9981e | /src/com/util/JsonUtils.java | 4e85c3e5c05c54b41368655e0d288cb5f92803f9 | [] | no_license | ruyanshui/studentscore | 6d22ada856c3a771a3569681b26508d16be51db7 | e3e9c6548cc256380776954bd5ee64586e236406 | refs/heads/master | 2020-05-05T09:49:15.282445 | 2019-04-07T05:12:04 | 2019-04-07T05:12:04 | 179,918,546 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,955 | java | package com.util;
import java.util.List;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JavaType;
import com.fasterxml.jackson.databind.ObjectMapper;
/**
*
* @ClassName: JsonUtils
* @Description: ่ชๅฎไนๅๅบ็ปๆ
* @date 2018ๅนด6ๆ5ๆฅ
*/
public class JsonUtils {
// ๅฎไนjacksonๅฏน่ฑก
private static final ObjectMapper MAPPER = new ObjectMapper();
/**
* ๅฐๅฏน่ฑก่ฝฌๆขๆjsonๅญ็ฌฆไธฒใ
* <p>
* Title: pojoToJson
* </p>
* <p>
* Description:
* </p>
*
* @param data
* @return
*/
public static String objectToJson(Object data) {
try {
String string = MAPPER.writeValueAsString(data);
return string;
} catch (JsonProcessingException e) {
e.printStackTrace();
}
return null;
}
/**
* ๅฐjson็ปๆ้่ฝฌๅไธบๅฏน่ฑก
*
* @param jsonData
* jsonๆฐๆฎ
* @param clazz
* ๅฏน่ฑกไธญ็object็ฑปๅ
* @return
*/
public static <T> T jsonToPojo(String jsonData, Class<T> beanType) {
try {
T t = MAPPER.readValue(jsonData, beanType);
return t;
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
/**
* ๅฐjsonๆฐๆฎ่ฝฌๆขๆpojoๅฏน่ฑกlist
* <p>
* Title: jsonToList
* </p>
* <p>
* Description:
* </p>
*
* @param jsonData
* @param beanType
* @return
*/
public static <T> List<T> jsonToList(String jsonData, Class<T> beanType) {
JavaType javaType = MAPPER.getTypeFactory().constructParametricType(List.class, beanType);
try {
List<T> list = MAPPER.readValue(jsonData, javaType);
return list;
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
}
| [
"huanhuan.lv@pactera.com"
] | huanhuan.lv@pactera.com |
da617ce7f8635afe571dca4dc2ec407bd800e73e | e8c614ad87428d590a962ce9a098b7d0b4aab037 | /src/main/java/com/iot/homeAutomation/Device/DeviceController.java | cb4b3b0fe0417c5903c68b2e1288fba10331a8e4 | [] | no_license | sethusuresh/HomeAutomation | 8c49abe833f92b9c704a7351b37a9d1dc30a7d95 | 25ab402a02f4fc0f1c27b68b8d78745d44ec29c7 | refs/heads/master | 2020-12-08T04:01:23.577459 | 2020-08-01T14:20:44 | 2020-08-01T14:20:44 | 232,879,183 | 1 | 1 | null | 2020-11-30T11:21:58 | 2020-01-09T18:39:48 | Java | UTF-8 | Java | false | false | 3,019 | java | package com.iot.homeAutomation.Device;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.Resource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestHeader;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import com.iot.homeAutomation.Device.DTO.DeviceDTO;
import com.iot.homeAutomation.Device.DTO.WaterConfigDTO;
import com.iot.homeAutomation.Util.Response;
@RestController
public class DeviceController {
private static final Logger logger = LoggerFactory.getLogger(DeviceController.class);
@Resource
DeviceManager deviceManager;
@RequestMapping(value="/addDevice", method=RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE)
public Response<DeviceDTO> addDevice() {
Response<DeviceDTO> response;
try {
DeviceDTO device = deviceManager.addDevice();
response = new Response<DeviceDTO>("200", "Success", device);
} catch (Exception e) {
response = new Response<DeviceDTO>("500", "Failed", null);
logger.error("Error in addDevice:- {}", e);
}
return response;
}
@RequestMapping(value="/saveDeviceName", method=RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE)
public Response<String> saveDeviceName(@RequestBody DeviceDTO device, @RequestHeader String userId) {
Response<String> response;
try {
deviceManager.saveDeviceName(device, userId);
response = new Response<String>("200", "Success", device.getName());
} catch (Exception e) {
response = new Response<String>("500", "Failed", null);
}
return response;
}
@RequestMapping(value="/{deviceId}/saveWaterConfig", method=RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE)
public Response<Boolean> saveWaterConfig(@RequestBody WaterConfigDTO waterConfig, @RequestHeader String deviceId, @RequestHeader String userId) {
Response<Boolean> response;
try {
deviceManager.saveWaterConfig(waterConfig, deviceId, userId);
response = new Response<Boolean>("200", "Success", true);
} catch (Exception e) {
response = new Response<Boolean>("500", "Failed", false);
}
return response;
}
@RequestMapping(value = "/getAllDevices", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
public Response<List<DeviceDTO>> findAllDeviceByUserId(@RequestHeader String userId) {
Response<List<DeviceDTO>> response;
List<DeviceDTO> deviceList = new ArrayList<>();
try {
deviceList = deviceManager.findAllDeviceByUserId(userId);
response = new Response<List<DeviceDTO>>("200", "Success", deviceList);
} catch (Exception e) {
response = new Response<List<DeviceDTO>>("500", "Failed", deviceList);
}
return response;
}
}
| [
"sethusuresh.ekm@gmail.com"
] | sethusuresh.ekm@gmail.com |
fef1977056e57c48545d7c7fcb1c36e7790adc17 | 3442fbda5ec29e8650e834990cd63abf2d6b6331 | /MySel2JavaProj2/src/main/java/ru/my/pages/Page.java | 34861034336aaab7895fdba6bc086c817c663bd2 | [] | no_license | DevelopmentTempVika/forFacebook | 034bd9f3b86684e5111296c14e100067210f4806 | b462cca6de2998e2907d331365208e7722d1adc2 | refs/heads/master | 2021-09-04T02:53:15.229598 | 2018-01-15T00:07:27 | 2018-01-15T00:07:27 | 113,309,349 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 120 | java | package ru.my.pages;
import org.openqa.selenium.WebDriver;
public interface Page {
void init(WebDriver driver);
} | [
"tempvika@bk.ru"
] | tempvika@bk.ru |
c13de2abcd7daaec570604a0d5068b82616db89e | 750d06d12ce6e408301fdf9bdbb08ddef0b6f1f1 | /Databases_Advanced/Spring-data-auto-mapping-objects-exercises/src/main/java/com/softuni/springautomappingdemo/services/GameService.java | 34b19fac8f5acc406bebf246b51e3fedd8673d29 | [] | no_license | Deianov/Java-DB | e16245af70527a33efa9789d03276b449bbee70c | e7023500f76e84f220f621a598e460177ce327d3 | refs/heads/master | 2022-07-31T02:31:18.508054 | 2022-06-23T11:06:28 | 2022-06-23T11:06:28 | 239,293,956 | 1 | 3 | null | 2022-06-23T11:06:29 | 2020-02-09T11:35:24 | Java | UTF-8 | Java | false | false | 798 | java | package com.softuni.springautomappingdemo.services;
import com.softuni.springautomappingdemo.domain.dtos.GameBaseViewDto;
import com.softuni.springautomappingdemo.domain.dtos.GameDetailViewDto;
import com.softuni.springautomappingdemo.domain.dtos.GameDto;
import com.softuni.springautomappingdemo.domain.entities.Game;
import java.util.Set;
public interface GameService {
boolean existsGameByTitleLike(String title);
boolean existsGameById(Long id);
String deleteGameById(long id);
String validate(GameDto gameDto);
String addGame(GameDto gameDto);
String EditGame(long id, GameDto gameDto);
GameDto findGameById(long id);
Game findGameByTitle(String title);
Set<GameBaseViewDto> getAllGames();
GameDetailViewDto getDetailGameByTitle(String title);
}
| [
"44973718+Deianov@users.noreply.github.com"
] | 44973718+Deianov@users.noreply.github.com |
30462fda4920ea3f089ffe87d97b09b45593b7e5 | f0d301dfdf9c71e67e2d2d20e002e644aaa6971a | /BaekJoon_Online_Judge/BaekJoon_Online_Judge-master/BackJoon_10171.java | 1b3d5c3d882e9a27ab428497e3ac9fb87e92f3c3 | [] | no_license | MinjiJo/BaekJoon_Online_Judge | c581ee388110d06be646a4ec60f664dba0328a6f | 144b96e1c965fb87ef0f6e2e0619ac147d05a50b | refs/heads/master | 2020-07-12T23:28:27.336793 | 2020-07-03T00:49:01 | 2020-07-03T00:49:01 | 204,933,410 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 569 | java | /*
ๆจ์ข๋ผ๏ฟฝ์
่พ๋ช์ ฃ
๏ฟฝ๋ธ๏ฟฝ์ ๏ฟฝ์๏ฟฝ์ ฃ๏ฟฝ๏ฟฝ ๅช์์ ๆจ์ข๋ผ๏ฟฝ์ ็๏ฟฝ ็ฐ์์ ฐ๏ฟฝ๋ธฏ๏ฟฝ๋๏ฟฝ์ค.
๏ฟฝ์ฏ๏ฟฝ์ ฐ
๏ฟฝ๋พพ๏ฟฝ์ฌ.
็ฐ์์ ฐ
ๆจ์ข๋ผ๏ฟฝ์ ็๏ฟฝ ็ฐ์์ ฐ๏ฟฝ๋ธณ๏ฟฝ๋.
๏ฟฝ์๏ฟฝ์ ฃ ๏ฟฝ์ฏ๏ฟฝ์ ฐ 1
๏ฟฝ์๏ฟฝ์ ฃ ็ฐ์์ ฐ 1
\ /\
) ( ')
( / )
\(__)|
*/
public class BackJoon_10171 {
public static void main(String[] args){
System.out.println("\\ /\\");
System.out.println(" ) ( ')");
System.out.println("( / )");
System.out.println(" \\(__)|");
}
} | [
"MinjiJo@users.noreply.github.com"
] | MinjiJo@users.noreply.github.com |
8b69c64dcf9cb300888273abf86ed68fce823eb6 | f90a618798236d1cc33078eac78d836847c7be6a | /src/in/mally/mallyone/OffersFragment.java | 5b5ff805ff55dfa8b14d959281be7ec8d40a91fd | [
"MIT"
] | permissive | vjdhama/mallyone | e4bd4ea3739218870ba7b60e77db6285c0c726b5 | ebeb1c28e075d1b308236388968f6856751a5b35 | refs/heads/master | 2020-06-04T13:32:29.720558 | 2014-01-15T05:01:35 | 2014-01-15T05:01:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,414 | java | package in.mally.mallyone;
import android.app.Activity;
import android.os.Build;
import android.os.Bundle;
import android.support.v4.app.ListFragment;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;
public class OffersFragment extends ListFragment {
OnOfferSelectedListener mCallback;
// The container Activity must implement this interface so the fragment can deliver messages
public interface OnOfferSelectedListener {
/** Called by OffersFragment when a list item is selected */
public void onArticleSelected(int position);
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// We need to use a different list item layout for devices older than Honeycomb
int layout = Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB ?
android.R.layout.simple_list_item_activated_1 : android.R.layout.simple_list_item_1;
// Create an array adapter for the list view, using the Offer OfferList array
setListAdapter(new ArrayAdapter<String>(getActivity(), layout, Offers.OfferList));
}
@Override
public void onStart() {
super.onStart();
// When in two-pane layout, set the listview to highlight the selected list item
// (We do this during onStart because at the point the listview is available.)
if (getFragmentManager().findFragmentById(R.id.article) != null) {
getListView().setChoiceMode(ListView.CHOICE_MODE_SINGLE);
}
}
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
// This makes sure that the container activity has implemented
// the callback interface. If not, it throws an exception.
try {
mCallback = (OnOfferSelectedListener) activity;
} catch (ClassCastException e) {
throw new ClassCastException(activity.toString()
+ " must implement OnOfferSelectedListener");
}
}
@Override
public void onListItemClick(ListView l, View v, int position, long id) {
// Notify the parent activity of selected item
mCallback.onArticleSelected(position);
// Set the item as checked to be highlighted when in two-pane layout
getListView().setItemChecked(position, true);
}
} | [
"vjdhama26@gmail.com"
] | vjdhama26@gmail.com |
92d34fe1994ee1035c1b33755db5ddd2f1ba5ece | c62b2129ff957419f81e4bd189a497c9ec636b29 | /app/src/main/java/com/RSPL/MEDIA/BootReciever.java | c2b26cb18dc13080393fa33b9e86abbb8e072b3f | [] | no_license | rcb4u/PROD99RetailMediaApp | dcbb677aa2a097e0b3212113740960d974745425 | 5f93c669974e5984d4641eb1d4883f59c39303dd | refs/heads/master | 2020-03-26T08:23:30.873545 | 2018-09-06T06:53:33 | 2018-09-06T06:53:33 | 144,699,468 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 625 | java | package com.RSPL.MEDIA;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
public class BootReciever extends BroadcastReceiver {
public BootReciever() {
}
@Override
public void onReceive(Context context, Intent intent) {
// TODO: This method is called when the BroadcastReceiver is receiving
// an Intent broadcast.
// TODO Auto-generated method stub
Intent myIntent = new Intent(context, MediaMainScreen.class);
myIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(myIntent);
}
}
| [
"chaudharirahul518@gmail.com"
] | chaudharirahul518@gmail.com |
3baa4098f16f6c146b1dfe0e9536fc989522621f | a102da4bcd58f218a2d27aa740fafb411991c1ad | /MyOwnView/app/build/generated/source/r/debug/com/kd/qxy/myownview/R.java | d6287909793ccff067e778b486a9a0e184129dea | [] | no_license | qianxinyi/DripMagicIndicator | 2a4ec7f2ea380f17775e56ab0d79fbbab1baaec7 | 93d74b5c09d1e1d51843b8dae484d4ef9422d8c9 | refs/heads/master | 2021-07-16T02:10:11.210442 | 2017-10-23T07:11:02 | 2017-10-23T07:11:02 | 107,613,165 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 566,777 | 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.kd.qxy.myownview;
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=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 actionBarItemBackground=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 actionBarPopupTheme=0x7f010067;
/** <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=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 actionBarSplitStyle=0x7f010069;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarStyle=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 actionBarTabBarStyle=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 actionBarTabStyle=0x7f010062;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=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 actionBarTheme=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 actionBarWidgetTheme=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 actionButtonStyle=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 actionDropDownStyle=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 actionLayout=0x7f0100d9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionMenuTextAppearance=0x7f01006f;
/** <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=0x7f010070;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeBackground=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 actionModeCloseButtonStyle=0x7f010072;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseDrawable=0x7f010075;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCopyDrawable=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 actionModeCutDrawable=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 actionModeFindDrawable=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 actionModePasteDrawable=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 actionModePopupWindowStyle=0x7f01007d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSelectAllDrawable=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 actionModeShareDrawable=0x7f01007a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSplitBackground=0x7f010074;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeStyle=0x7f010071;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeWebSearchDrawable=0x7f01007c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowButtonStyle=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 actionOverflowMenuStyle=0x7f010066;
/** <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=0x7f0100db;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionViewClass=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 activityChooserViewStyle=0x7f010090;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogButtonGroupStyle=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 alertDialogCenterButtons=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 alertDialogStyle=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 alertDialogTheme=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 allowStacking=0x7f0100c9;
/** <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=0x7f0100ca;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 arrowShaftLength=0x7f0100d2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=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 background=0x7f010038;
/** <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=0x7f01003a;
/** <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=0x7f010039;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010118;
/** <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=0x7f010119;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int barLength=0x7f0100d3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int borderlessButtonStyle=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 buttonBarButtonStyle=0x7f01008a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNegativeButtonStyle=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 buttonBarNeutralButtonStyle=0x7f0100ba;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarPositiveButtonStyle=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 buttonBarStyle=0x7f010089;
/** <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=0x7f01010d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonPanelSideLayout=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 buttonStyle=0x7f0100bc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100bd;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int buttonTint=0x7f0100cb;
/** <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=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 checkboxStyle=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 checkedTextViewStyle=0x7f0100bf;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeIcon=0x7f0100f0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeItemLayout=0x7f01004a;
/** <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=0x7f01010f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapseIcon=0x7f01010e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int color=0x7f0100cd;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100ab;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100b2;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100af;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlActivated=0x7f0100ad;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlHighlight=0x7f0100ae;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlNormal=0x7f0100ac;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimary=0x7f0100a9;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimaryDark=0x7f0100aa;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorSwitchThumbNormal=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 commitIcon=0x7f0100f5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int constraintSet=0x7f010000;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010043;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010047;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010044;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010045;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010042;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 controlBackground=0x7f0100b1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int customNavigationLayout=0x7f01003b;
/** <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=0x7f0100ef;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dialogPreferredPadding=0x7f010082;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dialogTheme=0x7f010081;
/** <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=0x7f010031;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int divider=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 dividerHorizontal=0x7f01008f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dividerPadding=0x7f0100d7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerVertical=0x7f01008e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int drawableSize=0x7f0100cf;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010001;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100a1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010085;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextBackground=0x7f010096;
/** <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=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 editTextStyle=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 elevation=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 expandActivityOverflowButtonDrawable=0x7f01004c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100d0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int goIcon=0x7f0100f1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int height=0x7f010002;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 homeAsUpIndicator=0x7f010087;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeLayout=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 icon=0x7f010035;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int iconifiedByDefault=0x7f0100ed;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int imageButtonStyle=0x7f010097;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int indeterminateProgressStyle=0x7f01003e;
/** <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=0x7f01004b;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int isLightTheme=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 itemPadding=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 layout=0x7f0100ec;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintBaseline_creator=0x7f010004;
/** <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 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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintBaseline_toBaselineOf=0x7f010005;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintBottom_creator=0x7f010006;
/** <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 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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintBottom_toBottomOf=0x7f010007;
/** <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 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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintBottom_toTopOf=0x7f010008;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintDimensionRatio=0x7f010009;
/** <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 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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintEnd_toEndOf=0x7f01000a;
/** <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 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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintEnd_toStartOf=0x7f01000b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintGuide_begin=0x7f01000c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintGuide_end=0x7f01000d;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintGuide_percent=0x7f01000e;
/** <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>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>wrap</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int layout_constraintHeight_default=0x7f01000f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintHeight_max=0x7f010010;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintHeight_min=0x7f010011;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintHorizontal_bias=0x7f010012;
/** <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>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>spread_inside</code></td><td>1</td><td></td></tr>
<tr><td><code>packed</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int layout_constraintHorizontal_chainStyle=0x7f010013;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintHorizontal_weight=0x7f010014;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintLeft_creator=0x7f010015;
/** <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 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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintLeft_toLeftOf=0x7f010016;
/** <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 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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintLeft_toRightOf=0x7f010017;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintRight_creator=0x7f010018;
/** <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 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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintRight_toLeftOf=0x7f010019;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be 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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintRight_toRightOf=0x7f01001a;
/** <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 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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintStart_toEndOf=0x7f01001b;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be 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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintStart_toStartOf=0x7f01001c;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintTop_creator=0x7f01001d;
/** <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 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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintTop_toBottomOf=0x7f01001e;
/** <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 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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintTop_toTopOf=0x7f01001f;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintVertical_bias=0x7f010020;
/** <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>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>spread_inside</code></td><td>1</td><td></td></tr>
<tr><td><code>packed</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int layout_constraintVertical_chainStyle=0x7f010021;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintVertical_weight=0x7f010022;
/** <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>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>wrap</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int layout_constraintWidth_default=0x7f010023;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintWidth_max=0x7f010024;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintWidth_min=0x7f010025;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_editor_absoluteX=0x7f010026;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_editor_absoluteY=0x7f010027;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_goneMarginBottom=0x7f010028;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_goneMarginEnd=0x7f010029;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_goneMarginLeft=0x7f01002a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_goneMarginRight=0x7f01002b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_goneMarginStart=0x7f01002c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_goneMarginTop=0x7f01002d;
/** <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>1</td><td></td></tr>
<tr><td><code>all</code></td><td>2</td><td></td></tr>
<tr><td><code>basic</code></td><td>4</td><td></td></tr>
<tr><td><code>chains</code></td><td>8</td><td></td></tr>
</table>
*/
public static final int layout_optimizationLevel=0x7f01002e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listChoiceBackgroundIndicator=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 listDividerAlertDialog=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 listItemLayout=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 listLayout=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 listMenuViewStyle=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 listPopupWindowStyle=0x7f0100a2;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01009c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightLarge=0x7f01009e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 listPreferredItemPaddingLeft=0x7f01009f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingRight=0x7f0100a0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int logo=0x7f010036;
/** <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=0x7f010112;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01010c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100d5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int multiChoiceItemLayout=0x7f01004f;
/** <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=0x7f010111;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int navigationIcon=0x7f010110;
/** <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=0x7f010030;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100de;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingBottomNoButtons=0x7f0100ea;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010116;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingStart=0x7f010115;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingTopNoTitle=0x7f0100eb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelBackground=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 panelMenuListTheme=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 panelMenuListWidth=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 popupMenuStyle=0x7f010093;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupTheme=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 popupWindowStyle=0x7f010094;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100dc;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 progressBarStyle=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 ptr_content=0x7f0100e2;
/** <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 ptr_duration_to_close=0x7f0100e7;
/** <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 ptr_duration_to_offset=0x7f0100e6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ptr_footer=0x7f0100e3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ptr_header=0x7f0100e1;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ptr_keep_header_when_refresh=0x7f0100e9;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ptr_pull_to_fresh=0x7f0100e8;
/** <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 ptr_ratio_of_header_height_to_refresh=0x7f0100e5;
/** <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 ptr_resistance=0x7f0100e4;
/** <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 ptr_rotate_ani_time=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 queryBackground=0x7f0100f7;
/** <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=0x7f0100ee;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int radioButtonStyle=0x7f0100c1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyle=0x7f0100c2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleIndicator=0x7f0100c3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleSmall=0x7f0100c4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchHintIcon=0x7f0100f3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100f2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewStyle=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 seekBarStyle=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 selectableItemBackground=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 selectableItemBackgroundBorderless=0x7f01008c;
/** <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=0x7f0100d8;
/** <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=0x7f0100d6;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010103;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showTitle=0x7f010052;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f010050;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 spinnerDropDownItemStyle=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 spinnerStyle=0x7f0100c6;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int splitTrack=0x7f010102;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010053;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_above_anchor=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 subMenuArrow=0x7f0100dd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int submitBackground=0x7f0100f8;
/** <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=0x7f010032;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextAppearance=0x7f010105;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010114;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextStyle=0x7f010034;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int suggestionRowLayout=0x7f0100f6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchMinWidth=0x7f010100;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchPadding=0x7f010101;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100c7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchTextAppearance=0x7f0100ff;
/** <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=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 textAppearanceLargePopupMenu=0x7f01007e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItem=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 textAppearanceListItemSmall=0x7f0100a4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearancePopupMenuHeader=0x7f010080;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultSubtitle=0x7f010099;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultTitle=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 textAppearanceSmallPopupMenu=0x7f01007f;
/** <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=0x7f0100b7;
/** <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=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 theme=0x7f010117;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thickness=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 thumbTextPadding=0x7f0100fe;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100f9;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>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=0x7f0100fa;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tickMark=0x7f010054;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010055;
/** <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=0x7f010056;
/** <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=0x7f01002f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010106;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginBottom=0x7f01010a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginEnd=0x7f010108;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginStart=0x7f010107;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginTop=0x7f010109;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargins=0x7f01010b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextAppearance=0x7f010104;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleTextColor=0x7f010113;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextStyle=0x7f010033;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarNavigationButtonStyle=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 toolbarStyle=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 track=0x7f0100fb;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100fc;
/** <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=0x7f0100fd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int voiceIcon=0x7f0100f4;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010058;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBarOverlay=0x7f01005a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01005b;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedHeightMajor=0x7f01005f;
/** <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=0x7f01005d;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMajor=0x7f01005c;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMinor=0x7f01005e;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMajor=0x7f010060;
/** <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=0x7f010061;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010059;
}
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=0x7f0a003e;
public static final int abc_background_cache_hint_selector_material_light=0x7f0a003f;
public static final int abc_btn_colored_borderless_text_material=0x7f0a0040;
public static final int abc_btn_colored_text_material=0x7f0a0041;
public static final int abc_color_highlight_material=0x7f0a0042;
public static final int abc_hint_foreground_material_dark=0x7f0a0043;
public static final int abc_hint_foreground_material_light=0x7f0a0044;
public static final int abc_input_method_navigation_guard=0x7f0a0001;
public static final int abc_primary_text_disable_only_material_dark=0x7f0a0045;
public static final int abc_primary_text_disable_only_material_light=0x7f0a0046;
public static final int abc_primary_text_material_dark=0x7f0a0047;
public static final int abc_primary_text_material_light=0x7f0a0048;
public static final int abc_search_url_text=0x7f0a0049;
public static final int abc_search_url_text_normal=0x7f0a0002;
public static final int abc_search_url_text_pressed=0x7f0a0003;
public static final int abc_search_url_text_selected=0x7f0a0004;
public static final int abc_secondary_text_material_dark=0x7f0a004a;
public static final int abc_secondary_text_material_light=0x7f0a004b;
public static final int abc_tint_btn_checkable=0x7f0a004c;
public static final int abc_tint_default=0x7f0a004d;
public static final int abc_tint_edittext=0x7f0a004e;
public static final int abc_tint_seek_thumb=0x7f0a004f;
public static final int abc_tint_spinner=0x7f0a0050;
public static final int abc_tint_switch_thumb=0x7f0a0051;
public static final int abc_tint_switch_track=0x7f0a0052;
public static final int accent_material_dark=0x7f0a0005;
public static final int accent_material_light=0x7f0a0006;
public static final int background_floating_material_dark=0x7f0a0007;
public static final int background_floating_material_light=0x7f0a0008;
public static final int background_material_dark=0x7f0a0009;
public static final int background_material_light=0x7f0a000a;
public static final int bright_foreground_disabled_material_dark=0x7f0a000b;
public static final int bright_foreground_disabled_material_light=0x7f0a000c;
public static final int bright_foreground_inverse_material_dark=0x7f0a000d;
public static final int bright_foreground_inverse_material_light=0x7f0a000e;
public static final int bright_foreground_material_dark=0x7f0a000f;
public static final int bright_foreground_material_light=0x7f0a0010;
public static final int button_material_dark=0x7f0a0011;
public static final int button_material_light=0x7f0a0012;
public static final int colorAccent=0x7f0a0013;
public static final int colorPrimary=0x7f0a0014;
public static final int colorPrimaryDark=0x7f0a0015;
public static final int dim_foreground_disabled_material_dark=0x7f0a0016;
public static final int dim_foreground_disabled_material_light=0x7f0a0017;
public static final int dim_foreground_material_dark=0x7f0a0018;
public static final int dim_foreground_material_light=0x7f0a0019;
public static final int foreground_material_dark=0x7f0a001a;
public static final int foreground_material_light=0x7f0a001b;
public static final int highlighted_text_material_dark=0x7f0a001c;
public static final int highlighted_text_material_light=0x7f0a001d;
public static final int material_blue_grey_800=0x7f0a001e;
public static final int material_blue_grey_900=0x7f0a001f;
public static final int material_blue_grey_950=0x7f0a0020;
public static final int material_deep_teal_200=0x7f0a0021;
public static final int material_deep_teal_500=0x7f0a0022;
public static final int material_grey_100=0x7f0a0023;
public static final int material_grey_300=0x7f0a0024;
public static final int material_grey_50=0x7f0a0025;
public static final int material_grey_600=0x7f0a0026;
public static final int material_grey_800=0x7f0a0027;
public static final int material_grey_850=0x7f0a0028;
public static final int material_grey_900=0x7f0a0029;
public static final int notification_action_color_filter=0x7f0a0000;
public static final int notification_icon_bg_color=0x7f0a002a;
public static final int notification_material_background_media_default_color=0x7f0a002b;
public static final int primary_dark_material_dark=0x7f0a002c;
public static final int primary_dark_material_light=0x7f0a002d;
public static final int primary_material_dark=0x7f0a002e;
public static final int primary_material_light=0x7f0a002f;
public static final int primary_text_default_material_dark=0x7f0a0030;
public static final int primary_text_default_material_light=0x7f0a0031;
public static final int primary_text_disabled_material_dark=0x7f0a0032;
public static final int primary_text_disabled_material_light=0x7f0a0033;
public static final int ripple_material_dark=0x7f0a0034;
public static final int ripple_material_light=0x7f0a0035;
public static final int secondary_text_default_material_dark=0x7f0a0036;
public static final int secondary_text_default_material_light=0x7f0a0037;
public static final int secondary_text_disabled_material_dark=0x7f0a0038;
public static final int secondary_text_disabled_material_light=0x7f0a0039;
public static final int switch_thumb_disabled_material_dark=0x7f0a003a;
public static final int switch_thumb_disabled_material_light=0x7f0a003b;
public static final int switch_thumb_material_dark=0x7f0a0053;
public static final int switch_thumb_material_light=0x7f0a0054;
public static final int switch_thumb_normal_material_dark=0x7f0a003c;
public static final int switch_thumb_normal_material_light=0x7f0a003d;
}
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=0x7f070015;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f070016;
public static final int abc_action_bar_overflow_padding_end_material=0x7f070017;
public static final int abc_action_bar_overflow_padding_start_material=0x7f070018;
public static final int abc_action_bar_progress_bar_size=0x7f070002;
public static final int abc_action_bar_stacked_max_height=0x7f070019;
public static final int abc_action_bar_stacked_tab_max_width=0x7f07001a;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f07001b;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f07001c;
public static final int abc_action_button_min_height_material=0x7f07001d;
public static final int abc_action_button_min_width_material=0x7f07001e;
public static final int abc_action_button_min_width_overflow_material=0x7f07001f;
public static final int abc_alert_dialog_button_bar_height=0x7f070000;
public static final int abc_button_inset_horizontal_material=0x7f070020;
public static final int abc_button_inset_vertical_material=0x7f070021;
public static final int abc_button_padding_horizontal_material=0x7f070022;
public static final int abc_button_padding_vertical_material=0x7f070023;
public static final int abc_cascading_menus_min_smallest_width=0x7f070024;
public static final int abc_config_prefDialogWidth=0x7f070005;
public static final int abc_control_corner_material=0x7f070025;
public static final int abc_control_inset_material=0x7f070026;
public static final int abc_control_padding_material=0x7f070027;
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_bottom_no_buttons=0x7f070028;
public static final int abc_dialog_list_padding_top_no_title=0x7f070029;
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=0x7f07002a;
public static final int abc_dialog_padding_top_material=0x7f07002b;
public static final int abc_dialog_title_divider_material=0x7f07002c;
public static final int abc_disabled_alpha_material_dark=0x7f07002d;
public static final int abc_disabled_alpha_material_light=0x7f07002e;
public static final int abc_dropdownitem_icon_width=0x7f07002f;
public static final int abc_dropdownitem_text_padding_left=0x7f070030;
public static final int abc_dropdownitem_text_padding_right=0x7f070031;
public static final int abc_edit_text_inset_bottom_material=0x7f070032;
public static final int abc_edit_text_inset_horizontal_material=0x7f070033;
public static final int abc_edit_text_inset_top_material=0x7f070034;
public static final int abc_floating_window_z=0x7f070035;
public static final int abc_list_item_padding_horizontal_material=0x7f070036;
public static final int abc_panel_menu_list_width=0x7f070037;
public static final int abc_progress_bar_height_material=0x7f070038;
public static final int abc_search_view_preferred_height=0x7f070039;
public static final int abc_search_view_preferred_width=0x7f07003a;
public static final int abc_seekbar_track_background_height_material=0x7f07003b;
public static final int abc_seekbar_track_progress_height_material=0x7f07003c;
public static final int abc_select_dialog_padding_start_material=0x7f07003d;
public static final int abc_switch_padding=0x7f070011;
public static final int abc_text_size_body_1_material=0x7f07003e;
public static final int abc_text_size_body_2_material=0x7f07003f;
public static final int abc_text_size_button_material=0x7f070040;
public static final int abc_text_size_caption_material=0x7f070041;
public static final int abc_text_size_display_1_material=0x7f070042;
public static final int abc_text_size_display_2_material=0x7f070043;
public static final int abc_text_size_display_3_material=0x7f070044;
public static final int abc_text_size_display_4_material=0x7f070045;
public static final int abc_text_size_headline_material=0x7f070046;
public static final int abc_text_size_large_material=0x7f070047;
public static final int abc_text_size_medium_material=0x7f070048;
public static final int abc_text_size_menu_header_material=0x7f070049;
public static final int abc_text_size_menu_material=0x7f07004a;
public static final int abc_text_size_small_material=0x7f07004b;
public static final int abc_text_size_subhead_material=0x7f07004c;
public static final int abc_text_size_subtitle_material_toolbar=0x7f070003;
public static final int abc_text_size_title_material=0x7f07004d;
public static final int abc_text_size_title_material_toolbar=0x7f070004;
public static final int disabled_alpha_material_dark=0x7f07004e;
public static final int disabled_alpha_material_light=0x7f07004f;
public static final int highlight_alpha_material_colored=0x7f070050;
public static final int highlight_alpha_material_dark=0x7f070051;
public static final int highlight_alpha_material_light=0x7f070052;
public static final int hint_alpha_material_dark=0x7f070053;
public static final int hint_alpha_material_light=0x7f070054;
public static final int hint_pressed_alpha_material_dark=0x7f070055;
public static final int hint_pressed_alpha_material_light=0x7f070056;
public static final int notification_action_icon_size=0x7f070057;
public static final int notification_action_text_size=0x7f070058;
public static final int notification_big_circle_margin=0x7f070059;
public static final int notification_content_margin_start=0x7f070012;
public static final int notification_large_icon_height=0x7f07005a;
public static final int notification_large_icon_width=0x7f07005b;
public static final int notification_main_column_padding_top=0x7f070013;
public static final int notification_media_narrow_margin=0x7f070014;
public static final int notification_right_icon_size=0x7f07005c;
public static final int notification_right_side_padding_top=0x7f070010;
public static final int notification_small_icon_background_padding=0x7f07005d;
public static final int notification_small_icon_size_as_large=0x7f07005e;
public static final int notification_subtext_size=0x7f07005f;
public static final int notification_top_pad=0x7f070060;
public static final int notification_top_pad_large_text=0x7f070061;
}
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 ic_android_black_24dp=0x7f020053;
public static final int ic_filter_drama_black_24dp=0x7f020054;
public static final int notification_action_background=0x7f020055;
public static final int notification_bg=0x7f020056;
public static final int notification_bg_low=0x7f020057;
public static final int notification_bg_low_normal=0x7f020058;
public static final int notification_bg_low_pressed=0x7f020059;
public static final int notification_bg_normal=0x7f02005a;
public static final int notification_bg_normal_pressed=0x7f02005b;
public static final int notification_icon_background=0x7f02005c;
public static final int notification_template_icon_bg=0x7f020060;
public static final int notification_template_icon_low_bg=0x7f020061;
public static final int notification_tile_bg=0x7f02005d;
public static final int notify_panel_notification_icon_bg=0x7f02005e;
public static final int ptr_rotate_arrow=0x7f02005f;
}
public static final class id {
public static final int action0=0x7f0b0067;
public static final int action_bar=0x7f0b004f;
public static final int action_bar_activity_content=0x7f0b0000;
public static final int action_bar_container=0x7f0b004e;
public static final int action_bar_root=0x7f0b004a;
public static final int action_bar_spinner=0x7f0b0001;
public static final int action_bar_subtitle=0x7f0b002d;
public static final int action_bar_title=0x7f0b002c;
public static final int action_container=0x7f0b0064;
public static final int action_context_bar=0x7f0b0050;
public static final int action_divider=0x7f0b006b;
public static final int action_image=0x7f0b0065;
public static final int action_menu_divider=0x7f0b0002;
public static final int action_menu_presenter=0x7f0b0003;
public static final int action_mode_bar=0x7f0b004c;
public static final int action_mode_bar_stub=0x7f0b004b;
public static final int action_mode_close_button=0x7f0b002e;
public static final int action_text=0x7f0b0066;
public static final int actions=0x7f0b0074;
public static final int activity_chooser_view_content=0x7f0b002f;
public static final int add=0x7f0b001b;
public static final int alertTitle=0x7f0b0043;
public static final int all=0x7f0b000e;
public static final int always=0x7f0b0025;
public static final int basic=0x7f0b000f;
public static final int beginning=0x7f0b0022;
public static final int bottom=0x7f0b002a;
public static final int buttonPanel=0x7f0b0036;
public static final int cancel_action=0x7f0b0068;
public static final int chains=0x7f0b0010;
public static final int checkbox=0x7f0b0046;
public static final int chronometer=0x7f0b0070;
public static final int collapseActionView=0x7f0b0026;
public static final int contentPanel=0x7f0b0039;
public static final int custom=0x7f0b0040;
public static final int customPanel=0x7f0b003f;
public static final int decor_content_parent=0x7f0b004d;
public static final int default_activity_button=0x7f0b0032;
public static final int disableHome=0x7f0b0015;
public static final int edit_query=0x7f0b0051;
public static final int end=0x7f0b0023;
public static final int end_padder=0x7f0b007a;
public static final int expand_activities_button=0x7f0b0030;
public static final int expanded_menu=0x7f0b0045;
public static final int home=0x7f0b0004;
public static final int homeAsUp=0x7f0b0016;
public static final int icon=0x7f0b0034;
public static final int icon_group=0x7f0b0075;
public static final int ifRoom=0x7f0b0027;
public static final int image=0x7f0b0031;
public static final int info=0x7f0b0071;
public static final int line1=0x7f0b0076;
public static final int line3=0x7f0b0078;
public static final int listMode=0x7f0b0012;
public static final int list_item=0x7f0b0033;
public static final int media_actions=0x7f0b006a;
public static final int middle=0x7f0b0024;
public static final int multiply=0x7f0b001c;
public static final int never=0x7f0b0028;
public static final int none=0x7f0b0011;
public static final int normal=0x7f0b0013;
public static final int notification_background=0x7f0b0073;
public static final int notification_main_column=0x7f0b006d;
public static final int notification_main_column_container=0x7f0b006c;
public static final int packed=0x7f0b000c;
public static final int parent=0x7f0b0009;
public static final int parentPanel=0x7f0b0038;
public static final int progress_circular=0x7f0b0005;
public static final int progress_horizontal=0x7f0b0006;
public static final int ptr=0x7f0b005e;
public static final int ptr_classic_header_rotate_view=0x7f0b0062;
public static final int ptr_classic_header_rotate_view_header_last_update=0x7f0b0061;
public static final int ptr_classic_header_rotate_view_header_text=0x7f0b005f;
public static final int ptr_classic_header_rotate_view_header_title=0x7f0b0060;
public static final int ptr_classic_header_rotate_view_progressbar=0x7f0b0063;
public static final int radio=0x7f0b0048;
public static final int right_icon=0x7f0b0072;
public static final int right_side=0x7f0b006e;
public static final int screen=0x7f0b001d;
public static final int scrollIndicatorDown=0x7f0b003e;
public static final int scrollIndicatorUp=0x7f0b003a;
public static final int scrollView=0x7f0b003b;
public static final int search_badge=0x7f0b0053;
public static final int search_bar=0x7f0b0052;
public static final int search_button=0x7f0b0054;
public static final int search_close_btn=0x7f0b0059;
public static final int search_edit_frame=0x7f0b0055;
public static final int search_go_btn=0x7f0b005b;
public static final int search_mag_icon=0x7f0b0056;
public static final int search_plate=0x7f0b0057;
public static final int search_src_text=0x7f0b0058;
public static final int search_voice_btn=0x7f0b005c;
public static final int select_dialog_listview=0x7f0b005d;
public static final int shortcut=0x7f0b0047;
public static final int showCustom=0x7f0b0017;
public static final int showHome=0x7f0b0018;
public static final int showTitle=0x7f0b0019;
public static final int spacer=0x7f0b0037;
public static final int split_action_bar=0x7f0b0007;
public static final int spread=0x7f0b000a;
public static final int spread_inside=0x7f0b000d;
public static final int src_atop=0x7f0b001e;
public static final int src_in=0x7f0b001f;
public static final int src_over=0x7f0b0020;
public static final int status_bar_latest_event_content=0x7f0b0069;
public static final int submenuarrow=0x7f0b0049;
public static final int submit_area=0x7f0b005a;
public static final int tabMode=0x7f0b0014;
public static final int text=0x7f0b0079;
public static final int text2=0x7f0b0077;
public static final int textSpacerNoButtons=0x7f0b003d;
public static final int textSpacerNoTitle=0x7f0b003c;
public static final int time=0x7f0b006f;
public static final int title=0x7f0b0035;
public static final int titleDividerNoCustom=0x7f0b0044;
public static final int title_template=0x7f0b0042;
public static final int top=0x7f0b002b;
public static final int topPanel=0x7f0b0041;
public static final int up=0x7f0b0008;
public static final int useLogo=0x7f0b001a;
public static final int withText=0x7f0b0029;
public static final int wrap=0x7f0b000b;
public static final int wrap_content=0x7f0b0021;
}
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_alert_dialog_title_material=0x7f04000b;
public static final int abc_dialog_title_material=0x7f04000c;
public static final int abc_expanded_menu_layout=0x7f04000d;
public static final int abc_list_menu_item_checkbox=0x7f04000e;
public static final int abc_list_menu_item_icon=0x7f04000f;
public static final int abc_list_menu_item_layout=0x7f040010;
public static final int abc_list_menu_item_radio=0x7f040011;
public static final int abc_popup_menu_header_item_layout=0x7f040012;
public static final int abc_popup_menu_item_layout=0x7f040013;
public static final int abc_screen_content_include=0x7f040014;
public static final int abc_screen_simple=0x7f040015;
public static final int abc_screen_simple_overlay_action_mode=0x7f040016;
public static final int abc_screen_toolbar=0x7f040017;
public static final int abc_search_dropdown_item_icons_2line=0x7f040018;
public static final int abc_search_view=0x7f040019;
public static final int abc_select_dialog_material=0x7f04001a;
public static final int activity_main=0x7f04001b;
public static final int activity_main2=0x7f04001c;
public static final int activity_main3=0x7f04001d;
public static final int activity_main4=0x7f04001e;
public static final int activity_main5=0x7f04001f;
public static final int cube_ptr_classic_default_header=0x7f040020;
public static final int cube_ptr_simple_loading=0x7f040021;
public static final int notification_action=0x7f040022;
public static final int notification_action_tombstone=0x7f040023;
public static final int notification_media_action=0x7f040024;
public static final int notification_media_cancel_action=0x7f040025;
public static final int notification_template_big_media=0x7f040026;
public static final int notification_template_big_media_custom=0x7f040027;
public static final int notification_template_big_media_narrow=0x7f040028;
public static final int notification_template_big_media_narrow_custom=0x7f040029;
public static final int notification_template_custom_big=0x7f04002a;
public static final int notification_template_icon_group=0x7f04002b;
public static final int notification_template_lines_media=0x7f04002c;
public static final int notification_template_media=0x7f04002d;
public static final int notification_template_media_custom=0x7f04002e;
public static final int notification_template_part_chronometer=0x7f04002f;
public static final int notification_template_part_time=0x7f040030;
public static final int select_dialog_item_material=0x7f040031;
public static final int select_dialog_multichoice_material=0x7f040032;
public static final int select_dialog_singlechoice_material=0x7f040033;
public static final int support_simple_spinner_dropdown_item=0x7f040034;
}
public static final class mipmap {
public static final int ic_launcher=0x7f030000;
public static final int ic_launcher_round=0x7f030001;
}
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=0x7f060021;
public static final int abc_font_family_body_2_material=0x7f060022;
public static final int abc_font_family_button_material=0x7f060023;
public static final int abc_font_family_caption_material=0x7f060024;
public static final int abc_font_family_display_1_material=0x7f060025;
public static final int abc_font_family_display_2_material=0x7f060026;
public static final int abc_font_family_display_3_material=0x7f060027;
public static final int abc_font_family_display_4_material=0x7f060028;
public static final int abc_font_family_headline_material=0x7f060029;
public static final int abc_font_family_menu_material=0x7f06002a;
public static final int abc_font_family_subhead_material=0x7f06002b;
public static final int abc_font_family_title_material=0x7f06002c;
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=0x7f06002d;
public static final int cube_ptr_hours_ago=0x7f060015;
public static final int cube_ptr_last_update=0x7f060016;
public static final int cube_ptr_load_finish_complete=0x7f060017;
public static final int cube_ptr_minutes_ago=0x7f060018;
public static final int cube_ptr_pull_down=0x7f060019;
public static final int cube_ptr_pull_down_to_refresh=0x7f06001a;
public static final int cube_ptr_pull_up=0x7f06001b;
public static final int cube_ptr_pull_up_to_load=0x7f06001c;
public static final int cube_ptr_refresh_complete=0x7f06001d;
public static final int cube_ptr_refreshing=0x7f06001e;
public static final int cube_ptr_release_to_refresh=0x7f06001f;
public static final int cube_ptr_seconds_ago=0x7f060020;
public static final int search_menu_title=0x7f060013;
public static final int status_bar_notification_info_overflow=0x7f060014;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f08009f;
public static final int AlertDialog_AppCompat_Light=0x7f0800a0;
public static final int Animation_AppCompat_Dialog=0x7f0800a1;
public static final int Animation_AppCompat_DropDownUp=0x7f0800a2;
public static final int AppTheme=0x7f0800a3;
public static final int Base_AlertDialog_AppCompat=0x7f0800a4;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0800a5;
public static final int Base_Animation_AppCompat_Dialog=0x7f0800a6;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800a7;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0800a8;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800a9;
public static final int Base_TextAppearance_AppCompat=0x7f08003f;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f080040;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f080041;
public static final int Base_TextAppearance_AppCompat_Button=0x7f080027;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f080042;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f080043;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f080044;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f080045;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f080046;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f080047;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f08000b;
public static final int Base_TextAppearance_AppCompat_Large=0x7f080048;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08000c;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080049;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f08004a;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f08004b;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08000d;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f08004c;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800aa;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f08004d;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f08004e;
public static final int Base_TextAppearance_AppCompat_Small=0x7f08004f;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08000e;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080050;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08000f;
public static final int Base_TextAppearance_AppCompat_Title=0x7f080051;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f080010;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f080094;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f080052;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f080053;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f080054;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f080055;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080056;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080057;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080058;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f08009b;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f08009c;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080095;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800ab;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080059;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08005a;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08005b;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f08005c;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08005d;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ac;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08005e;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f08005f;
public static final int Base_Theme_AppCompat=0x7f080060;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800ad;
public static final int Base_Theme_AppCompat_Dialog=0x7f080011;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080012;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800ae;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080013;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f080001;
public static final int Base_Theme_AppCompat_Light=0x7f080061;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800af;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080014;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080015;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800b0;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080016;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080002;
public static final int Base_ThemeOverlay_AppCompat=0x7f0800b1;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800b2;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800b3;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800b4;
public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080017;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080018;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800b5;
public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080019;
public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f08001a;
public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f08001b;
public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080023;
public static final int Base_V12_Widget_AppCompat_EditText=0x7f080024;
public static final int Base_V21_Theme_AppCompat=0x7f080062;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f080063;
public static final int Base_V21_Theme_AppCompat_Light=0x7f080064;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f080065;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f080066;
public static final int Base_V22_Theme_AppCompat=0x7f080092;
public static final int Base_V22_Theme_AppCompat_Light=0x7f080093;
public static final int Base_V23_Theme_AppCompat=0x7f080096;
public static final int Base_V23_Theme_AppCompat_Light=0x7f080097;
public static final int Base_V7_Theme_AppCompat=0x7f0800b6;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800b7;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0800b8;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800b9;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800ba;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800bb;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800bc;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0800bd;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800be;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800bf;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f080067;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080068;
public static final int Base_Widget_AppCompat_ActionButton=0x7f080069;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f08006a;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f08006b;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0800c0;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800c1;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080025;
public static final int Base_Widget_AppCompat_Button=0x7f08006c;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f08006d;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f08006e;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800c2;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f080098;
public static final int Base_Widget_AppCompat_Button_Small=0x7f08006f;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f080070;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800c3;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080071;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f080072;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800c4;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080000;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800c5;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f080073;
public static final int Base_Widget_AppCompat_EditText=0x7f080026;
public static final int Base_Widget_AppCompat_ImageButton=0x7f080074;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800c6;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800c7;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800c8;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f080075;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080076;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f080077;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080078;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080079;
public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800c9;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f08007a;
public static final int Base_Widget_AppCompat_ListView=0x7f08007b;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f08007c;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f08007d;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f08007e;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f08007f;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800ca;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f08001c;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08001d;
public static final int Base_Widget_AppCompat_RatingBar=0x7f080080;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f080099;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f08009a;
public static final int Base_Widget_AppCompat_SearchView=0x7f0800cb;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800cc;
public static final int Base_Widget_AppCompat_SeekBar=0x7f080081;
public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800cd;
public static final int Base_Widget_AppCompat_Spinner=0x7f080082;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080003;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f080083;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ce;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f080084;
public static final int Platform_AppCompat=0x7f08001e;
public static final int Platform_AppCompat_Light=0x7f08001f;
public static final int Platform_ThemeOverlay_AppCompat=0x7f080085;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f080086;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f080087;
public static final int Platform_V11_AppCompat=0x7f080020;
public static final int Platform_V11_AppCompat_Light=0x7f080021;
public static final int Platform_V14_AppCompat=0x7f080028;
public static final int Platform_V14_AppCompat_Light=0x7f080029;
public static final int Platform_V21_AppCompat=0x7f080088;
public static final int Platform_V21_AppCompat_Light=0x7f080089;
public static final int Platform_V25_AppCompat=0x7f08009d;
public static final int Platform_V25_AppCompat_Light=0x7f08009e;
public static final int Platform_Widget_AppCompat_Spinner=0x7f080022;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080031;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f080032;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f080033;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f080034;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f080035;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f080036;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f080037;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080038;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080039;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f08003a;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f08003b;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f08003c;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f08003d;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f08003e;
public static final int TextAppearance_AppCompat=0x7f0800cf;
public static final int TextAppearance_AppCompat_Body1=0x7f0800d0;
public static final int TextAppearance_AppCompat_Body2=0x7f0800d1;
public static final int TextAppearance_AppCompat_Button=0x7f0800d2;
public static final int TextAppearance_AppCompat_Caption=0x7f0800d3;
public static final int TextAppearance_AppCompat_Display1=0x7f0800d4;
public static final int TextAppearance_AppCompat_Display2=0x7f0800d5;
public static final int TextAppearance_AppCompat_Display3=0x7f0800d6;
public static final int TextAppearance_AppCompat_Display4=0x7f0800d7;
public static final int TextAppearance_AppCompat_Headline=0x7f0800d8;
public static final int TextAppearance_AppCompat_Inverse=0x7f0800d9;
public static final int TextAppearance_AppCompat_Large=0x7f0800da;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800db;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800dc;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800dd;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800de;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800df;
public static final int TextAppearance_AppCompat_Medium=0x7f0800e0;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800e1;
public static final int TextAppearance_AppCompat_Menu=0x7f0800e2;
public static final int TextAppearance_AppCompat_Notification=0x7f08002a;
public static final int TextAppearance_AppCompat_Notification_Info=0x7f08008a;
public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f08008b;
public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0800e3;
public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0800e4;
public static final int TextAppearance_AppCompat_Notification_Media=0x7f08008c;
public static final int TextAppearance_AppCompat_Notification_Time=0x7f08008d;
public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f08008e;
public static final int TextAppearance_AppCompat_Notification_Title=0x7f08002b;
public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f08008f;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0800e5;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0800e6;
public static final int TextAppearance_AppCompat_Small=0x7f0800e7;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0800e8;
public static final int TextAppearance_AppCompat_Subhead=0x7f0800e9;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0800ea;
public static final int TextAppearance_AppCompat_Title=0x7f0800eb;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0800ec;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ed;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0800ee;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0800ef;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0800f0;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0800f1;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0800f2;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0800f3;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0800f4;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0800f5;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0800f6;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800f7;
public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800f8;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800f9;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800fa;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0800fb;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0800fc;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0800fd;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0800fe;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0800ff;
public static final int TextAppearance_StatusBar_EventContent=0x7f08002c;
public static final int TextAppearance_StatusBar_EventContent_Info=0x7f08002d;
public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f08002e;
public static final int TextAppearance_StatusBar_EventContent_Time=0x7f08002f;
public static final int TextAppearance_StatusBar_EventContent_Title=0x7f080030;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080100;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080101;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080102;
public static final int Theme_AppCompat=0x7f080103;
public static final int Theme_AppCompat_CompactMenu=0x7f080104;
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=0x7f080105;
public static final int Theme_AppCompat_Dialog_Alert=0x7f080106;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080107;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f080108;
public static final int Theme_AppCompat_Light=0x7f080109;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f08010a;
public static final int Theme_AppCompat_Light_Dialog=0x7f08010b;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08010c;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08010d;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08010e;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f08010f;
public static final int Theme_AppCompat_NoActionBar=0x7f080110;
public static final int ThemeOverlay_AppCompat=0x7f080111;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080112;
public static final int ThemeOverlay_AppCompat_Dark=0x7f080113;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080114;
public static final int ThemeOverlay_AppCompat_Dialog=0x7f080115;
public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080116;
public static final int ThemeOverlay_AppCompat_Light=0x7f080117;
public static final int Widget_AppCompat_ActionBar=0x7f080118;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f080119;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f08011a;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f08011b;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f08011c;
public static final int Widget_AppCompat_ActionButton=0x7f08011d;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08011e;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08011f;
public static final int Widget_AppCompat_ActionMode=0x7f080120;
public static final int Widget_AppCompat_ActivityChooserView=0x7f080121;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080122;
public static final int Widget_AppCompat_Button=0x7f080123;
public static final int Widget_AppCompat_Button_Borderless=0x7f080124;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080125;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080126;
public static final int Widget_AppCompat_Button_Colored=0x7f080127;
public static final int Widget_AppCompat_Button_Small=0x7f080128;
public static final int Widget_AppCompat_ButtonBar=0x7f080129;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f08012a;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f08012b;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08012c;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08012d;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08012e;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08012f;
public static final int Widget_AppCompat_EditText=0x7f080130;
public static final int Widget_AppCompat_ImageButton=0x7f080131;
public static final int Widget_AppCompat_Light_ActionBar=0x7f080132;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080133;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080134;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080135;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080136;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080137;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080138;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080139;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f08013a;
public static final int Widget_AppCompat_Light_ActionButton=0x7f08013b;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08013c;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08013d;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08013e;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08013f;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f080140;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f080141;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080142;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080143;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f080144;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080145;
public static final int Widget_AppCompat_Light_SearchView=0x7f080146;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080147;
public static final int Widget_AppCompat_ListMenuView=0x7f080148;
public static final int Widget_AppCompat_ListPopupWindow=0x7f080149;
public static final int Widget_AppCompat_ListView=0x7f08014a;
public static final int Widget_AppCompat_ListView_DropDown=0x7f08014b;
public static final int Widget_AppCompat_ListView_Menu=0x7f08014c;
public static final int Widget_AppCompat_NotificationActionContainer=0x7f080090;
public static final int Widget_AppCompat_NotificationActionText=0x7f080091;
public static final int Widget_AppCompat_PopupMenu=0x7f08014d;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08014e;
public static final int Widget_AppCompat_PopupWindow=0x7f08014f;
public static final int Widget_AppCompat_ProgressBar=0x7f080150;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f080151;
public static final int Widget_AppCompat_RatingBar=0x7f080152;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080153;
public static final int Widget_AppCompat_RatingBar_Small=0x7f080154;
public static final int Widget_AppCompat_SearchView=0x7f080155;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080156;
public static final int Widget_AppCompat_SeekBar=0x7f080157;
public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080158;
public static final int Widget_AppCompat_Spinner=0x7f080159;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f08015a;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f08015b;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f08015c;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08015d;
public static final int Widget_AppCompat_Toolbar=0x7f08015e;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08015f;
}
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.kd.qxy.myownview:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit com.kd.qxy.myownview:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked com.kd.qxy.myownview:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd com.kd.qxy.myownview:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.kd.qxy.myownview:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft com.kd.qxy.myownview:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight com.kd.qxy.myownview:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart com.kd.qxy.myownview:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.kd.qxy.myownview:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout com.kd.qxy.myownview:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions com.kd.qxy.myownview:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider com.kd.qxy.myownview:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation com.kd.qxy.myownview:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height com.kd.qxy.myownview:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll com.kd.qxy.myownview:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator com.kd.qxy.myownview:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout com.kd.qxy.myownview:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon com.kd.qxy.myownview:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.kd.qxy.myownview:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding com.kd.qxy.myownview:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo com.kd.qxy.myownview:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode com.kd.qxy.myownview:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme com.kd.qxy.myownview:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding com.kd.qxy.myownview:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle com.kd.qxy.myownview:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle com.kd.qxy.myownview:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle com.kd.qxy.myownview:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title com.kd.qxy.myownview:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle com.kd.qxy.myownview: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 = {
0x7f010002, 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,
0x7f010087
};
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:background
*/
public static final int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:elevation
*/
public static final int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:height
*/
public static final int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:popupTheme
*/
public static final int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:title
*/
public static final int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit com.kd.qxy.myownview:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout com.kd.qxy.myownview:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height com.kd.qxy.myownview:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle com.kd.qxy.myownview:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle com.kd.qxy.myownview: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 = {
0x7f010002, 0x7f010033, 0x7f010034, 0x7f010038,
0x7f01003a, 0x7f01004a
};
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:background
*/
public static final int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:height
*/
public static final int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount com.kd.qxy.myownview:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f01004b, 0x7f01004c
};
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout com.kd.qxy.myownview:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout com.kd.qxy.myownview:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.kd.qxy.myownview:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle com.kd.qxy.myownview:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.kd.qxy.myownview:singleChoiceItemLayout}</code></td><td></td></tr>
</table>
@see #AlertDialog_android_layout
@see #AlertDialog_buttonPanelSideLayout
@see #AlertDialog_listItemLayout
@see #AlertDialog_listLayout
@see #AlertDialog_multiChoiceItemLayout
@see #AlertDialog_showTitle
@see #AlertDialog_singleChoiceItemLayout
*/
public static final int[] AlertDialog = {
0x010100f2, 0x7f01004d, 0x7f01004e, 0x7f01004f,
0x7f010050, 0x7f010051, 0x7f010052
};
/**
<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.kd.qxy.myownview.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.kd.qxy.myownview:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#showTitle}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:showTitle
*/
public static final int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview:srcCompat}</code></td><td></td></tr>
</table>
@see #AppCompatImageView_android_src
@see #AppCompatImageView_srcCompat
*/
public static final int[] AppCompatImageView = {
0x01010119, 0x7f010053
};
/**
<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.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.kd.qxy.myownview:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.kd.qxy.myownview: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, 0x7f010054, 0x7f010055, 0x7f010056
};
/**
<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.kd.qxy.myownview.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.kd.qxy.myownview:tickMark
*/
public static final int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f010057
};
/**
<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.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.kd.qxy.myownview:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.kd.qxy.myownview:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize com.kd.qxy.myownview:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.kd.qxy.myownview:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle com.kd.qxy.myownview:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.kd.qxy.myownview:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.kd.qxy.myownview:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.kd.qxy.myownview:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme com.kd.qxy.myownview:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.kd.qxy.myownview:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.kd.qxy.myownview:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.kd.qxy.myownview:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.kd.qxy.myownview:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.kd.qxy.myownview:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground com.kd.qxy.myownview:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.kd.qxy.myownview:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.kd.qxy.myownview:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.kd.qxy.myownview:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.kd.qxy.myownview:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.kd.qxy.myownview:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.kd.qxy.myownview:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.kd.qxy.myownview:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.kd.qxy.myownview:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.kd.qxy.myownview:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.kd.qxy.myownview:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle com.kd.qxy.myownview:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.kd.qxy.myownview:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.kd.qxy.myownview:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.kd.qxy.myownview:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.kd.qxy.myownview:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.kd.qxy.myownview:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.kd.qxy.myownview:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.kd.qxy.myownview:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.kd.qxy.myownview: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.kd.qxy.myownview:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.kd.qxy.myownview:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.kd.qxy.myownview:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.kd.qxy.myownview:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.kd.qxy.myownview:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.kd.qxy.myownview:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.kd.qxy.myownview:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle com.kd.qxy.myownview:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.kd.qxy.myownview:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle com.kd.qxy.myownview:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.kd.qxy.myownview:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent com.kd.qxy.myownview:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.kd.qxy.myownview:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.kd.qxy.myownview:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated com.kd.qxy.myownview:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.kd.qxy.myownview:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal com.kd.qxy.myownview:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary com.kd.qxy.myownview:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.kd.qxy.myownview:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.kd.qxy.myownview:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground com.kd.qxy.myownview:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.kd.qxy.myownview:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme com.kd.qxy.myownview:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.kd.qxy.myownview:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical com.kd.qxy.myownview:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.kd.qxy.myownview:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.kd.qxy.myownview:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground com.kd.qxy.myownview:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor com.kd.qxy.myownview:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle com.kd.qxy.myownview:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.kd.qxy.myownview:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.kd.qxy.myownview:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.kd.qxy.myownview:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.kd.qxy.myownview:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.kd.qxy.myownview:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.kd.qxy.myownview:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.kd.qxy.myownview:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.kd.qxy.myownview:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.kd.qxy.myownview:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.kd.qxy.myownview:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.kd.qxy.myownview:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground com.kd.qxy.myownview:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.kd.qxy.myownview:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.kd.qxy.myownview:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.kd.qxy.myownview:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.kd.qxy.myownview:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.kd.qxy.myownview:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.kd.qxy.myownview:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.kd.qxy.myownview:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.kd.qxy.myownview:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle com.kd.qxy.myownview:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle com.kd.qxy.myownview:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.kd.qxy.myownview:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.kd.qxy.myownview:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.kd.qxy.myownview:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle com.kd.qxy.myownview:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle com.kd.qxy.myownview:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.kd.qxy.myownview:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.kd.qxy.myownview:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.kd.qxy.myownview:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.kd.qxy.myownview:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.kd.qxy.myownview:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.kd.qxy.myownview:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.kd.qxy.myownview:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.kd.qxy.myownview:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.kd.qxy.myownview:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.kd.qxy.myownview:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle com.kd.qxy.myownview:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar com.kd.qxy.myownview:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.kd.qxy.myownview:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.kd.qxy.myownview:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.kd.qxy.myownview:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.kd.qxy.myownview:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.kd.qxy.myownview:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.kd.qxy.myownview:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.kd.qxy.myownview:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.kd.qxy.myownview:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle com.kd.qxy.myownview: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, 0x7f010058, 0x7f010059,
0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d,
0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061,
0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065,
0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069,
0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d,
0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071,
0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075,
0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079,
0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d,
0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081,
0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085,
0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089,
0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d,
0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091,
0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095,
0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099,
0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d,
0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1,
0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5,
0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9,
0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad,
0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1,
0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5,
0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9,
0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd,
0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1,
0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5,
0x7f0100c6, 0x7f0100c7, 0x7f0100c8
};
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle = 94;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons = 95;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle = 93;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview.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.kd.qxy.myownview:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle = 101;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 98;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle = 102;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall = 103;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle = 104;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle = 105;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:colorAccent
*/
public static final int AppCompatTheme_colorAccent = 85;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating = 92;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal = 89;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated = 87;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight = 88;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal = 86;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary = 83;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark = 84;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal = 90;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:controlBackground
*/
public static final int AppCompatTheme_controlBackground = 91;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:editTextColor
*/
public static final int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle = 106;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator = 82;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle = 114;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:panelBackground
*/
public static final int AppCompatTheme_panelBackground = 79;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme = 81;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth = 80;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle = 107;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle = 108;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator = 109;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall = 110;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle = 111;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle = 112;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:switchStyle
*/
public static final int AppCompatTheme_switchStyle = 113;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall = 78;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem = 97;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100c9
};
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview: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, 0x7f0100ca
};
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode com.kd.qxy.myownview:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100cb, 0x7f0100cc
};
/**
<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.kd.qxy.myownview.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.kd.qxy.myownview:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:buttonTintMode
*/
public static final int CompoundButton_buttonTintMode = 2;
/** Attributes that can be used with a ConstraintLayout_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 #ConstraintLayout_Layout_android_maxHeight android:maxHeight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_constraintSet com.kd.qxy.myownview:constraintSet}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_creator com.kd.qxy.myownview:layout_constraintBaseline_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf com.kd.qxy.myownview:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_creator com.kd.qxy.myownview:layout_constraintBottom_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf com.kd.qxy.myownview:layout_constraintBottom_toBottomOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toTopOf com.kd.qxy.myownview:layout_constraintBottom_toTopOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintDimensionRatio com.kd.qxy.myownview:layout_constraintDimensionRatio}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toEndOf com.kd.qxy.myownview:layout_constraintEnd_toEndOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toStartOf com.kd.qxy.myownview:layout_constraintEnd_toStartOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_begin com.kd.qxy.myownview:layout_constraintGuide_begin}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_end com.kd.qxy.myownview:layout_constraintGuide_end}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_percent com.kd.qxy.myownview:layout_constraintGuide_percent}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_default com.kd.qxy.myownview:layout_constraintHeight_default}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_max com.kd.qxy.myownview:layout_constraintHeight_max}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_min com.kd.qxy.myownview:layout_constraintHeight_min}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_bias com.kd.qxy.myownview:layout_constraintHorizontal_bias}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle com.kd.qxy.myownview:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_weight com.kd.qxy.myownview:layout_constraintHorizontal_weight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_creator com.kd.qxy.myownview:layout_constraintLeft_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf com.kd.qxy.myownview:layout_constraintLeft_toLeftOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toRightOf com.kd.qxy.myownview:layout_constraintLeft_toRightOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_creator com.kd.qxy.myownview:layout_constraintRight_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toLeftOf com.kd.qxy.myownview:layout_constraintRight_toLeftOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toRightOf com.kd.qxy.myownview:layout_constraintRight_toRightOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toEndOf com.kd.qxy.myownview:layout_constraintStart_toEndOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toStartOf com.kd.qxy.myownview:layout_constraintStart_toStartOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_creator com.kd.qxy.myownview:layout_constraintTop_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toBottomOf com.kd.qxy.myownview:layout_constraintTop_toBottomOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toTopOf com.kd.qxy.myownview:layout_constraintTop_toTopOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_bias com.kd.qxy.myownview:layout_constraintVertical_bias}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_chainStyle com.kd.qxy.myownview:layout_constraintVertical_chainStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_weight com.kd.qxy.myownview:layout_constraintVertical_weight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_default com.kd.qxy.myownview:layout_constraintWidth_default}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_max com.kd.qxy.myownview:layout_constraintWidth_max}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_min com.kd.qxy.myownview:layout_constraintWidth_min}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteX com.kd.qxy.myownview:layout_editor_absoluteX}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteY com.kd.qxy.myownview:layout_editor_absoluteY}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginBottom com.kd.qxy.myownview:layout_goneMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginEnd com.kd.qxy.myownview:layout_goneMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginLeft com.kd.qxy.myownview:layout_goneMarginLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginRight com.kd.qxy.myownview:layout_goneMarginRight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginStart com.kd.qxy.myownview:layout_goneMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginTop com.kd.qxy.myownview:layout_goneMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_optimizationLevel com.kd.qxy.myownview:layout_optimizationLevel}</code></td><td></td></tr>
</table>
@see #ConstraintLayout_Layout_android_maxHeight
@see #ConstraintLayout_Layout_android_maxWidth
@see #ConstraintLayout_Layout_android_minHeight
@see #ConstraintLayout_Layout_android_minWidth
@see #ConstraintLayout_Layout_android_orientation
@see #ConstraintLayout_Layout_constraintSet
@see #ConstraintLayout_Layout_layout_constraintBaseline_creator
@see #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf
@see #ConstraintLayout_Layout_layout_constraintBottom_creator
@see #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf
@see #ConstraintLayout_Layout_layout_constraintBottom_toTopOf
@see #ConstraintLayout_Layout_layout_constraintDimensionRatio
@see #ConstraintLayout_Layout_layout_constraintEnd_toEndOf
@see #ConstraintLayout_Layout_layout_constraintEnd_toStartOf
@see #ConstraintLayout_Layout_layout_constraintGuide_begin
@see #ConstraintLayout_Layout_layout_constraintGuide_end
@see #ConstraintLayout_Layout_layout_constraintGuide_percent
@see #ConstraintLayout_Layout_layout_constraintHeight_default
@see #ConstraintLayout_Layout_layout_constraintHeight_max
@see #ConstraintLayout_Layout_layout_constraintHeight_min
@see #ConstraintLayout_Layout_layout_constraintHorizontal_bias
@see #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle
@see #ConstraintLayout_Layout_layout_constraintHorizontal_weight
@see #ConstraintLayout_Layout_layout_constraintLeft_creator
@see #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf
@see #ConstraintLayout_Layout_layout_constraintLeft_toRightOf
@see #ConstraintLayout_Layout_layout_constraintRight_creator
@see #ConstraintLayout_Layout_layout_constraintRight_toLeftOf
@see #ConstraintLayout_Layout_layout_constraintRight_toRightOf
@see #ConstraintLayout_Layout_layout_constraintStart_toEndOf
@see #ConstraintLayout_Layout_layout_constraintStart_toStartOf
@see #ConstraintLayout_Layout_layout_constraintTop_creator
@see #ConstraintLayout_Layout_layout_constraintTop_toBottomOf
@see #ConstraintLayout_Layout_layout_constraintTop_toTopOf
@see #ConstraintLayout_Layout_layout_constraintVertical_bias
@see #ConstraintLayout_Layout_layout_constraintVertical_chainStyle
@see #ConstraintLayout_Layout_layout_constraintVertical_weight
@see #ConstraintLayout_Layout_layout_constraintWidth_default
@see #ConstraintLayout_Layout_layout_constraintWidth_max
@see #ConstraintLayout_Layout_layout_constraintWidth_min
@see #ConstraintLayout_Layout_layout_editor_absoluteX
@see #ConstraintLayout_Layout_layout_editor_absoluteY
@see #ConstraintLayout_Layout_layout_goneMarginBottom
@see #ConstraintLayout_Layout_layout_goneMarginEnd
@see #ConstraintLayout_Layout_layout_goneMarginLeft
@see #ConstraintLayout_Layout_layout_goneMarginRight
@see #ConstraintLayout_Layout_layout_goneMarginStart
@see #ConstraintLayout_Layout_layout_goneMarginTop
@see #ConstraintLayout_Layout_layout_optimizationLevel
*/
public static final int[] ConstraintLayout_Layout = {
0x010100c4, 0x0101011f, 0x01010120, 0x0101013f,
0x01010140, 0x7f010000, 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,
0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021,
0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025,
0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029,
0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d,
0x7f01002e
};
/**
<p>This symbol is the offset where the {@link android.R.attr#maxHeight}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
@attr name android:maxHeight
*/
public static final int ConstraintLayout_Layout_android_maxHeight = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
@attr name android:maxWidth
*/
public static final int ConstraintLayout_Layout_android_maxWidth = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
@attr name android:minHeight
*/
public static final int ConstraintLayout_Layout_android_minHeight = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
@attr name android:minWidth
*/
public static final int ConstraintLayout_Layout_android_minWidth = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
@attr name android:orientation
*/
public static final int ConstraintLayout_Layout_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#constraintSet}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.kd.qxy.myownview:constraintSet
*/
public static final int ConstraintLayout_Layout_constraintSet = 5;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintBaseline_creator}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintBaseline_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator = 6;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintBaseline_toBaselineOf}
attribute's value can be found in the {@link #ConstraintLayout_Layout} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintBaseline_toBaselineOf
*/
public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf = 7;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintBottom_creator}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintBottom_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintBottom_creator = 8;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintBottom_toBottomOf}
attribute's value can be found in the {@link #ConstraintLayout_Layout} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintBottom_toBottomOf
*/
public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf = 9;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintBottom_toTopOf}
attribute's value can be found in the {@link #ConstraintLayout_Layout} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintBottom_toTopOf
*/
public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf = 10;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintDimensionRatio}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintDimensionRatio
*/
public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio = 11;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintEnd_toEndOf}
attribute's value can be found in the {@link #ConstraintLayout_Layout} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintEnd_toEndOf
*/
public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf = 12;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintEnd_toStartOf}
attribute's value can be found in the {@link #ConstraintLayout_Layout} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintEnd_toStartOf
*/
public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf = 13;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintGuide_begin}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintGuide_begin
*/
public static final int ConstraintLayout_Layout_layout_constraintGuide_begin = 14;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintGuide_end}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintGuide_end
*/
public static final int ConstraintLayout_Layout_layout_constraintGuide_end = 15;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintGuide_percent}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintGuide_percent
*/
public static final int ConstraintLayout_Layout_layout_constraintGuide_percent = 16;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintHeight_default}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>wrap</code></td><td>1</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintHeight_default
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_default = 17;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintHeight_max}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintHeight_max
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_max = 18;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintHeight_min}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintHeight_min
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_min = 19;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintHorizontal_bias}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintHorizontal_bias
*/
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias = 20;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintHorizontal_chainStyle}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>spread_inside</code></td><td>1</td><td></td></tr>
<tr><td><code>packed</code></td><td>2</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintHorizontal_chainStyle
*/
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle = 21;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintHorizontal_weight}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintHorizontal_weight
*/
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight = 22;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintLeft_creator}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintLeft_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintLeft_creator = 23;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintLeft_toLeftOf}
attribute's value can be found in the {@link #ConstraintLayout_Layout} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintLeft_toLeftOf
*/
public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf = 24;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintLeft_toRightOf}
attribute's value can be found in the {@link #ConstraintLayout_Layout} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintLeft_toRightOf
*/
public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf = 25;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintRight_creator}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintRight_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintRight_creator = 26;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintRight_toLeftOf}
attribute's value can be found in the {@link #ConstraintLayout_Layout} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintRight_toLeftOf
*/
public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf = 27;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintRight_toRightOf}
attribute's value can be found in the {@link #ConstraintLayout_Layout} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintRight_toRightOf
*/
public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf = 28;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintStart_toEndOf}
attribute's value can be found in the {@link #ConstraintLayout_Layout} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintStart_toEndOf
*/
public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf = 29;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintStart_toStartOf}
attribute's value can be found in the {@link #ConstraintLayout_Layout} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintStart_toStartOf
*/
public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf = 30;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintTop_creator}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintTop_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintTop_creator = 31;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintTop_toBottomOf}
attribute's value can be found in the {@link #ConstraintLayout_Layout} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintTop_toBottomOf
*/
public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf = 32;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintTop_toTopOf}
attribute's value can be found in the {@link #ConstraintLayout_Layout} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintTop_toTopOf
*/
public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf = 33;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintVertical_bias}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintVertical_bias
*/
public static final int ConstraintLayout_Layout_layout_constraintVertical_bias = 34;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintVertical_chainStyle}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>spread_inside</code></td><td>1</td><td></td></tr>
<tr><td><code>packed</code></td><td>2</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintVertical_chainStyle
*/
public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle = 35;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintVertical_weight}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintVertical_weight
*/
public static final int ConstraintLayout_Layout_layout_constraintVertical_weight = 36;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintWidth_default}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>wrap</code></td><td>1</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintWidth_default
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_default = 37;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintWidth_max}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintWidth_max
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_max = 38;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintWidth_min}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintWidth_min
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_min = 39;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_editor_absoluteX}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_editor_absoluteX
*/
public static final int ConstraintLayout_Layout_layout_editor_absoluteX = 40;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_editor_absoluteY}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_editor_absoluteY
*/
public static final int ConstraintLayout_Layout_layout_editor_absoluteY = 41;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_goneMarginBottom}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_goneMarginBottom
*/
public static final int ConstraintLayout_Layout_layout_goneMarginBottom = 42;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_goneMarginEnd}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_goneMarginEnd
*/
public static final int ConstraintLayout_Layout_layout_goneMarginEnd = 43;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_goneMarginLeft}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_goneMarginLeft
*/
public static final int ConstraintLayout_Layout_layout_goneMarginLeft = 44;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_goneMarginRight}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_goneMarginRight
*/
public static final int ConstraintLayout_Layout_layout_goneMarginRight = 45;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_goneMarginStart}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_goneMarginStart
*/
public static final int ConstraintLayout_Layout_layout_goneMarginStart = 46;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_goneMarginTop}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_goneMarginTop
*/
public static final int ConstraintLayout_Layout_layout_goneMarginTop = 47;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_optimizationLevel}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>1</td><td></td></tr>
<tr><td><code>all</code></td><td>2</td><td></td></tr>
<tr><td><code>basic</code></td><td>4</td><td></td></tr>
<tr><td><code>chains</code></td><td>8</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_optimizationLevel
*/
public static final int ConstraintLayout_Layout_layout_optimizationLevel = 48;
/** Attributes that can be used with a ConstraintSet.
<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 #ConstraintSet_android_alpha android:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_elevation android:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_layout_height android:layout_height}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_layout_marginBottom android:layout_marginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_layout_marginEnd android:layout_marginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_layout_marginLeft android:layout_marginLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_layout_marginRight android:layout_marginRight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_layout_marginStart android:layout_marginStart}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_layout_marginTop android:layout_marginTop}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_layout_width android:layout_width}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_rotationX android:rotationX}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_rotationY android:rotationY}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_scaleX android:scaleX}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_scaleY android:scaleY}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_transformPivotX android:transformPivotX}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_transformPivotY android:transformPivotY}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_translationX android:translationX}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_translationY android:translationY}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_translationZ android:translationZ}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_visibility android:visibility}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_creator com.kd.qxy.myownview:layout_constraintBaseline_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_toBaselineOf com.kd.qxy.myownview:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintBottom_creator com.kd.qxy.myownview:layout_constraintBottom_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toBottomOf com.kd.qxy.myownview:layout_constraintBottom_toBottomOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toTopOf com.kd.qxy.myownview:layout_constraintBottom_toTopOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintDimensionRatio com.kd.qxy.myownview:layout_constraintDimensionRatio}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toEndOf com.kd.qxy.myownview:layout_constraintEnd_toEndOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toStartOf com.kd.qxy.myownview:layout_constraintEnd_toStartOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintGuide_begin com.kd.qxy.myownview:layout_constraintGuide_begin}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintGuide_end com.kd.qxy.myownview:layout_constraintGuide_end}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintGuide_percent com.kd.qxy.myownview:layout_constraintGuide_percent}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHeight_default com.kd.qxy.myownview:layout_constraintHeight_default}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHeight_max com.kd.qxy.myownview:layout_constraintHeight_max}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHeight_min com.kd.qxy.myownview:layout_constraintHeight_min}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_bias com.kd.qxy.myownview:layout_constraintHorizontal_bias}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_chainStyle com.kd.qxy.myownview:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_weight com.kd.qxy.myownview:layout_constraintHorizontal_weight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintLeft_creator com.kd.qxy.myownview:layout_constraintLeft_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toLeftOf com.kd.qxy.myownview:layout_constraintLeft_toLeftOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toRightOf com.kd.qxy.myownview:layout_constraintLeft_toRightOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintRight_creator com.kd.qxy.myownview:layout_constraintRight_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintRight_toLeftOf com.kd.qxy.myownview:layout_constraintRight_toLeftOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintRight_toRightOf com.kd.qxy.myownview:layout_constraintRight_toRightOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintStart_toEndOf com.kd.qxy.myownview:layout_constraintStart_toEndOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintStart_toStartOf com.kd.qxy.myownview:layout_constraintStart_toStartOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintTop_creator com.kd.qxy.myownview:layout_constraintTop_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintTop_toBottomOf com.kd.qxy.myownview:layout_constraintTop_toBottomOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintTop_toTopOf com.kd.qxy.myownview:layout_constraintTop_toTopOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintVertical_bias com.kd.qxy.myownview:layout_constraintVertical_bias}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintVertical_chainStyle com.kd.qxy.myownview:layout_constraintVertical_chainStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintVertical_weight com.kd.qxy.myownview:layout_constraintVertical_weight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintWidth_default com.kd.qxy.myownview:layout_constraintWidth_default}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintWidth_max com.kd.qxy.myownview:layout_constraintWidth_max}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintWidth_min com.kd.qxy.myownview:layout_constraintWidth_min}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_editor_absoluteX com.kd.qxy.myownview:layout_editor_absoluteX}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_editor_absoluteY com.kd.qxy.myownview:layout_editor_absoluteY}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginBottom com.kd.qxy.myownview:layout_goneMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginEnd com.kd.qxy.myownview:layout_goneMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginLeft com.kd.qxy.myownview:layout_goneMarginLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginRight com.kd.qxy.myownview:layout_goneMarginRight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginStart com.kd.qxy.myownview:layout_goneMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginTop com.kd.qxy.myownview:layout_goneMarginTop}</code></td><td></td></tr>
</table>
@see #ConstraintSet_android_alpha
@see #ConstraintSet_android_elevation
@see #ConstraintSet_android_id
@see #ConstraintSet_android_layout_height
@see #ConstraintSet_android_layout_marginBottom
@see #ConstraintSet_android_layout_marginEnd
@see #ConstraintSet_android_layout_marginLeft
@see #ConstraintSet_android_layout_marginRight
@see #ConstraintSet_android_layout_marginStart
@see #ConstraintSet_android_layout_marginTop
@see #ConstraintSet_android_layout_width
@see #ConstraintSet_android_orientation
@see #ConstraintSet_android_rotationX
@see #ConstraintSet_android_rotationY
@see #ConstraintSet_android_scaleX
@see #ConstraintSet_android_scaleY
@see #ConstraintSet_android_transformPivotX
@see #ConstraintSet_android_transformPivotY
@see #ConstraintSet_android_translationX
@see #ConstraintSet_android_translationY
@see #ConstraintSet_android_translationZ
@see #ConstraintSet_android_visibility
@see #ConstraintSet_layout_constraintBaseline_creator
@see #ConstraintSet_layout_constraintBaseline_toBaselineOf
@see #ConstraintSet_layout_constraintBottom_creator
@see #ConstraintSet_layout_constraintBottom_toBottomOf
@see #ConstraintSet_layout_constraintBottom_toTopOf
@see #ConstraintSet_layout_constraintDimensionRatio
@see #ConstraintSet_layout_constraintEnd_toEndOf
@see #ConstraintSet_layout_constraintEnd_toStartOf
@see #ConstraintSet_layout_constraintGuide_begin
@see #ConstraintSet_layout_constraintGuide_end
@see #ConstraintSet_layout_constraintGuide_percent
@see #ConstraintSet_layout_constraintHeight_default
@see #ConstraintSet_layout_constraintHeight_max
@see #ConstraintSet_layout_constraintHeight_min
@see #ConstraintSet_layout_constraintHorizontal_bias
@see #ConstraintSet_layout_constraintHorizontal_chainStyle
@see #ConstraintSet_layout_constraintHorizontal_weight
@see #ConstraintSet_layout_constraintLeft_creator
@see #ConstraintSet_layout_constraintLeft_toLeftOf
@see #ConstraintSet_layout_constraintLeft_toRightOf
@see #ConstraintSet_layout_constraintRight_creator
@see #ConstraintSet_layout_constraintRight_toLeftOf
@see #ConstraintSet_layout_constraintRight_toRightOf
@see #ConstraintSet_layout_constraintStart_toEndOf
@see #ConstraintSet_layout_constraintStart_toStartOf
@see #ConstraintSet_layout_constraintTop_creator
@see #ConstraintSet_layout_constraintTop_toBottomOf
@see #ConstraintSet_layout_constraintTop_toTopOf
@see #ConstraintSet_layout_constraintVertical_bias
@see #ConstraintSet_layout_constraintVertical_chainStyle
@see #ConstraintSet_layout_constraintVertical_weight
@see #ConstraintSet_layout_constraintWidth_default
@see #ConstraintSet_layout_constraintWidth_max
@see #ConstraintSet_layout_constraintWidth_min
@see #ConstraintSet_layout_editor_absoluteX
@see #ConstraintSet_layout_editor_absoluteY
@see #ConstraintSet_layout_goneMarginBottom
@see #ConstraintSet_layout_goneMarginEnd
@see #ConstraintSet_layout_goneMarginLeft
@see #ConstraintSet_layout_goneMarginRight
@see #ConstraintSet_layout_goneMarginStart
@see #ConstraintSet_layout_goneMarginTop
*/
public static final int[] ConstraintSet = {
0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4,
0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9,
0x010100fa, 0x0101031f, 0x01010320, 0x01010321,
0x01010322, 0x01010323, 0x01010324, 0x01010325,
0x01010327, 0x01010328, 0x010103b5, 0x010103b6,
0x010103fa, 0x01010440, 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,
0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021,
0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025,
0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029,
0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d
};
/**
<p>This symbol is the offset where the {@link android.R.attr#alpha}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:alpha
*/
public static final int ConstraintSet_android_alpha = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#elevation}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:elevation
*/
public static final int ConstraintSet_android_elevation = 21;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:id
*/
public static final int ConstraintSet_android_id = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_height}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:layout_height
*/
public static final int ConstraintSet_android_layout_height = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_marginBottom}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:layout_marginBottom
*/
public static final int ConstraintSet_android_layout_marginBottom = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_marginEnd}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:layout_marginEnd
*/
public static final int ConstraintSet_android_layout_marginEnd = 19;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_marginLeft}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:layout_marginLeft
*/
public static final int ConstraintSet_android_layout_marginLeft = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_marginRight}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:layout_marginRight
*/
public static final int ConstraintSet_android_layout_marginRight = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_marginStart}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:layout_marginStart
*/
public static final int ConstraintSet_android_layout_marginStart = 18;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_marginTop}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:layout_marginTop
*/
public static final int ConstraintSet_android_layout_marginTop = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_width}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:layout_width
*/
public static final int ConstraintSet_android_layout_width = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:orientation
*/
public static final int ConstraintSet_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#rotationX}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:rotationX
*/
public static final int ConstraintSet_android_rotationX = 16;
/**
<p>This symbol is the offset where the {@link android.R.attr#rotationY}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:rotationY
*/
public static final int ConstraintSet_android_rotationY = 17;
/**
<p>This symbol is the offset where the {@link android.R.attr#scaleX}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:scaleX
*/
public static final int ConstraintSet_android_scaleX = 14;
/**
<p>This symbol is the offset where the {@link android.R.attr#scaleY}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:scaleY
*/
public static final int ConstraintSet_android_scaleY = 15;
/**
<p>This symbol is the offset where the {@link android.R.attr#transformPivotX}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:transformPivotX
*/
public static final int ConstraintSet_android_transformPivotX = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#transformPivotY}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:transformPivotY
*/
public static final int ConstraintSet_android_transformPivotY = 11;
/**
<p>This symbol is the offset where the {@link android.R.attr#translationX}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:translationX
*/
public static final int ConstraintSet_android_translationX = 12;
/**
<p>This symbol is the offset where the {@link android.R.attr#translationY}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:translationY
*/
public static final int ConstraintSet_android_translationY = 13;
/**
<p>This symbol is the offset where the {@link android.R.attr#translationZ}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:translationZ
*/
public static final int ConstraintSet_android_translationZ = 20;
/**
<p>This symbol is the offset where the {@link android.R.attr#visibility}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:visibility
*/
public static final int ConstraintSet_android_visibility = 2;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintBaseline_creator}
attribute's value can be found in the {@link #ConstraintSet} 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.kd.qxy.myownview:layout_constraintBaseline_creator
*/
public static final int ConstraintSet_layout_constraintBaseline_creator = 22;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintBaseline_toBaselineOf}
attribute's value can be found in the {@link #ConstraintSet} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintBaseline_toBaselineOf
*/
public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf = 23;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintBottom_creator}
attribute's value can be found in the {@link #ConstraintSet} 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.kd.qxy.myownview:layout_constraintBottom_creator
*/
public static final int ConstraintSet_layout_constraintBottom_creator = 24;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintBottom_toBottomOf}
attribute's value can be found in the {@link #ConstraintSet} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintBottom_toBottomOf
*/
public static final int ConstraintSet_layout_constraintBottom_toBottomOf = 25;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintBottom_toTopOf}
attribute's value can be found in the {@link #ConstraintSet} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintBottom_toTopOf
*/
public static final int ConstraintSet_layout_constraintBottom_toTopOf = 26;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintDimensionRatio}
attribute's value can be found in the {@link #ConstraintSet} 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.kd.qxy.myownview:layout_constraintDimensionRatio
*/
public static final int ConstraintSet_layout_constraintDimensionRatio = 27;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintEnd_toEndOf}
attribute's value can be found in the {@link #ConstraintSet} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintEnd_toEndOf
*/
public static final int ConstraintSet_layout_constraintEnd_toEndOf = 28;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintEnd_toStartOf}
attribute's value can be found in the {@link #ConstraintSet} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintEnd_toStartOf
*/
public static final int ConstraintSet_layout_constraintEnd_toStartOf = 29;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintGuide_begin}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintGuide_begin
*/
public static final int ConstraintSet_layout_constraintGuide_begin = 30;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintGuide_end}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintGuide_end
*/
public static final int ConstraintSet_layout_constraintGuide_end = 31;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintGuide_percent}
attribute's value can be found in the {@link #ConstraintSet} 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.kd.qxy.myownview:layout_constraintGuide_percent
*/
public static final int ConstraintSet_layout_constraintGuide_percent = 32;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintHeight_default}
attribute's value can be found in the {@link #ConstraintSet} 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>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>wrap</code></td><td>1</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintHeight_default
*/
public static final int ConstraintSet_layout_constraintHeight_default = 33;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintHeight_max}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintHeight_max
*/
public static final int ConstraintSet_layout_constraintHeight_max = 34;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintHeight_min}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintHeight_min
*/
public static final int ConstraintSet_layout_constraintHeight_min = 35;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintHorizontal_bias}
attribute's value can be found in the {@link #ConstraintSet} 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.kd.qxy.myownview:layout_constraintHorizontal_bias
*/
public static final int ConstraintSet_layout_constraintHorizontal_bias = 36;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintHorizontal_chainStyle}
attribute's value can be found in the {@link #ConstraintSet} 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>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>spread_inside</code></td><td>1</td><td></td></tr>
<tr><td><code>packed</code></td><td>2</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintHorizontal_chainStyle
*/
public static final int ConstraintSet_layout_constraintHorizontal_chainStyle = 37;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintHorizontal_weight}
attribute's value can be found in the {@link #ConstraintSet} 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.kd.qxy.myownview:layout_constraintHorizontal_weight
*/
public static final int ConstraintSet_layout_constraintHorizontal_weight = 38;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintLeft_creator}
attribute's value can be found in the {@link #ConstraintSet} 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.kd.qxy.myownview:layout_constraintLeft_creator
*/
public static final int ConstraintSet_layout_constraintLeft_creator = 39;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintLeft_toLeftOf}
attribute's value can be found in the {@link #ConstraintSet} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintLeft_toLeftOf
*/
public static final int ConstraintSet_layout_constraintLeft_toLeftOf = 40;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintLeft_toRightOf}
attribute's value can be found in the {@link #ConstraintSet} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintLeft_toRightOf
*/
public static final int ConstraintSet_layout_constraintLeft_toRightOf = 41;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintRight_creator}
attribute's value can be found in the {@link #ConstraintSet} 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.kd.qxy.myownview:layout_constraintRight_creator
*/
public static final int ConstraintSet_layout_constraintRight_creator = 42;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintRight_toLeftOf}
attribute's value can be found in the {@link #ConstraintSet} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintRight_toLeftOf
*/
public static final int ConstraintSet_layout_constraintRight_toLeftOf = 43;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintRight_toRightOf}
attribute's value can be found in the {@link #ConstraintSet} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintRight_toRightOf
*/
public static final int ConstraintSet_layout_constraintRight_toRightOf = 44;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintStart_toEndOf}
attribute's value can be found in the {@link #ConstraintSet} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintStart_toEndOf
*/
public static final int ConstraintSet_layout_constraintStart_toEndOf = 45;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintStart_toStartOf}
attribute's value can be found in the {@link #ConstraintSet} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintStart_toStartOf
*/
public static final int ConstraintSet_layout_constraintStart_toStartOf = 46;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintTop_creator}
attribute's value can be found in the {@link #ConstraintSet} 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.kd.qxy.myownview:layout_constraintTop_creator
*/
public static final int ConstraintSet_layout_constraintTop_creator = 47;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintTop_toBottomOf}
attribute's value can be found in the {@link #ConstraintSet} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintTop_toBottomOf
*/
public static final int ConstraintSet_layout_constraintTop_toBottomOf = 48;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintTop_toTopOf}
attribute's value can be found in the {@link #ConstraintSet} 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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintTop_toTopOf
*/
public static final int ConstraintSet_layout_constraintTop_toTopOf = 49;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintVertical_bias}
attribute's value can be found in the {@link #ConstraintSet} 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.kd.qxy.myownview:layout_constraintVertical_bias
*/
public static final int ConstraintSet_layout_constraintVertical_bias = 50;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintVertical_chainStyle}
attribute's value can be found in the {@link #ConstraintSet} 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>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>spread_inside</code></td><td>1</td><td></td></tr>
<tr><td><code>packed</code></td><td>2</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintVertical_chainStyle
*/
public static final int ConstraintSet_layout_constraintVertical_chainStyle = 51;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintVertical_weight}
attribute's value can be found in the {@link #ConstraintSet} 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.kd.qxy.myownview:layout_constraintVertical_weight
*/
public static final int ConstraintSet_layout_constraintVertical_weight = 52;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintWidth_default}
attribute's value can be found in the {@link #ConstraintSet} 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>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>wrap</code></td><td>1</td><td></td></tr>
</table>
@attr name com.kd.qxy.myownview:layout_constraintWidth_default
*/
public static final int ConstraintSet_layout_constraintWidth_default = 53;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintWidth_max}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintWidth_max
*/
public static final int ConstraintSet_layout_constraintWidth_max = 54;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_constraintWidth_min}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_constraintWidth_min
*/
public static final int ConstraintSet_layout_constraintWidth_min = 55;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_editor_absoluteX}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_editor_absoluteX
*/
public static final int ConstraintSet_layout_editor_absoluteX = 56;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_editor_absoluteY}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_editor_absoluteY
*/
public static final int ConstraintSet_layout_editor_absoluteY = 57;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_goneMarginBottom}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_goneMarginBottom
*/
public static final int ConstraintSet_layout_goneMarginBottom = 58;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_goneMarginEnd}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_goneMarginEnd
*/
public static final int ConstraintSet_layout_goneMarginEnd = 59;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_goneMarginLeft}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_goneMarginLeft
*/
public static final int ConstraintSet_layout_goneMarginLeft = 60;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_goneMarginRight}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_goneMarginRight
*/
public static final int ConstraintSet_layout_goneMarginRight = 61;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_goneMarginStart}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_goneMarginStart
*/
public static final int ConstraintSet_layout_goneMarginStart = 62;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#layout_goneMarginTop}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:layout_goneMarginTop
*/
public static final int ConstraintSet_layout_goneMarginTop = 63;
/** 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.kd.qxy.myownview:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.kd.qxy.myownview:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength com.kd.qxy.myownview:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color com.kd.qxy.myownview:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize com.kd.qxy.myownview:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.kd.qxy.myownview:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars com.kd.qxy.myownview:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness com.kd.qxy.myownview: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 = {
0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0,
0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4
};
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:thickness
*/
public static final int DrawerArrowToggle_thickness = 7;
/** Attributes that can be used with a LinearConstraintLayout.
<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 #LinearConstraintLayout_android_orientation android:orientation}</code></td><td></td></tr>
</table>
@see #LinearConstraintLayout_android_orientation
*/
public static final int[] LinearConstraintLayout = {
0x010100c4
};
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #LinearConstraintLayout} array.
@attr name android:orientation
*/
public static final int LinearConstraintLayout_android_orientation = 0;
/** 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.kd.qxy.myownview:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.kd.qxy.myownview:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.kd.qxy.myownview:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers com.kd.qxy.myownview: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, 0x7f010037, 0x7f0100d5, 0x7f0100d6,
0x7f0100d7
};
/**
<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.kd.qxy.myownview.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.kd.qxy.myownview:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass com.kd.qxy.myownview:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass com.kd.qxy.myownview: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.kd.qxy.myownview: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, 0x7f0100d8, 0x7f0100d9, 0x7f0100da,
0x7f0100db
};
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionLayout
*/
public static final int MenuItem_actionLayout = 14;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 16;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow com.kd.qxy.myownview: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, 0x7f0100dc,
0x7f0100dd
};
/**
<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.kd.qxy.myownview.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.kd.qxy.myownview:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview: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, 0x7f0100de
};
/**
<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.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100df
};
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:state_above_anchor
*/
public static final int PopupWindowBackgroundState_state_above_anchor = 0;
/** Attributes that can be used with a PtrClassicHeader.
<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 #PtrClassicHeader_ptr_rotate_ani_time com.kd.qxy.myownview:ptr_rotate_ani_time}</code></td><td></td></tr>
</table>
@see #PtrClassicHeader_ptr_rotate_ani_time
*/
public static final int[] PtrClassicHeader = {
0x7f0100e0
};
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#ptr_rotate_ani_time}
attribute's value can be found in the {@link #PtrClassicHeader} 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.kd.qxy.myownview:ptr_rotate_ani_time
*/
public static final int PtrClassicHeader_ptr_rotate_ani_time = 0;
/** Attributes that can be used with a PtrFrameLayout.
<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 #PtrFrameLayout_ptr_content com.kd.qxy.myownview:ptr_content}</code></td><td></td></tr>
<tr><td><code>{@link #PtrFrameLayout_ptr_duration_to_close com.kd.qxy.myownview:ptr_duration_to_close}</code></td><td></td></tr>
<tr><td><code>{@link #PtrFrameLayout_ptr_duration_to_offset com.kd.qxy.myownview:ptr_duration_to_offset}</code></td><td></td></tr>
<tr><td><code>{@link #PtrFrameLayout_ptr_footer com.kd.qxy.myownview:ptr_footer}</code></td><td></td></tr>
<tr><td><code>{@link #PtrFrameLayout_ptr_header com.kd.qxy.myownview:ptr_header}</code></td><td></td></tr>
<tr><td><code>{@link #PtrFrameLayout_ptr_keep_header_when_refresh com.kd.qxy.myownview:ptr_keep_header_when_refresh}</code></td><td></td></tr>
<tr><td><code>{@link #PtrFrameLayout_ptr_pull_to_fresh com.kd.qxy.myownview:ptr_pull_to_fresh}</code></td><td></td></tr>
<tr><td><code>{@link #PtrFrameLayout_ptr_ratio_of_header_height_to_refresh com.kd.qxy.myownview:ptr_ratio_of_header_height_to_refresh}</code></td><td></td></tr>
<tr><td><code>{@link #PtrFrameLayout_ptr_resistance com.kd.qxy.myownview:ptr_resistance}</code></td><td></td></tr>
</table>
@see #PtrFrameLayout_ptr_content
@see #PtrFrameLayout_ptr_duration_to_close
@see #PtrFrameLayout_ptr_duration_to_offset
@see #PtrFrameLayout_ptr_footer
@see #PtrFrameLayout_ptr_header
@see #PtrFrameLayout_ptr_keep_header_when_refresh
@see #PtrFrameLayout_ptr_pull_to_fresh
@see #PtrFrameLayout_ptr_ratio_of_header_height_to_refresh
@see #PtrFrameLayout_ptr_resistance
*/
public static final int[] PtrFrameLayout = {
0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4,
0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8,
0x7f0100e9
};
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#ptr_content}
attribute's value can be found in the {@link #PtrFrameLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.kd.qxy.myownview:ptr_content
*/
public static final int PtrFrameLayout_ptr_content = 1;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#ptr_duration_to_close}
attribute's value can be found in the {@link #PtrFrameLayout} 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.kd.qxy.myownview:ptr_duration_to_close
*/
public static final int PtrFrameLayout_ptr_duration_to_close = 6;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#ptr_duration_to_offset}
attribute's value can be found in the {@link #PtrFrameLayout} 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.kd.qxy.myownview:ptr_duration_to_offset
*/
public static final int PtrFrameLayout_ptr_duration_to_offset = 5;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#ptr_footer}
attribute's value can be found in the {@link #PtrFrameLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.kd.qxy.myownview:ptr_footer
*/
public static final int PtrFrameLayout_ptr_footer = 2;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#ptr_header}
attribute's value can be found in the {@link #PtrFrameLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.kd.qxy.myownview:ptr_header
*/
public static final int PtrFrameLayout_ptr_header = 0;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#ptr_keep_header_when_refresh}
attribute's value can be found in the {@link #PtrFrameLayout} 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.kd.qxy.myownview:ptr_keep_header_when_refresh
*/
public static final int PtrFrameLayout_ptr_keep_header_when_refresh = 8;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#ptr_pull_to_fresh}
attribute's value can be found in the {@link #PtrFrameLayout} 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.kd.qxy.myownview:ptr_pull_to_fresh
*/
public static final int PtrFrameLayout_ptr_pull_to_fresh = 7;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#ptr_ratio_of_header_height_to_refresh}
attribute's value can be found in the {@link #PtrFrameLayout} 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.kd.qxy.myownview:ptr_ratio_of_header_height_to_refresh
*/
public static final int PtrFrameLayout_ptr_ratio_of_header_height_to_refresh = 4;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#ptr_resistance}
attribute's value can be found in the {@link #PtrFrameLayout} 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.kd.qxy.myownview:ptr_resistance
*/
public static final int PtrFrameLayout_ptr_resistance = 3;
/** Attributes that can be used with a RecycleListView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecycleListView_paddingBottomNoButtons com.kd.qxy.myownview:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.kd.qxy.myownview:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f0100ea, 0x7f0100eb
};
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#paddingBottomNoButtons}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:paddingBottomNoButtons
*/
public static final int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.R.attr#paddingTopNoTitle}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.kd.qxy.myownview:paddingTopNoTitle
*/
public static final int RecycleListView_paddingTopNoTitle = 1;
/** 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.kd.qxy.myownview:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon com.kd.qxy.myownview:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint com.kd.qxy.myownview:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon com.kd.qxy.myownview:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault com.kd.qxy.myownview:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout com.kd.qxy.myownview:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground com.kd.qxy.myownview:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint com.kd.qxy.myownview:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon com.kd.qxy.myownview:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon com.kd.qxy.myownview:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground com.kd.qxy.myownview:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout com.kd.qxy.myownview:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon com.kd.qxy.myownview: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,
0x7f0100ec, 0x7f0100ed, 0x7f0100ee, 0x7f0100ef,
0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3,
0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7,
0x7f0100f8
};
/**
<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.kd.qxy.myownview.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.kd.qxy.myownview:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:layout
*/
public static final int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview: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,
0x7f010049
};
/**
<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.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack com.kd.qxy.myownview:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth com.kd.qxy.myownview:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding com.kd.qxy.myownview:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance com.kd.qxy.myownview:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding com.kd.qxy.myownview:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint com.kd.qxy.myownview:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode com.kd.qxy.myownview:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track com.kd.qxy.myownview:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint com.kd.qxy.myownview:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode com.kd.qxy.myownview: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, 0x7f0100f9,
0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd,
0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101,
0x7f010102, 0x7f010103
};
/**
<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.kd.qxy.myownview.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.kd.qxy.myownview:showText
*/
public static final int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:splitTrack
*/
public static final int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:switchPadding
*/
public static final int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:thumbTint
*/
public static final int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:track
*/
public static final int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:trackTint
*/
public static final int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps com.kd.qxy.myownview:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textColorHint
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x01010161, 0x01010162, 0x01010163,
0x01010164, 0x7f010057
};
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowColor
*/
public static final int TextAppearance_android_shadowColor = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDx}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDx
*/
public static final int TextAppearance_android_shadowDx = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDy}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDy
*/
public static final int TextAppearance_android_shadowDy = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowRadius
*/
public static final int TextAppearance_android_shadowRadius = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColor
*/
public static final int TextAppearance_android_textColor = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColorHint
*/
public static final int TextAppearance_android_textColorHint = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#textSize}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textSize
*/
public static final int TextAppearance_android_textSize = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#textStyle}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textStyle
*/
public static final int TextAppearance_android_textStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#typeface}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:typeface
*/
public static final int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:textAllCaps
*/
public static final int TextAppearance_textAllCaps = 9;
/** 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.kd.qxy.myownview:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription com.kd.qxy.myownview:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon com.kd.qxy.myownview:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd com.kd.qxy.myownview:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.kd.qxy.myownview:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft com.kd.qxy.myownview:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight com.kd.qxy.myownview:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart com.kd.qxy.myownview:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.kd.qxy.myownview:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo com.kd.qxy.myownview:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription com.kd.qxy.myownview:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight com.kd.qxy.myownview:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription com.kd.qxy.myownview:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon com.kd.qxy.myownview:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme com.kd.qxy.myownview:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle com.kd.qxy.myownview:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance com.kd.qxy.myownview:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor com.kd.qxy.myownview:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title com.kd.qxy.myownview:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin com.kd.qxy.myownview:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom com.kd.qxy.myownview:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd com.kd.qxy.myownview:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart com.kd.qxy.myownview:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop com.kd.qxy.myownview:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins com.kd.qxy.myownview:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance com.kd.qxy.myownview:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor com.kd.qxy.myownview: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, 0x7f01002f, 0x7f010032,
0x7f010036, 0x7f010042, 0x7f010043, 0x7f010044,
0x7f010045, 0x7f010046, 0x7f010047, 0x7f010049,
0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107,
0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b,
0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f,
0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113,
0x7f010114
};
/**
<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.kd.qxy.myownview.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.kd.qxy.myownview:buttonGravity
*/
public static final int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:collapseIcon
*/
public static final int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:logoDescription
*/
public static final int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:navigationIcon
*/
public static final int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:popupTheme
*/
public static final int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:titleMargin
*/
public static final int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:titleMargins
*/
public static final int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart com.kd.qxy.myownview:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme com.kd.qxy.myownview: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, 0x7f010115, 0x7f010116,
0x7f010117
};
/**
<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.kd.qxy.myownview.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.kd.qxy.myownview:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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.kd.qxy.myownview:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.kd.qxy.myownview:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f010118, 0x7f010119
};
/**
<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.kd.qxy.myownview.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.kd.qxy.myownview:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.kd.qxy.myownview.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.kd.qxy.myownview: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;
};
}
| [
"xyqian2@iflytek.com"
] | xyqian2@iflytek.com |
e9a883f46a6045a15df180c626a533de008451c5 | 63e4f9af50d2214f6628c7ad823a4af4b93a456c | /Interpreter/Java/src/main/Core.java | 4fa7acce9f7307cb041434c6d6d41fdeba6a17fc | [] | no_license | SquirrelsMcGee/GRPCoreWarMobile | ea7ff62939b22cb72eb778da3a1fd8f43b34a8e6 | 27a5ee5fa4496870b3f46884dfbd911faa135779 | refs/heads/master | 2020-03-17T11:21:55.005949 | 2018-05-23T02:33:12 | 2018-05-23T02:33:12 | 133,548,753 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 473 | java | package main;
public class Core {
private CoreNode[] coreArray;
public Core(int coreSize) {
createCoreArray(new CoreNode[coreSize]);
}
public CoreNode[] getCoreArray() {
return coreArray;
}
public void createCoreArray(CoreNode[] coreArray) {
this.coreArray = coreArray;
// Initialise array
for (int i = 0; i < coreArray.length; i++) {
coreArray[i] = new CoreNode();
}
}
public CoreNode getNode(int index) {
return coreArray[index];
}
}
| [
"james.steer98@gmail.com"
] | james.steer98@gmail.com |
aaef48b1eec1b9c7366abbc09fc6da1b7c68de3f | cea38b3c9e46a0e4ecc541d0cf91efa3394e99eb | /src/main/java/servlets/goods/Profile.java | 218f0a0369a6cb51320fa10a3a6a1771ddc619b3 | [] | no_license | SmileyDamnDude/MyStore | b5d94ac1c1e2a494123d0f9835fe028db9dc6920 | 66a47d813037eeeac322e6550e00a9494089d443 | refs/heads/master | 2021-01-09T20:27:41.019153 | 2016-07-10T21:06:12 | 2016-07-10T21:06:12 | 62,031,177 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 806 | java | package servlets.goods;
import entities.Goods;
import entity.ProfilePrint;
import service.GoodsDao;
import javax.ejb.EJB;
import javax.naming.NamingException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServletRequest;
import java.io.IOException;
import java.sql.SQLException;
import java.util.ArrayList;
@WebServlet(value = "/management/goods/profile")
public class Profile extends ProfilePrint {
@EJB
private GoodsDao goodsDao;
@Override
protected void profile(HttpServletRequest request) throws IOException, SQLException, NamingException, NullPointerException{
int number = new Integer(request.getParameter("number"));
ArrayList<Goods> goodses = goodsDao.findById(number);
request.setAttribute("goods", print(goodses));
}
}
| [
"patriot995@mail.ru"
] | patriot995@mail.ru |
82b422e5cf26d1a8868a36957f445289b193e783 | 9b81a4e631b00ad5ce756de5e35d2667adfe5273 | /SwordForOffer/src/Problem3/ListNode.java | 58c853ec6c644001e922f12d776686e79835d0c3 | [] | no_license | 13thlancer/Games | 3729ca9002e8e83e47460d386fbf940316a8521d | 2d5cad944b450bbcf89465b5dc02d3ce3778a4f3 | refs/heads/master | 2021-01-22T01:58:02.285794 | 2015-09-05T13:30:13 | 2015-09-05T13:30:13 | 41,465,141 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 88 | java | package Problem3;
public class ListNode {
public int data;
public ListNode next;
}
| [
"799923145@qq.com"
] | 799923145@qq.com |
e35f58ae59cd655b86a6a2ca499f438fb3faeb77 | e5fdec9df80b4958f49250f90fd05c13e3bda8b7 | /org.servicifi.gelato.language.kernel.resource.kernel.ui/src-gen/org/servicifi/gelato/language/kernel/resource/kernel/ui/KernelTokenScanner.java | 50c0e0b9c6a4599af44f8781304e49fbee5000d8 | [] | no_license | amirms/gelato | 9125e6ac3a56e5bcfd032db855a4c269bdfc5152 | 972d7309dc37c57d17d2b1486a49f00830983eb8 | refs/heads/master | 2021-06-03T22:07:12.010077 | 2019-03-10T11:54:27 | 2019-03-10T11:54:27 | 27,443,539 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,332 | java | /**
* <copyright>
* </copyright>
*
*
*/
package org.servicifi.gelato.language.kernel.resource.kernel.ui;
/**
* An adapter from the Eclipse
* <code>org.eclipse.jface.text.rules.ITokenScanner</code> interface to the
* generated lexer.
*/
public class KernelTokenScanner implements org.eclipse.jface.text.rules.ITokenScanner {
private org.servicifi.gelato.language.kernel.resource.kernel.IKernelTextScanner lexer;
private org.servicifi.gelato.language.kernel.resource.kernel.IKernelTextToken currentToken;
private java.util.List<org.servicifi.gelato.language.kernel.resource.kernel.IKernelTextToken> nextTokens;
private int offset;
private String languageId;
private org.eclipse.jface.preference.IPreferenceStore store;
private org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelColorManager colorManager;
private org.servicifi.gelato.language.kernel.resource.kernel.IKernelTextResource resource;
/**
*
* @param colorManager A manager to obtain color objects
*/
public KernelTokenScanner(org.servicifi.gelato.language.kernel.resource.kernel.IKernelTextResource resource, org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelColorManager colorManager) {
this.resource = resource;
this.colorManager = colorManager;
this.lexer = new org.servicifi.gelato.language.kernel.resource.kernel.mopp.KernelMetaInformation().createLexer();
this.languageId = new org.servicifi.gelato.language.kernel.resource.kernel.mopp.KernelMetaInformation().getSyntaxName();
org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelUIPlugin plugin = org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelUIPlugin.getDefault();
if (plugin != null) {
this.store = plugin.getPreferenceStore();
}
this.nextTokens = new java.util.ArrayList<org.servicifi.gelato.language.kernel.resource.kernel.IKernelTextToken>();
}
public int getTokenLength() {
return currentToken.getLength();
}
public int getTokenOffset() {
return offset + currentToken.getOffset();
}
public org.eclipse.jface.text.rules.IToken nextToken() {
boolean isOriginalToken = true;
if (!nextTokens.isEmpty()) {
currentToken = nextTokens.remove(0);
isOriginalToken = false;
} else {
currentToken = lexer.getNextToken();
}
if (currentToken == null || !currentToken.canBeUsedForSyntaxHighlighting()) {
return org.eclipse.jface.text.rules.Token.EOF;
}
if (isOriginalToken) {
splitCurrentToken();
}
org.eclipse.jface.text.TextAttribute textAttribute = null;
String tokenName = currentToken.getName();
if (tokenName != null) {
org.servicifi.gelato.language.kernel.resource.kernel.IKernelTokenStyle staticStyle = getStaticTokenStyle();
// now call dynamic token styler to allow to apply modifications to the static
// style
org.servicifi.gelato.language.kernel.resource.kernel.IKernelTokenStyle dynamicStyle = getDynamicTokenStyle(staticStyle);
if (dynamicStyle != null) {
textAttribute = getTextAttribute(dynamicStyle);
}
}
return new org.eclipse.jface.text.rules.Token(textAttribute);
}
public void setRange(org.eclipse.jface.text.IDocument document, int offset, int length) {
this.offset = offset;
try {
lexer.setText(document.get(offset, length));
} catch (org.eclipse.jface.text.BadLocationException e) {
// ignore this error. It might occur during editing when locations are outdated
// quickly.
}
}
public String getTokenText() {
return currentToken.getText();
}
public int[] convertToIntArray(org.eclipse.swt.graphics.RGB rgb) {
if (rgb == null) {
return null;
}
return new int[] {rgb.red, rgb.green, rgb.blue};
}
public org.servicifi.gelato.language.kernel.resource.kernel.IKernelTokenStyle getStaticTokenStyle() {
org.servicifi.gelato.language.kernel.resource.kernel.IKernelTokenStyle staticStyle = null;
String tokenName = currentToken.getName();
String enableKey = org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelSyntaxColoringHelper.getPreferenceKey(languageId, tokenName, org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelSyntaxColoringHelper.StyleProperty.ENABLE);
boolean enabled = store.getBoolean(enableKey);
if (enabled) {
String colorKey = org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelSyntaxColoringHelper.getPreferenceKey(languageId, tokenName, org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelSyntaxColoringHelper.StyleProperty.COLOR);
org.eclipse.swt.graphics.RGB foregroundRGB = org.eclipse.jface.preference.PreferenceConverter.getColor(store, colorKey);
org.eclipse.swt.graphics.RGB backgroundRGB = null;
boolean bold = store.getBoolean(org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelSyntaxColoringHelper.getPreferenceKey(languageId, tokenName, org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelSyntaxColoringHelper.StyleProperty.BOLD));
boolean italic = store.getBoolean(org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelSyntaxColoringHelper.getPreferenceKey(languageId, tokenName, org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelSyntaxColoringHelper.StyleProperty.ITALIC));
boolean strikethrough = store.getBoolean(org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelSyntaxColoringHelper.getPreferenceKey(languageId, tokenName, org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelSyntaxColoringHelper.StyleProperty.STRIKETHROUGH));
boolean underline = store.getBoolean(org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelSyntaxColoringHelper.getPreferenceKey(languageId, tokenName, org.servicifi.gelato.language.kernel.resource.kernel.ui.KernelSyntaxColoringHelper.StyleProperty.UNDERLINE));
staticStyle = new org.servicifi.gelato.language.kernel.resource.kernel.mopp.KernelTokenStyle(convertToIntArray(foregroundRGB), convertToIntArray(backgroundRGB), bold, italic, strikethrough, underline);
}
return staticStyle;
}
public org.servicifi.gelato.language.kernel.resource.kernel.IKernelTokenStyle getDynamicTokenStyle(org.servicifi.gelato.language.kernel.resource.kernel.IKernelTokenStyle staticStyle) {
org.servicifi.gelato.language.kernel.resource.kernel.mopp.KernelDynamicTokenStyler dynamicTokenStyler = new org.servicifi.gelato.language.kernel.resource.kernel.mopp.KernelDynamicTokenStyler();
org.servicifi.gelato.language.kernel.resource.kernel.IKernelTokenStyle dynamicStyle = dynamicTokenStyler.getDynamicTokenStyle(resource, currentToken, staticStyle);
return dynamicStyle;
}
public org.eclipse.jface.text.TextAttribute getTextAttribute(org.servicifi.gelato.language.kernel.resource.kernel.IKernelTokenStyle tokeStyle) {
int[] foregroundColorArray = tokeStyle.getColorAsRGB();
org.eclipse.swt.graphics.Color foregroundColor = null;
if (colorManager != null) {
foregroundColor = colorManager.getColor(new org.eclipse.swt.graphics.RGB(foregroundColorArray[0], foregroundColorArray[1], foregroundColorArray[2]));
}
int[] backgroundColorArray = tokeStyle.getBackgroundColorAsRGB();
org.eclipse.swt.graphics.Color backgroundColor = null;
if (backgroundColorArray != null) {
org.eclipse.swt.graphics.RGB backgroundRGB = new org.eclipse.swt.graphics.RGB(backgroundColorArray[0], backgroundColorArray[1], backgroundColorArray[2]);
if (colorManager != null) {
backgroundColor = colorManager.getColor(backgroundRGB);
}
}
int style = org.eclipse.swt.SWT.NORMAL;
if (tokeStyle.isBold()) {
style = style | org.eclipse.swt.SWT.BOLD;
}
if (tokeStyle.isItalic()) {
style = style | org.eclipse.swt.SWT.ITALIC;
}
if (tokeStyle.isStrikethrough()) {
style = style | org.eclipse.jface.text.TextAttribute.STRIKETHROUGH;
}
if (tokeStyle.isUnderline()) {
style = style | org.eclipse.jface.text.TextAttribute.UNDERLINE;
}
return new org.eclipse.jface.text.TextAttribute(foregroundColor, backgroundColor, style);
}
/**
* Tries to split the current token if it contains task items.
*/
public void splitCurrentToken() {
final String text = currentToken.getText();
final String name = currentToken.getName();
final int line = currentToken.getLine();
final int charStart = currentToken.getOffset();
final int column = currentToken.getColumn();
java.util.List<org.servicifi.gelato.language.kernel.resource.kernel.mopp.KernelTaskItem> taskItems = new org.servicifi.gelato.language.kernel.resource.kernel.mopp.KernelTaskItemDetector().findTaskItems(text, line, charStart);
// this is the offset for the next token to be added
int offset = charStart;
int itemBeginRelative;
java.util.List<org.servicifi.gelato.language.kernel.resource.kernel.IKernelTextToken> newItems = new java.util.ArrayList<org.servicifi.gelato.language.kernel.resource.kernel.IKernelTextToken>();
for (org.servicifi.gelato.language.kernel.resource.kernel.mopp.KernelTaskItem taskItem : taskItems) {
int itemBegin = taskItem.getCharStart();
int itemLine = taskItem.getLine();
int itemColumn = 0;
itemBeginRelative = itemBegin - charStart;
// create token before task item (TODO if required)
String textBefore = text.substring(offset - charStart, itemBeginRelative);
int textBeforeLength = textBefore.length();
newItems.add(new org.servicifi.gelato.language.kernel.resource.kernel.mopp.KernelTextToken(name, textBefore, offset, textBeforeLength, line, column, true));
// create token for the task item itself
offset = offset + textBeforeLength;
String itemText = taskItem.getKeyword();
int itemTextLength = itemText.length();
newItems.add(new org.servicifi.gelato.language.kernel.resource.kernel.mopp.KernelTextToken(org.servicifi.gelato.language.kernel.resource.kernel.mopp.KernelTokenStyleInformationProvider.TASK_ITEM_TOKEN_NAME, itemText, offset, itemTextLength, itemLine, itemColumn, true));
offset = offset + itemTextLength;
}
if (!taskItems.isEmpty()) {
// create token after last task item (TODO if required)
String textAfter = text.substring(offset - charStart);
newItems.add(new org.servicifi.gelato.language.kernel.resource.kernel.mopp.KernelTextToken(name, textAfter, offset, textAfter.length(), line, column, true));
}
if (!newItems.isEmpty()) {
// replace tokens
currentToken = newItems.remove(0);
nextTokens = newItems;
}
}
}
| [
"amir.saeidi@mendix.com"
] | amir.saeidi@mendix.com |
bb687297c472646c1aad0bfb825fe7b3e782fc1a | d24f974bfc1d4aaeb0487e3b02fcd497f35565f4 | /Academia20/src/entidades/Alumnos.java | 3e63498652b1c7ca5a8bfe6d05dbaa34b7f08492 | [] | no_license | Cybarsan/git-curso-udemy | cfbd39aa74c3157ad212a83c4264f6dae400432b | e00666d5a8300e13bfaff57fbc54ac4f15da2394 | refs/heads/master | 2023-08-05T09:48:29.726020 | 2023-07-26T23:26:15 | 2023-07-26T23:26:15 | 305,560,525 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,188 | java | /*
* Todo los derechos reservados, Alan Sanier, Analista de Sistemas.
*/
package entidades;
import java.io.Serializable;
import java.util.Collection;
import java.util.Date;
import javax.persistence.Basic;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlTransient;
/**
*
* @author PC_Toshiba15
*/
@Entity
@Table(name = "alumnos")
@XmlRootElement
@NamedQueries({
@NamedQuery(name = "Alumnos.findAll", query = "SELECT a FROM Alumnos a"),
@NamedQuery(name = "Alumnos.findByIdalumno", query = "SELECT a FROM Alumnos a WHERE a.idalumno = :idalumno"),
@NamedQuery(name = "Alumnos.findByApellidoAlumno", query = "SELECT a FROM Alumnos a WHERE a.apellidoAlumno = :apellidoAlumno"),
@NamedQuery(name = "Alumnos.findByCedulaAlumno", query = "SELECT a FROM Alumnos a WHERE a.cedulaAlumno = :cedulaAlumno"),
@NamedQuery(name = "Alumnos.findByCelular1", query = "SELECT a FROM Alumnos a WHERE a.celular1 = :celular1"),
@NamedQuery(name = "Alumnos.findByCelular2", query = "SELECT a FROM Alumnos a WHERE a.celular2 = :celular2"),
@NamedQuery(name = "Alumnos.findByMail", query = "SELECT a FROM Alumnos a WHERE a.mail = :mail"),
@NamedQuery(name = "Alumnos.findByNombreAlumno", query = "SELECT a FROM Alumnos a WHERE a.nombreAlumno = :nombreAlumno"),
@NamedQuery(name = "Alumnos.findByDireccion", query = "SELECT a FROM Alumnos a WHERE a.direccion = :direccion"),
@NamedQuery(name = "Alumnos.findByFechanac", query = "SELECT a FROM Alumnos a WHERE a.fechanac = :fechanac"),
@NamedQuery(name = "Alumnos.findByActivo", query = "SELECT a FROM Alumnos a WHERE a.activo = :activo")})
public class Alumnos implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Basic(optional = false)
@Column(name = "idalumno")
private Integer idalumno;
@Column(name = "apellido_alumno")
private String apellidoAlumno;
@Column(name = "cedula_alumno")
private String cedulaAlumno;
@Column(name = "celular1")
private String celular1;
@Column(name = "celular2")
private String celular2;
@Column(name = "mail")
private String mail;
@Column(name = "nombre_alumno")
private String nombreAlumno;
@Column(name = "direccion")
private String direccion;
@Column(name = "fechanac")
@Temporal(TemporalType.DATE)
private Date fechanac;
@Column(name = "activo")
private Integer activo;
@OneToMany(cascade = CascadeType.ALL, mappedBy = "idalumnos")
private Collection<Parientes> parientesCollection;
@OneToMany(mappedBy = "idalumno")
private Collection<MateriasAlumnos> materiasAlumnosCollection;
public Alumnos() {
}
public Alumnos(Integer idalumno) {
this.idalumno = idalumno;
}
public Integer getIdalumno() {
return idalumno;
}
public void setIdalumno(Integer idalumno) {
this.idalumno = idalumno;
}
public String getApellidoAlumno() {
return apellidoAlumno;
}
public void setApellidoAlumno(String apellidoAlumno) {
this.apellidoAlumno = apellidoAlumno;
}
public String getCedulaAlumno() {
return cedulaAlumno;
}
public void setCedulaAlumno(String cedulaAlumno) {
this.cedulaAlumno = cedulaAlumno;
}
public String getCelular1() {
return celular1;
}
public void setCelular1(String celular1) {
this.celular1 = celular1;
}
public String getCelular2() {
return celular2;
}
public void setCelular2(String celular2) {
this.celular2 = celular2;
}
public String getMail() {
return mail;
}
public void setMail(String mail) {
this.mail = mail;
}
public String getNombreAlumno() {
return nombreAlumno;
}
public void setNombreAlumno(String nombreAlumno) {
this.nombreAlumno = nombreAlumno;
}
public String getDireccion() {
return direccion;
}
public void setDireccion(String direccion) {
this.direccion = direccion;
}
public Date getFechanac() {
return fechanac;
}
public void setFechanac(Date fechanac) {
this.fechanac = fechanac;
}
public Integer getActivo() {
return activo;
}
public void setActivo(Integer activo) {
this.activo = activo;
}
@XmlTransient
public Collection<Parientes> getParientesCollection() {
return parientesCollection;
}
public void setParientesCollection(Collection<Parientes> parientesCollection) {
this.parientesCollection = parientesCollection;
}
@XmlTransient
public Collection<MateriasAlumnos> getMateriasAlumnosCollection() {
return materiasAlumnosCollection;
}
public void setMateriasAlumnosCollection(Collection<MateriasAlumnos> materiasAlumnosCollection) {
this.materiasAlumnosCollection = materiasAlumnosCollection;
}
@Override
public int hashCode() {
int hash = 0;
hash += (idalumno != null ? idalumno.hashCode() : 0);
return hash;
}
@Override
public boolean equals(Object object) {
// TODO: Warning - this method won't work in the case the id fields are not set
if (!(object instanceof Alumnos)) {
return false;
}
Alumnos other = (Alumnos) object;
if ((this.idalumno == null && other.idalumno != null) || (this.idalumno != null && !this.idalumno.equals(other.idalumno))) {
return false;
}
return true;
}
@Override
public String toString() {
return "entidades.Alumnos[ idalumno=" + idalumno + " ]";
}
}
| [
"alan.sanier@gmail.com"
] | alan.sanier@gmail.com |
6d06f8c4097f813826ef07abd3c812a9a04eba06 | 9cdf4a803b5851915b53edaeead2546f788bddc6 | /machinelearning/5.0/drools-verifier/src/main/java/org/drools/verifier/components/PatternPossibility.java | 0285ddeaaa24a726d9fa48c2d39fe0f65bc587fb | [
"Apache-2.0"
] | permissive | kiegroup/droolsjbpm-contributed-experiments | 8051a70cfa39f18bc3baa12ca819a44cc7146700 | 6f032d28323beedae711a91f70960bf06ee351e5 | refs/heads/master | 2023-06-01T06:11:42.641550 | 2020-07-15T15:09:02 | 2020-07-15T15:09:02 | 1,184,582 | 1 | 13 | null | 2021-06-24T08:45:52 | 2010-12-20T15:42:26 | Java | UTF-8 | Java | false | false | 1,586 | java | package org.drools.verifier.components;
import java.util.HashSet;
import java.util.Set;
import org.drools.verifier.report.components.Cause;
import org.drools.verifier.report.components.CauseType;
/**
* Instance of this class represents a possible combination of Constraints under
* one Pattern. Each possibility returns true if all the Constraints in the
* combination are true.
*
* @author Toni Rikkola
*/
public class PatternPossibility extends VerifierComponent implements
Possibility {
private static final long serialVersionUID = 8871361928380977116L;
private static int index = 0;
private int patternId;
private int ruleId;
private Set<Cause> items = new HashSet<Cause>();
public PatternPossibility() {
super(index++);
}
@Override
public VerifierComponentType getComponentType() {
return VerifierComponentType.PATTERN_POSSIBILITY;
}
public CauseType getCauseType() {
return CauseType.PATTERN_POSSIBILITY;
}
public Set<Cause> getItems() {
return items;
}
public int getAmountOfItems() {
return items.size();
}
public int getPatternId() {
return patternId;
}
public int getRuleId() {
return ruleId;
}
public void setRuleId(int ruleId) {
this.ruleId = ruleId;
}
public void setPatternId(int patternId) {
this.patternId = patternId;
}
public void add(Restriction restriction) {
items.add(restriction);
}
@Override
public String toString() {
return "PatternPossibility from rule: " + ruleName
+ ", amount of items:" + items.size();
}
} | [
"gizil.oguz@gmail.com"
] | gizil.oguz@gmail.com |
99f53bb97e04df53c307dc912037268af1509ea1 | 44abee7981ec47704f59d0cb9345efc4b909ad4f | /src/chap06/textbook/s061302/package1/A.java | 444c2108d322e0c163d4fba1b75a16c4930e9e35 | [] | no_license | hyojjjin/java20200929 | ad24e96c2c3837f695951be783c59418559eceee | 8a2d7b34bc814465c83ae0efa0bd59f29205c738 | refs/heads/master | 2023-03-11T22:56:51.890496 | 2021-03-02T01:08:15 | 2021-03-02T01:08:15 | 299,485,576 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 304 | java | package chap06.textbook.s061302.package1;
public class A {
//ํ๋
A a1 = new A(true); //ใ
A a2 = new A(1); //ใ
A a3 = new A("๋ฌธ์์ด");
//์์ฑ์
public A(boolean b) {} //public ์ ๊ทผ ์ ํ
A(int b){} //default ์ ๊ทผ ์ ํ
private A(String s) {} //private ์ ๊ทผ ์ ํ
}
| [
"hjjin2_@naver.com"
] | hjjin2_@naver.com |
9dadf5bd217d1d6ec936c3a66dee1058a7cc8576 | bf16f2c4a180f4ca0da5068e9895cab9edd503a5 | /smartlibrary/src/main/java/com/refresh/library/header/TwoLevelHeader.java | 0acc1584186babe455f415547b5b2cd6dc27000a | [] | no_license | flyingtercel/SmartRefreshLayout | 977c6ffea2837436b250d8cf35ade9ba2721c034 | ec1ee5a9e55c2462fcf055a79da8e6aaaa213e44 | refs/heads/master | 2020-05-30T20:53:22.396113 | 2019-06-03T09:37:05 | 2019-06-03T09:37:05 | 189,959,651 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 14,168 | java | package com.refresh.library.header;
import android.content.Context;
import android.content.res.TypedArray;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;
import com.refresh.library.R;
import com.refresh.library.api.OnTwoLevelListener;
import com.refresh.library.api.RefreshHeader;
import com.refresh.library.api.RefreshInternal;
import com.refresh.library.api.RefreshKernel;
import com.refresh.library.api.RefreshLayout;
import com.refresh.library.constant.RefreshState;
import com.refresh.library.constant.SpinnerStyle;
import com.refresh.library.internal.InternalAbstract;
import com.refresh.library.listener.OnStateChangedListener;
import static android.view.ViewGroup.LayoutParams.MATCH_PARENT;
import static android.view.ViewGroup.LayoutParams.WRAP_CONTENT;
/**
* ไบ็บงๅทๆฐ
* Created by SCWANG on 2017/5/26.
*/
@SuppressWarnings({"unused", "UnusedReturnValue"})
public class TwoLevelHeader extends InternalAbstract implements RefreshHeader/*, InvocationHandler*/ {
//<editor-fold desc="ๅฑๆงๅญๆฎต">
protected int mSpinner;
protected float mPercent = 0;
protected float mMaxRage = 2.5f;
protected float mFloorRage = 1.9f;
protected float mRefreshRage = 1f;
protected boolean mEnableTwoLevel = true;
protected boolean mEnablePullToCloseTwoLevel = true;
protected int mFloorDuration = 1000;
protected int mHeaderHeight;
// protected int mPaintAlpha;
// protected Paint mPaint;
protected RefreshInternal mRefreshHeader;
protected RefreshKernel mRefreshKernel;
protected OnTwoLevelListener mTwoLevelListener;
// protected SpinnerStyle mSpinnerStyle = SpinnerStyle.FixedBehind;
// protected Method mRequestDrawBackgroundForHeaderMethod;
//</editor-fold>
//<editor-fold desc="ๆ้ ๆนๆณ">
public TwoLevelHeader(@NonNull Context context) {
this(context, null);
}
public TwoLevelHeader(@NonNull Context context, @Nullable AttributeSet attrs) {
this(context, attrs, 0);
}
public TwoLevelHeader(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
mSpinnerStyle = SpinnerStyle.FixedBehind;
TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.TwoLevelHeader);
mMaxRage = ta.getFloat(R.styleable.TwoLevelHeader_srlMaxRage, mMaxRage);
mFloorRage = ta.getFloat(R.styleable.TwoLevelHeader_srlFloorRage, mFloorRage);
mRefreshRage = ta.getFloat(R.styleable.TwoLevelHeader_srlRefreshRage, mRefreshRage);
mFloorDuration = ta.getInt(R.styleable.TwoLevelHeader_srlFloorDuration, mFloorDuration);
mEnableTwoLevel = ta.getBoolean(R.styleable.TwoLevelHeader_srlEnableTwoLevel, mEnableTwoLevel);
mEnablePullToCloseTwoLevel = ta.getBoolean(R.styleable.TwoLevelHeader_srlEnablePullToCloseTwoLevel, mEnablePullToCloseTwoLevel);
ta.recycle();
}
//</editor-fold>
//<editor-fold desc="็ๅฝๅจๆ">
@Override
protected void onFinishInflate() {
super.onFinishInflate();
final ViewGroup thisGroup = this;
for (int i = 0, len = thisGroup.getChildCount(); i < len; i++) {
View childAt = thisGroup.getChildAt(i);
if (childAt instanceof RefreshHeader) {
mRefreshHeader = (RefreshHeader) childAt;
mWrappedInternal = (RefreshInternal) childAt;
thisGroup.bringChildToFront(childAt);
break;
}
}
if (mRefreshHeader == null) {
final ViewGroup thisView = this;
setRefreshHeader(new ClassicsHeader(thisView.getContext()));
}
}
@Override
protected void onAttachedToWindow() {
super.onAttachedToWindow();
mSpinnerStyle = SpinnerStyle.MatchLayout;
if (mRefreshHeader == null) {
final ViewGroup thisView = this;
setRefreshHeader(new ClassicsHeader(thisView.getContext()));
}
}
@Override
protected void onDetachedFromWindow() {
super.onDetachedFromWindow();
mSpinnerStyle = SpinnerStyle.FixedBehind;
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
final RefreshInternal refreshHeader = mRefreshHeader;
if (refreshHeader != null) {
int mode = MeasureSpec.getMode(heightMeasureSpec);
if (mode == MeasureSpec.AT_MOST) {
refreshHeader.getView().measure(widthMeasureSpec, heightMeasureSpec);
int height = refreshHeader.getView().getMeasuredHeight();
super.setMeasuredDimension(View.resolveSize(super.getSuggestedMinimumWidth(), widthMeasureSpec), height);
} else {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
} else {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
}
@Override
public boolean equals(Object obj) {
final Object header = mRefreshHeader;
return (header != null && header.equals(obj)) || super.equals(obj);
}
@Override
public void onInitialized(@NonNull RefreshKernel kernel, int height, int maxDragHeight) {
final View thisView = this;
final RefreshInternal refreshHeader = mRefreshHeader;
if (refreshHeader == null) {
return;
}
if (1f * (maxDragHeight + height) / height != mMaxRage && mHeaderHeight == 0) {
mHeaderHeight = height;
mRefreshHeader = null;
kernel.getRefreshLayout().setHeaderMaxDragRate(mMaxRage);
mRefreshHeader = refreshHeader;
}
if (mRefreshKernel == null //็ฌฌไธๆฌกๅๅงๅ
&& refreshHeader.getSpinnerStyle() == SpinnerStyle.Translate
&& !thisView.isInEditMode()) {
MarginLayoutParams params = (MarginLayoutParams) refreshHeader.getView().getLayoutParams();
params.topMargin -= height;
refreshHeader.getView().setLayoutParams(params);
}
mHeaderHeight = height;
mRefreshKernel = kernel;
kernel.requestFloorDuration(mFloorDuration);
kernel.requestNeedTouchEventFor(this, !mEnablePullToCloseTwoLevel);
refreshHeader.onInitialized(kernel, height, maxDragHeight);
}
@Override
public void onStateChanged(@NonNull RefreshLayout refreshLayout, @NonNull RefreshState oldState, @NonNull RefreshState newState) {
final RefreshInternal refreshHeader = mRefreshHeader;
if (refreshHeader != null) {
final OnStateChangedListener listener = mRefreshHeader;
listener.onStateChanged(refreshLayout, oldState, newState);
switch (newState) {
case TwoLevelReleased:
if (refreshHeader.getView() != this) {
refreshHeader.getView().animate().alpha(0).setDuration(mFloorDuration / 2);
}
final RefreshKernel refreshKernel = mRefreshKernel;
if (refreshKernel != null) {
final OnTwoLevelListener twoLevelListener = mTwoLevelListener;
refreshKernel.startTwoLevel(twoLevelListener == null || twoLevelListener.onTwoLevel(refreshLayout));
}
break;
case TwoLevel:
break;
case TwoLevelFinish:
if (refreshHeader.getView() != this) {
refreshHeader.getView().animate().alpha(1).setDuration(mFloorDuration / 2);
}
break;
case PullDownToRefresh:
if (refreshHeader.getView().getAlpha() == 0 && refreshHeader.getView() != this) {
refreshHeader.getView().setAlpha(1);
}
break;
}
}
}
@Override
public void onMoving(boolean isDragging, float percent, int offset, int height, int maxDragHeight) {
moveSpinner(offset);
final RefreshInternal refreshHeader = mRefreshHeader;
final RefreshKernel refreshKernel = mRefreshKernel;
if (refreshHeader != null) {
refreshHeader.onMoving(isDragging, percent, offset, height, maxDragHeight);
}
if (isDragging) {
if (mPercent < mFloorRage && percent >= mFloorRage && mEnableTwoLevel) {
refreshKernel.setState(RefreshState.ReleaseToTwoLevel);
} else if (mPercent >= mFloorRage && percent < mRefreshRage) {
refreshKernel.setState(RefreshState.PullDownToRefresh);
} else if (mPercent >= mFloorRage && percent < mFloorRage) {
refreshKernel.setState(RefreshState.ReleaseToRefresh);
}
mPercent = percent;
}
}
protected void moveSpinner(int spinner) {
final RefreshInternal refreshHeader = mRefreshHeader;
if (mSpinner != spinner && refreshHeader != null) {
mSpinner = spinner;
SpinnerStyle style = refreshHeader.getSpinnerStyle();
if (style == SpinnerStyle.Translate) {
refreshHeader.getView().setTranslationY(spinner);
} else if (style == SpinnerStyle.Scale) {
View view = refreshHeader.getView();
view.layout(view.getLeft(), view.getTop(), view.getRight(), view.getTop() + Math.max(0, spinner));
}
}
}
//</editor-fold>
//<editor-fold desc="ๅผๆพๆฅๅฃ - API">
/**
* ่ฎพ็ฝฎๆๅฎ็ Header
* @param header RefreshHeader
* @return TwoLevelHeader
*/
public TwoLevelHeader setRefreshHeader(RefreshHeader header) {
return setRefreshHeader(header, MATCH_PARENT, WRAP_CONTENT);
}
/**
* ่ฎพ็ฝฎๆๅฎ็ Header
* @param header RefreshHeader
* @param width ๆๅฎๅฎฝๅบฆ
* @param height ๆๅฎ้ซๅบฆ
* @return TwoLevelHeader
*/
public TwoLevelHeader setRefreshHeader(RefreshHeader header, int width, int height) {
final ViewGroup thisGroup = this;
if (header != null) {
RefreshInternal refreshHeader = mRefreshHeader;
if (refreshHeader != null) {
thisGroup.removeView(refreshHeader.getView());
}
refreshHeader = header;
if (refreshHeader.getSpinnerStyle() == SpinnerStyle.FixedBehind) {
thisGroup.addView(refreshHeader.getView(), 0, new LayoutParams(width, height));
} else {
thisGroup.addView(refreshHeader.getView(), width, height);
}
this.mRefreshHeader = header;
this.mWrappedInternal = header;
}
return this;
}
/**
* ่ฎพ็ฝฎไธๆ Header ็ๆๅคง้ซๅบฆๆฏๅผ
* @param rate MaxDragHeight/HeaderHeight
* @return TwoLevelHeader
*/
public TwoLevelHeader setMaxRage(float rate) {
if (this.mMaxRage != rate) {
this.mMaxRage = rate;
final RefreshKernel refreshKernel = mRefreshKernel;
if (refreshKernel != null) {
this.mHeaderHeight = 0;
refreshKernel.getRefreshLayout().setHeaderMaxDragRate(mMaxRage);
}
}
return this;
}
/**
* ๆฏๅฆ็ฆๆญขๅจไบๆ็ถๆๆฏไธๆปๅ
ณ้ญ็ถๆๅๅฐๅๆ
* @param enabled ๆฏๅฆๅฏ็จ
* @return TwoLevelHeader
*/
public TwoLevelHeader setEnablePullToCloseTwoLevel(boolean enabled) {
final RefreshKernel refreshKernel = mRefreshKernel;
this.mEnablePullToCloseTwoLevel = enabled;
if (refreshKernel != null) {
refreshKernel.requestNeedTouchEventFor(this, !enabled);
}
return this;
}
/**
* ่ฎพ็ฝฎ่งฆๅไบๆฅผ็็ฝ็พๅๆฏ
* @param rate ๆฏ็ ่ฆๆฑๅคงไบ RefreshRage
* @return TwoLevelHeader
*/
public TwoLevelHeader setFloorRage(float rate) {
this.mFloorRage = rate;
return this;
}
/**
* ่ฎพ็ฝฎ่งฆๅๅทๆฐ็็พๅๆฏ
* @param rate ๆฏ็ ่ฆๆฑๅฐไบ FloorRage
* @return TwoLevelHeader
*/
public TwoLevelHeader setRefreshRage(float rate) {
this.mRefreshRage = rate;
return this;
}
/**
* ่ฎพ็ฝฎๆฏๅฆๅผๅฏไบ็บงๅทๆฐ
* @param enabled ๆฏๅฆๅผๅฏ
* @return TwoLevelHeader
*/
public TwoLevelHeader setEnableTwoLevel(boolean enabled) {
this.mEnableTwoLevel = enabled;
return this;
}
/**
* ่ฎพ็ฝฎไบๆฅผๅฑๅผๅจ็ปๆ็ปญ็ๆถ้ด
* @param duration ๆฏซ็ง
* @return TwoLevelHeader
*/
public TwoLevelHeader setFloorDuration(int duration) {
this.mFloorDuration = duration;
return this;
}
/**
* ่ฎพ็ฝฎไบ็บงๅทๆฐ็ๅฌๅจ
* @param listener ็ๅฌๅจ
* @return TwoLevelHeader
*/
public TwoLevelHeader setOnTwoLevelListener(OnTwoLevelListener listener) {
this.mTwoLevelListener = listener;
return this;
}
/**
* ็ปๆไบ็บงๅทๆฐ
* @return TwoLevelHeader
*/
public TwoLevelHeader finishTwoLevel() {
final RefreshKernel refreshKernel = mRefreshKernel;
if (refreshKernel != null) {
refreshKernel.finishTwoLevel();
}
return this;
}
/**
* Open the second floor voluntarily
* ไธปๅจๆๅผไบๆฅผ
* @param widthOnTwoLevelListener ๆฏๅฆ่งฆๅ OnTwoLevelListener ็ๅฌๅจ
* @return TwoLevelHeader
*/
public TwoLevelHeader openTwoLevel(boolean widthOnTwoLevelListener) {
final RefreshKernel refreshKernel = mRefreshKernel;
if (refreshKernel != null) {
final OnTwoLevelListener twoLevelListener = mTwoLevelListener;
refreshKernel.startTwoLevel(!widthOnTwoLevelListener || twoLevelListener == null || twoLevelListener.onTwoLevel(refreshKernel.getRefreshLayout()));
}
return this;
}
//</editor-fold>
} | [
"flyingtercel@163.com"
] | flyingtercel@163.com |
bddac9de6a2a9bc32cecf562aa869307f7e3a34a | 4cc763d7a0d5f8f17676d710b5c7e0dd675680d7 | /src/cn/wyc/finalProject/C3P0Util.java | 5ceddb18ddc751dff56b25ec110db5473487bf3b | [] | no_license | Upopulor/Struts2 | b0d3c227886a09246c51336fde17109f74a7667d | 493a7f1ddc70b9c29eccc004142390678057fd9d | refs/heads/master | 2020-04-14T20:24:27.148264 | 2019-01-04T10:20:48 | 2019-01-04T10:20:48 | 164,092,567 | 1 | 0 | null | null | null | null | GB18030 | Java | false | false | 1,950 | java | package cn.wyc.finalProject;
import java.beans.PropertyVetoException;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import javax.sql.DataSource;
import com.mchange.v2.c3p0.ComboPooledDataSource;
public class C3P0Util {
//ๅพๅฐๆฏไธไธชๆฐๆฎๆบ
private static DataSource dataSource = new ComboPooledDataSource();
public static DataSource getDataSource() {
return dataSource;
}
//็ฌฌไธ็ง๏ผๅจ็จๅบไธญ้
็ฝฎ
/*private static ComboPooledDataSource dataSource = new ComboPooledDataSource();
* static {
try {
dataSource.setDriverClass("com.mysql.jdbc.Driver");//load the jdbc driver
dataSource.setJdbcUrl("jdbc:mysql://localhost:3306/day06");
dataSource.setUser("root");
dataSource.setPassword("root");
dataSource.setInitialPoolSize(10);
} catch (PropertyVetoException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}*/
//็ฌฌไบ็ง๏ผไฝฟ็จXML
public static Connection getConnection() {
try {
return dataSource.getConnection();
} catch (SQLException e) {
throw new RuntimeException("ๆๅกๅจ่ฟๆฅ้่ฏฏ");
}
}
public static void closeAll(ResultSet rs,Statement stmt,Connection connection) {
//6 ๅ
ณ้ญ่ตๆบ ๅๅณไบๆกไปถ๏ผๅฆๆๆฏๆฒกๆ่ถณๅค็่ฟๆฅ๏ผๅฐฑไธไผๅ
ณ้ญ๏ผ่ๆฏๆพๅๅป
// ๅฆๆ่ฟๆฅๆฑ ่ถณๅค๏ผๅฐฑไผๅ
ณ้ญ๏ผApacheๅทฒ็ปๅจๅบๅฑๅๅฅฝไบ๏ผ่ฟ้็ดๆฅ่ฐ็จcloseๅฐฑok
if(rs!=null) {
try { //้้ขไบๅฏ่ฝ่ฟๆๅผๅธธ๏ผๆไปฅๅ trycatch
rs.close();
} catch (Exception e) {
e.printStackTrace();
}
rs=null;
}
if(stmt!=null) {
try {
stmt.close();
} catch (Exception e) {
e.printStackTrace();
}
stmt = null;
}
if(connection!=null) {
try {
connection.close();
} catch (Exception e) {
e.printStackTrace();
}
connection = null;
}
}
}
| [
"1603852529@qq.com"
] | 1603852529@qq.com |
6d05f1d0841ace399bc9bc777bb9a88423215c4f | 257764907499b8278cc5e0eeae6447e1e9fcf440 | /Java Book Progames/CORBARMIIIOP/Calculator.java | 00484c1d4d55af2cd0cf128faefc725fe45b69e9 | [] | no_license | NiteshPidiparars/CodeBlock | b772ac27168928c836fece0b465ec1fd85b33c68 | d71f48591b54f88049029be4ad45c2e7d6721f9f | refs/heads/master | 2023-04-19T06:54:20.171948 | 2021-05-08T13:42:20 | 2021-05-08T13:42:20 | 365,522,594 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 161 | java | import java.rmi.Remote;
import java.rmi.RemoteException;
public interface Calculator extends Remote {
public int add(int a, int b) throws RemoteException;
}
| [
"niteshpidiparas76@gmail.com"
] | niteshpidiparas76@gmail.com |
1e20b8dd6e65c0baf5420747fd214f5faaa2b630 | fba1cdcb4d6596b9cefdf97f55a5badc8c9346f9 | /SD/Labs/Lab5/src/max/WorkWithStringGenerator.java | 0a01a5d56cc4b4ae048ff1bbdf4fd1578cce92e5 | [] | no_license | maxim79135/Course_3 | a001bcd020b81b42b298399e64a14101bd5e2f9d | 0b60986b001d6d5a1eda7ae82a9840f8ee9f7d52 | refs/heads/master | 2021-07-19T03:51:56.101902 | 2020-08-24T16:23:35 | 2020-08-24T16:23:35 | 206,738,402 | 4 | 0 | null | null | null | null | UTF-8 | Java | false | false | 703 | java | package max;
import javax.swing.*;
import java.awt.*;
public class WorkWithStringGenerator implements Runnable {
private JFrame mainFrame = new JFrame("WorkWithString");
@Override
public void run() {
mainFrame.setPreferredSize(new Dimension(500, 250));
mainFrame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
JPanel workWithStringPanel = new WorkWithStringPanel();
Dimension dimension = Toolkit.getDefaultToolkit().getScreenSize();
mainFrame.setContentPane(workWithStringPanel);
mainFrame.pack();
mainFrame.setVisible(true);
mainFrame.setResizable(false);
mainFrame.setLocationRelativeTo(null);
}
}
| [
"maxim79135@gmail.com"
] | maxim79135@gmail.com |
377720500f6e1a535dda8f8b92f272b551765c25 | 31477f4361113b6dfa3a1d525639fc60cb86f82a | /src/application/Programa2.java | 012d15fded02ac3c5faa8e5c9aeeb3e573a33ac0 | [] | no_license | afzaniboni/map-proposto | 89c9b82c9a441fc66844c0b64153a7c93ce7aede | d3e393f8e22de44f9c5ce6c5c02ade51132389d6 | refs/heads/master | 2022-11-23T06:57:05.485685 | 2020-07-24T01:38:14 | 2020-07-24T01:38:14 | 282,093,669 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 796 | java | package application;
import java.util.ArrayList;
import java.util.List;
import entities.Product;
import entities.Product2;
public class Programa2 {
public static void main(String[] args) {
List<Product> list = new ArrayList<>();
List<Product2> list2 = new ArrayList<>();
list.add(new Product("TV", 900.00));
list.add(new Product("Notebook", 1200.00));
list.add(new Product("Tablet", 450.00));
list2.add(new Product2("TV", 900.00));
list2.add(new Product2("Notebook", 1200.00));
list2.add(new Product2("Tablet", 450.00));
list.sort((p1, p2) -> p1.getName().toUpperCase().compareTo(p2.getName().toUpperCase()));
list2.sort((p1, p2) -> p1.getName2().toUpperCase().compareTo(p2.getName2().toUpperCase()));
for (Product p : list) {
System.out.println(p);
}
}
} | [
"afzaniboni@gmail.com"
] | afzaniboni@gmail.com |
9a120f0e75e974828e0cc2bfc31f7cc927a318ca | 7ee6e6d0a665faf75d10a56cec4cab0831d5bd27 | /kodilla-rps/src/main/java/com/kodilla/rps/InputReader.java | 1272b6131a5e976a3e6843879ca8854e876e2471 | [] | no_license | graczek/Grzegorz-Raczek-Kodilla-Java | 9df30d12427263a95dd24792c5b10e1c46740901 | 461681c69470f4c76eaf34216ad708fdc7731c06 | refs/heads/master | 2020-07-16T13:48:26.893800 | 2019-12-29T11:03:56 | 2019-12-29T11:03:56 | 205,799,680 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 371 | java | package com.kodilla.rps;
import java.util.Scanner;
public class InputReader {
private Scanner sc = new Scanner(System.in);
public String readPlayersName(){
return sc.nextLine();
}
public int readNoOfRounds(){ return sc.nextInt(); }
public int readPlayersMove(){
//return sc.next().charAt(0);
return sc.nextInt();
}
}
| [
"raczek.grz@gmail.com"
] | raczek.grz@gmail.com |
4f70ad185d60947b4dbc45126d80a5be4fd6d0dc | f60fff2bb7210bcc15127fbbb825c866339f5aab | /app/src/main/java/org/yh/toolbartest/CustomToolbarActivity.java | 9b3ec55f8d293470a70f382534f3611bd9754410 | [] | no_license | android-coco/ToolbarTest | 1487cbe97a654d349e04cef73fa40de177c1676d | b26a7ed874461a49f931ad11cb668d0850c45364 | refs/heads/master | 2020-12-30T16:28:50.217265 | 2017-05-11T16:38:43 | 2017-05-11T16:38:43 | 90,999,998 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 404 | java | package org.yh.toolbartest;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class CustomToolbarActivity extends AppCompatActivity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_custom_toolbar);
StatusBarCompat.compat(this, 0xFFFF4081);
}
}
| [
"yh_android@163.com"
] | yh_android@163.com |
b72b530d9ced7a0a35e43bf1a1e95ce2f3d0ea3e | cfd1a97c54103def99ff951beec7f2ba8cf4b244 | /src/test/java/com/git/DockerExample/DockerExampleApplicationTests.java | 25613c8d222fd00b6a8fc54b07e06ad32ad286fd | [] | no_license | kathelan/DockerSpringBoot | ab2d2f6ee6cc2da9e0a74b8c17f54af4ee20aade | 623dbd7d282c6beee218aa0d620bcad2b309060e | refs/heads/main | 2023-01-01T16:03:16.228986 | 2020-10-19T11:20:08 | 2020-10-19T11:20:08 | 305,334,560 | 0 | 0 | null | 2020-10-19T11:20:09 | 2020-10-19T09:41:14 | Java | UTF-8 | Java | false | false | 220 | java | package com.git.DockerExample;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class DockerExampleApplicationTests {
@Test
void contextLoads() {
}
}
| [
"mateuszdeptulski@gmail.com"
] | mateuszdeptulski@gmail.com |
99a1a7ee3bb825b090c49a0940e5e5784a93aa6b | 2eed091d3b097fd8b58411ff3cd451fc05fd2f95 | /src/main/xmladder/CommandHandler.java | 5e3b461ab762f4f7bfc0d3619f9010285f9efbf1 | [
"BSD-3-Clause"
] | permissive | QuickServerLab/QuickServer-Examples | 97e1f7f7464a9574477613177b84d9845b29701a | cb9eeaab06ba2aae5b887ae5c4c60f10a5dc404a | refs/heads/master | 2020-05-16T21:05:27.802125 | 2017-08-12T10:53:28 | 2017-08-12T10:53:28 | 13,041,454 | 14 | 9 | null | null | null | null | UTF-8 | Java | false | false | 3,079 | java | /*
* This file is part of the QuickServer library
* Copyright (C) 2003-2005 QuickServer.org
*
* Use, modification, copying and distribution of this software is subject to
* the terms and conditions of the GNU Lesser General Public License.
* You should have received a copy of the GNU LGP License along with this
* library; if not, you can download a copy from <http://www.quickserver.org/>.
*
* For questions, suggestions, bug-reports, enhancement-requests etc.
* visit http://www.quickserver.org
*
*/
package xmladder;
import java.net.*;
import java.io.*;
import org.quickserver.net.server.ClientCommandHandler;
import org.quickserver.net.server.ClientEventHandler;
import org.quickserver.net.server.ClientHandler;
import org.quickserver.net.server.DataMode;
import org.quickserver.net.server.DataType;
import java.util.logging.*;
public class CommandHandler implements ClientEventHandler, ClientCommandHandler {
private static Logger logger = Logger.getLogger(
CommandHandler.class.getName());
private final static String welcome = "<welcome name=\"XmlAdder v1.0\">"+
"\n"+"<note>Send <quit /> to close connection</note>";
//--ClientEventHandler
public void gotConnected(ClientHandler handler)
throws SocketTimeoutException, IOException {
logger.fine("Connection opened : "+handler.getHostAddress());
/*
//pick from xml
handler.setDataMode(DataMode.BYTE, DataType.IN);
handler.setDataMode(DataMode.BYTE, DataType.OUT);
*/
handler.sendClientBytes(welcome);
}
public void lostConnection(ClientHandler handler)
throws IOException {
logger.fine("Connection lost : "+handler.getHostAddress());
}
public void closingConnection(ClientHandler handler)
throws IOException {
handler.sendSystemMsg("Connection closed: "+handler.getHostAddress(), Level.FINE);
}
//--ClientEventHandler
public void handleCommand(ClientHandler handler, String command)
throws SocketTimeoutException, IOException {
AddNumberReq addNumberReq = null;
AddNumberRes addNumberRes = new AddNumberRes();
command = command.trim();
try {
if(command.equals("<quit />")) {
handler.sendClientBytes("<bye />");
handler.closeConnection();
return;
}
Data data = (Data)handler.getClientData();
data.addXmlPart(command);
String xmlToProcess = null;
while(true) {
xmlToProcess = data.getNextXML();
if(xmlToProcess==null)
break;
logger.fine("Got xml to process from data \n:"+xmlToProcess);
addNumberReq = AddNumberReq.fromXML(xmlToProcess);
if(addNumberReq==null) {
addNumberRes.setType("error");
addNumberRes.setValue("Bad XML Got!");
}
int a = addNumberReq.getNumberA();
int b = addNumberReq.getNumberB();
int c = a + b;
addNumberRes.setType("sum");
addNumberRes.setValue(""+c);
handler.sendClientBytes(addNumberRes.toXML());
}
} catch(IOException e) {
throw e;
} catch(Exception e) {
addNumberRes.setType("error");
addNumberRes.setValue("Exception : "+e);
handler.sendClientBytes(addNumberRes.toXML());
}
}
}
| [
"akshath@gmail.com"
] | akshath@gmail.com |
0a5ff307a002a661662961a991cc51a2d97b8f9f | cf010a7e0d59b506696809a750b0b9d463d2e45b | /src/was3/Rectangle.java | 410ec27bbb14a75b30062b3e060a68e271a723af | [] | no_license | qweq/WS_Java | 11674d88de72101a75b88fee126deaf7d865826f | 68ab86eea7532b33fef9a49f2cdd846a4d4096ab | refs/heads/master | 2021-08-30T09:41:39.896502 | 2017-12-17T09:05:39 | 2017-12-17T09:05:39 | 110,582,000 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,707 | java | package was3;
public class Rectangle {
private double edgeA;
private double edgeB;
private static int rectangles = 0;
Rectangle (double ab) { // kwadrat
if (rectangles < 5) {
this.edgeA = ab;
this.edgeB = ab;
System.out.println("Stworzono kwadrat o boku " + this.edgeA);
rectangles++;
} else {
System.out.println("Istnieje przecieลผ juลผ 5 prostokฤ
tรณw. Ileลผ moลผna?");
}
}
Rectangle (double a, double b) { // prostokฤ
t
if (rectangles < 5) {
this.edgeA = a;
this.edgeB = b;
System.out.println("Stworzono prostokฤ
t o bokach " + this.edgeA + " oraz " + this.edgeB);
rectangles++;
} else {
System.out.println("Istnieje przecieลผ juลผ 5 prostokฤ
tรณw. Ileลผ moลผna?");
}
}
public double getArea() {
return edgeA * edgeB;
}
public void modifyEdges(double deltaA, double deltaB) {
this.edgeA += deltaA;
this.edgeB += deltaB;
System.out.println("Zmieniono bok \"a\" o " + deltaA + " oraz bok \"b\" o " + deltaB);
}
public void fittingSquares(double edge) {
if (edge > edgeA || edge > edgeB) {
System.out.println("Tak duลผy kwadrat nie zmieลci siฤ w tym prostokฤ
cie!");
} else {
int result = (int) (Math.floor(edgeA / edge) * Math.floor(edgeB / edge)); // zaokrฤ
glamy w dรณล, bo liczymy caลe kwadraty
// ---------- deklinacja w j. polskim :P -----------
String kwadrat;
String moc;
switch (result % 10) { // ostatnia cyfra
case 1:
kwadrat = "caลy kwadrat";
moc = "moลผe";
break;
case 2:
case 3:
case 4:
kwadrat = "caลe kwadraty";
moc = "mogฤ
";
break;
default:
kwadrat = "caลych kwadratรณw";
moc = "moลผe";
break;
} // -----------------------------------------------
System.out.println("W tym prostokฤ
cie " + moc + " zmieลciฤ siฤ " + result + " " + kwadrat + " o boku " + edge);
}
}
public String toString() {
return "Prostokฤ
t o bokach " + edgeA + " i " + edgeB;
}
public double getEdgeA() {
return edgeA;
}
public void setEdgeA(double edgeA) {
this.edgeA = edgeA;
}
public double getEdgeB() {
return edgeB;
}
public void setEdgeB(double edgeB) {
this.edgeB = edgeB;
}
}
| [
"jakub.wolak2@gmail.com"
] | jakub.wolak2@gmail.com |
fb42600050edfce4d1ab9f22555429df782a6900 | c142e7a0135776be784df65cd1f432bb6614daf3 | /java-test/src/main/java/com/zhaofukai/thinkinjava/generics/Erased.java | a34c7651002c67a111be358f0d07551235259c22 | [] | no_license | qlans/practice | 2fae10a45da0ddde38271be1d0b5b77286c6aad6 | 44d8cf2d7ec50bd17ec5ff4e2289854836687fbf | refs/heads/master | 2022-06-26T14:21:36.876713 | 2015-12-14T13:07:42 | 2015-12-14T13:15:08 | 36,543,020 | 0 | 0 | null | 2022-06-14T09:30:34 | 2015-05-30T04:26:07 | Java | UTF-8 | Java | false | false | 467 | java | package com.zhaofukai.thinkinjava.generics;//: generics/Erased.java
// {CompileTimeError} (Won't compile)
public class Erased<T> {
private final int SIZE = 100;
public static void f(Object arg) {
// if (arg instanceof T) {
// } // Error
// T var = new T(); // Error
// T[] array = new T[SIZE]; // Error
// T[] array = (T) new Object[SIZE]; // Unchecked warning
}
} ///:~
| [
"zhaofukai@xiaomi.com"
] | zhaofukai@xiaomi.com |
885d77c2c4a04a824fce5c12094f8b5106c2f64c | 2db84972167879c1f6cf5ed85713d93fe2d710c2 | /projects/bookshopping_yaqub_e/src/main/java/az/developia/bookshopping_yaqub_e/file/StorageService.java | 60360b6018c6aef14e21683f9aa4980ee59d2231 | [] | no_license | YaqubAliyev4513/online-book-shopping-using-spring-mvc-and-ajax-steps-yaqub-e | 04ec54998ae30293cd9eb169e98c8989164a4ee5 | 53e44ba41ef53ff7a5e2fb89ae404cea18d42ae7 | refs/heads/main | 2023-03-16T23:01:32.814882 | 2021-02-12T16:54:11 | 2021-02-12T16:54:11 | 331,350,116 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 419 | java | package az.developia.bookshopping_yaqub_e.file;
import org.springframework.core.io.Resource;
import org.springframework.web.multipart.MultipartFile;
import java.nio.file.Path;
import java.util.stream.Stream;
public interface StorageService {
void init();
String store(MultipartFile file);
Stream<Path> loadAll();
Path load(String filename);
Resource loadAsResource(String filename);
void deleteAll();
}
| [
"yaqub00e4513@gmail.com"
] | yaqub00e4513@gmail.com |
a3bcce3b78f75d4dd74f30bd68d11669f183734d | c3a6b727f9e83910bb851325359f572aa04c3f28 | /EventUA/app/src/main/java/ua/pt/eventua/Adapters/GlobalSearchAdapter.java | 616e46cf83b22cc51fa3b4fbdaf39bc3be6a7a96 | [] | no_license | danielfbnunes/eventua | a6a8a2d5f503b3c44cd40ff96cdfe8891546d1cf | bb3cb0dec8b45fdb28566b40fa309b1011168903 | refs/heads/master | 2020-05-05T06:10:43.913518 | 2019-03-25T12:47:04 | 2019-03-25T12:47:04 | 179,778,447 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,517 | java | package ua.pt.eventua.Adapters;
import android.app.Activity;
import android.content.Context;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import com.bumptech.glide.Glide;
import java.util.ArrayList;
import ua.pt.eventua.Constants;
import ua.pt.eventua.Entities.Person;
import ua.pt.eventua.Entities.Talk;
import ua.pt.eventua.Fragments.ParticipantFragment;
import ua.pt.eventua.Fragments.TalkDetails;
import ua.pt.eventua.R;
public class GlobalSearchAdapter extends RecyclerView.Adapter<GlobalSearchAdapter.ViewHolder>
{
//Member variables.
private ArrayList<Object> eventsData;
private Context mContext;
private Activity mActivity;
public GlobalSearchAdapter(Context context, ArrayList<Object> eventsData, Activity mActivity) {
this.eventsData = eventsData;
this.mContext = context;
this.mActivity = mActivity;
}
public void setData(ArrayList<Object> eventsData){
this.eventsData =eventsData;
}
@Override
public GlobalSearchAdapter.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType)
{
return new ViewHolder(LayoutInflater.from(mContext).inflate(R.layout.speaker_item, parent, false));
}
public void onBindViewHolder(GlobalSearchAdapter.ViewHolder holder, int position) {
// Get current sport.
if(eventsData != null) {
Object currentEvent = eventsData.get(position);
// Populate the textviews with data.
holder.bindTo(currentEvent);
}
}
public int getItemCount() {
if(eventsData != null)
return eventsData.size();
else
return 0;
}
class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener
{
// Member Variables for the TextViews
private TextView textview;
private ImageView imageView;
private ImageView typeView;
public ViewHolder(View itemView)
{
super(itemView);
// Initialize the views.
textview = itemView.findViewById(R.id.speaker);
imageView = itemView.findViewById(R.id.speakerImage);
typeView = itemView.findViewById(R.id.type);
// Set the OnClickListener to the entire view.
itemView.setOnClickListener(this);
}
void bindTo(Object o){
if(o instanceof Person)
{
textview.setText(((Person)o).getName());
Glide.with(mContext).load(((Person)o).getImageResource()).into(imageView);
if(((Person)o).getPersonType() == Person.PersonType.SPEAKER) {
typeView.setImageResource(R.drawable.ic_speaker_person);
}
else
typeView.setImageResource(R.drawable.ic_participant);
}
else if(o instanceof Talk)
{
textview.setText(((Talk)o).getTitle());
textview.setTextAlignment(View.TEXT_ALIGNMENT_TEXT_START);
Glide.with(mContext).load(((Talk)o).getImageResource()).into(imageView);
typeView.setImageResource(R.drawable.ic_talk);
}
}
public void onClick(View view)
{
Object o = eventsData.get(getAdapterPosition());
if( o instanceof Person)
{
Person p = (Person) eventsData.get(getAdapterPosition());
ParticipantFragment eventFrag = new ParticipantFragment().initializeData(p);
AppCompatActivity activity = (AppCompatActivity) view.getContext();
activity.getSupportFragmentManager().beginTransaction().replace(R.id.content_frame, eventFrag).addToBackStack(null).commit();
}
else if( o instanceof Talk)
{
Talk currentEvent = (Talk) eventsData.get(getAdapterPosition());
Constants.CURRENT_TALK = currentEvent;
TalkDetails eventFrag = new TalkDetails().initializeData(currentEvent);
AppCompatActivity activity = (AppCompatActivity) view.getContext();
activity.getSupportFragmentManager().beginTransaction().replace(R.id.content_frame, eventFrag).addToBackStack(null).commit();
}
}
}
}
| [
"danielnunes98@ua.pt"
] | danielnunes98@ua.pt |
ef9eba5f35c16648743766b5ec7f33ed69e30343 | b552bc0a17288f3a37343e242f5cf4936eb233d0 | /app/src/main/java/com/you/cauchy/net/course/TotalCourseTask.java | 367b68338e795ab2b0f22a85b57ad0f18f054be5 | [] | no_license | Cantabilev/CauchyAndroid | 3dbc97bb904a0c0751cefc76b9098931b653ce1c | 5e32d98482e0d04e7f42993066c01793d6127957 | refs/heads/master | 2020-05-30T23:43:06.961917 | 2019-06-03T14:27:12 | 2019-06-03T14:27:12 | 190,021,538 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 598 | java | package com.you.cauchy.net.course;
import com.you.cauchy.net.AbsCustomTask;
import com.you.cauchy.util.Preferences;
import com.zhy.http.okhttp.OkHttpUtils;
public class TotalCourseTask extends AbsCustomTask {
@Override
public <Params> void execute(Params params) {
}
@Override
public <Params> void execute(Params... params) {
OkHttpUtils
.get()
.url(URL + "/api/courseCodeInstance/getTotalCourse")
.addHeader(CAUCHYSSO, Preferences.getToken())
.build()
.execute(restCallback);
}
}
| [
"1269859055@qq.com"
] | 1269859055@qq.com |
1ed4f7fbe090ee2852c4244b4c89cd576792627a | e30fdae1c324be7523347327ee2976d8d777fdf3 | /src/main/java/com/mayab/calidad/doubles/SubDependency.java | 13f2c9f81a729a60b67f8b71fc4ae8e9ab2758f9 | [] | no_license | IvannaNouel/Ordinario | 032f94ccdd2b63b2a1a09f937907ff414addf1f4 | 611505b20c7a6a42d5cbb63855d61c19114ec684 | refs/heads/main | 2023-01-19T20:56:07.580340 | 2020-12-01T04:32:33 | 2020-12-01T04:32:33 | 317,061,343 | 0 | 1 | null | 2020-12-01T01:28:38 | 2020-11-29T23:10:18 | Java | UTF-8 | Java | false | false | 144 | java | package com.mayab.calidad.doubles;
public class SubDependency {
public String getClassName()
{
return this.getClass().getSimpleName();
}
}
| [
"melissapuerto@hotmail.com"
] | melissapuerto@hotmail.com |
b7f832ef07e50eea6d2e60c38e68cc65fc45dc5d | c9c0280cc75a3fd4e2d871d05ba3329dac5cc8dd | /src/main/java/io/mycat/backend/mysql/xa/recovery/DeserialisationException.java | 1db71b8a91ab8e8947c0ed5374e1c047c7e591a7 | [] | no_license | changsongyang/Mycat_plus | 775fd03b7529bb3ee8a889911b17ce5c6cd91ae3 | 79659d6017d092f6ec622952f49948603f40a36e | refs/heads/master | 2022-01-06T02:56:55.838798 | 2018-08-26T05:59:16 | 2018-08-26T05:59:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 320 | java | package io.mycat.backend.mysql.xa.recovery;
/**
* Created by zhangchao on 2016/10/17.
*/
public class DeserialisationException extends Exception{
private static final long serialVersionUID = -3835526236269555460L;
public DeserialisationException(String content) {
super(content);
}
}
| [
"lingxuanczp@guoxiaomei.comโโโ"
] | lingxuanczp@guoxiaomei.comโโโ |
b5b3f921438ddbde6999b473aca214e5c021acef | 933abe20140a8d7b0450292e5d206e77ec07cfd9 | /src/main/java/com/rsupport/homework/web/IndexController.java | 1f82e6b6dd9c8f576b404f8860846e4b4dd8c828 | [] | no_license | SungwooSon/homework | 76c6e7af8f8534ac63e40bf00356439c4084c86e | cd2d1f8fa842cf4c732d3c1ca81cd9f562216477 | refs/heads/master | 2023-08-24T11:35:11.039636 | 2021-09-16T20:29:24 | 2021-09-16T20:29:24 | 407,274,313 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,517 | java | package com.rsupport.homework.web;
import com.rsupport.homework.service.NoticesService;
import com.rsupport.homework.web.dto.NoticesResponseDto;
import lombok.RequiredArgsConstructor;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
import org.springframework.data.web.PageableDefault;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
@RequiredArgsConstructor
@Controller
public class IndexController {
private final NoticesService noticesService;
@GetMapping("/")
public String index(Model model, @PageableDefault(size = 10, sort = "id", direction = Sort.Direction.DESC) Pageable pageable) {
model.addAttribute("notices", noticesService.findAllDescPaging(pageable));
model.addAttribute("check", noticesService.getListCheck(pageable));
model.addAttribute("previous", pageable.previousOrFirst().getPageNumber());
model.addAttribute("next", pageable.next().getPageNumber());
return "index";
}
@GetMapping("/notices/save")
public String noticesSave() {
return "notices-save";
}
@GetMapping("/notices/update/{id}")
public String noticesUpdate(@PathVariable Long id, Model model) {
NoticesResponseDto dto = noticesService.findById(id);
model.addAttribute("notice", dto);
return "notices-update";
}
}
| [
"ssw890418@gmail.com"
] | ssw890418@gmail.com |
140daa7cfac561620da9a3564e7fa3d894e0c416 | 950c7ed4ac7e0dd1f0b69f7a3bb96eb595b7452d | /src/AbstractClassExercise/Figura.java | 7c37ea53c768468a62e0b2b38a99861368ad9972 | [] | no_license | pelass1987/Java_Exercise | a2b7b5371daf4a2e6d67f30eff57ce4fbcd33baa | ed5c3116edd10fa5de41f7dd735885a288a88222 | refs/heads/master | 2023-04-02T09:00:39.683142 | 2021-04-02T06:53:20 | 2021-04-02T06:53:20 | 351,012,445 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 481 | java | package AbstractClassExercise;
abstract class Figura {
public int site;
public Colors colors;
public abstract double getArea();
public abstract double getPerimeter();
public String switchColor() {
switch (colors) {
case GREEN:
return "#v34354";
case BLUE:
return "#djrg56";
case RED:
return "#ff0000";
}
return String.valueOf(colors);
}
}
| [
"dawid.pelka@webanywhere.co.uk"
] | dawid.pelka@webanywhere.co.uk |
158152071c8d429e0ccbd28c3292f3786a367001 | 0eec80b5a371063c32871de9475ad6966c6b212d | /src/main/java/com/epam/cdp/module4/homework1/service/DataLoaderForMapStorage.java | 92160ea2985f91408dce5ca09c7ad4939ddb41a4 | [] | no_license | artyomSorokin/Spring-Web | 432d8a54ccda42d6ebf79930e151d2077d4687bc | e00046ef119577f1abd4bd7396d8c5369b3d44da | refs/heads/master | 2022-11-28T04:58:09.544788 | 2020-08-07T07:48:29 | 2020-08-07T07:48:29 | 285,770,198 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,288 | java | package com.epam.cdp.module4.homework1.service;
import com.epam.cdp.module4.homework1.entity.AbstractEntity;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.config.BeanPostProcessor;
import org.springframework.util.ResourceUtils;
import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.List;
import java.util.Map;
import java.util.Objects;
@Slf4j
public class DataLoaderForMapStorage implements BeanPostProcessor {
private String payloadFileName;
private String datePattern;
private Map<String, Class> entityClassMap;
@Override
public Object postProcessAfterInitialization(Object bean, String beanName) {
if (bean instanceof Map && Objects.equals(beanName, "storage")) {
try {
initStorageMap((Map<String, Object>) bean);
} catch (IOException e) {
log.error("Could not initialize storage", e);
}
}
return bean;
}
private void initStorageMap(Map<String, Object> storage) throws IOException {
ObjectMapper mapper = new ObjectMapper();
mapper.setDateFormat(new SimpleDateFormat(datePattern));
File payloadFile = ResourceUtils.getFile("classpath:" + payloadFileName);
Map<String, List<Object>> entityMap = mapper.readValue(payloadFile, new TypeReference<Map<String, List<Object>>>() {
});
entityMap.forEach((key, values) -> {
Class currentEntityClass = entityClassMap.get(key);
values.forEach(value -> {
AbstractEntity entity = (AbstractEntity) mapper.convertValue(value, currentEntityClass);
String modifiedKey = String.format("%s:%s", key, entity.getId());
storage.put(modifiedKey, entity);
});
});
}
public void setPayloadFileName(String payloadFileName) {
this.payloadFileName = payloadFileName;
}
public void setDatePattern(String datePattern) {
this.datePattern = datePattern;
}
public void setEntityClassMap(Map<String, Class> entityClassMap) {
this.entityClassMap = entityClassMap;
}
}
| [
"artem_sorokin@epam.com"
] | artem_sorokin@epam.com |
86b7fed03fff4160e05254ceee43e98cf55a91cc | 45b5b0301a38b39bd61e74a42dce1a71fa39e293 | /stratosim/src/main/java/com/stratosim/server/persistence/converter/PKeyConverterImpl.java | f2436dfb44ba411127748df7a2b8366bcf732b1b | [] | no_license | josh-newman/stratosim | 183949a9f50bef1417d6572cc777a61bb7e15a84 | 188e13d6f7c23f6b935a49b29261852d09a452f3 | refs/heads/master | 2021-04-27T04:51:46.679352 | 2013-07-21T02:30:07 | 2013-07-21T02:30:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,025 | java | package com.stratosim.server.persistence.converter;
import com.stratosim.server.algorithm.InvertibleFunction;
import com.stratosim.server.persistence.schema.Kind;
import com.stratosim.server.persistence.schema.PKey;
import com.stratosim.shared.filemodel.StratoSimKey;
/**
* Convert internal keys to external ones.
*
* @param <K> The kind type that defines the key.
* @param <E> The external key type.
*/
abstract class PKeyConverterImpl<K extends Kind<K>, E extends StratoSimKey>
implements
PKeyConverter<K, E> {
private final InvertibleFunction<String, String> function;
protected PKeyConverterImpl(InvertibleFunction<String, String> function) {
this.function = function;
}
protected abstract E newExternalKey(String key);
@Override
public E toExternal(PKey<K> pkey) {
String f = function.forward(pkey.getAsString());
return newExternalKey(f);
}
@Override
public PKey<K> toInternal(E ekey) {
String b = function.reverse(ekey.get());
return new PKey<K>(b);
}
}
| [
"josh@stratosim.com"
] | josh@stratosim.com |
7ffcf97ca72c773d2f171f6f19cc28b321b29f7a | 0af8b92686a58eb0b64e319b22411432aca7a8f3 | /single-large-project/src/test/java/org/gradle/test/performancenull_378/Testnull_37726.java | 12a2c4b825c4c829583bb7567bedc48b7e5d890d | [] | no_license | gradle/performance-comparisons | b0d38db37c326e0ce271abebdb3c91769b860799 | e53dc7182fafcf9fedf07920cbbea8b40ee4eef4 | refs/heads/master | 2023-08-14T19:24:39.164276 | 2022-11-24T05:18:33 | 2022-11-24T05:18:33 | 80,121,268 | 17 | 15 | null | 2022-09-30T08:04:35 | 2017-01-26T14:25:33 | null | UTF-8 | Java | false | false | 308 | java | package org.gradle.test.performancenull_378;
import static org.junit.Assert.*;
public class Testnull_37726 {
private final Productionnull_37726 production = new Productionnull_37726("value");
@org.junit.Test
public void test() {
assertEquals(production.getProperty(), "value");
}
} | [
"cedric.champeau@gmail.com"
] | cedric.champeau@gmail.com |
8956fe42942cb883d7c0081a04f637a81e81aee0 | bfe155212b1958a47c339de502bee1f8da209981 | /lib-core/src/main/java/com/leeiidesu/libcore/charset/Base64.java | c8fa4102b426f68142eb1e838ce2ac1956bc0f9e | [] | no_license | luckykarl/LeeFream | fe247fbd364275414df918c57377d1a4680a0693 | 655d88877ca3483dd2224ae0d5820898a2b98f4a | refs/heads/master | 2020-03-09T17:53:13.715524 | 2017-09-18T01:45:08 | 2017-09-18T01:45:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 28,629 | java | /*
* Copyright (C) 2010 The Android Open Source Project
*
* 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.leeiidesu.libcore.charset;
import java.io.UnsupportedEncodingException;
/**
* Utilities for encoding and decoding the Base64 representation of
* binary data. See RFCs <a
* href="http://www.ietf.org/rfc/rfc2045.txt">2045</a> and <a
* href="http://www.ietf.org/rfc/rfc3548.txt">3548</a>.
*/
public class Base64 {
/**
* Default values for encoder/decoder flags.
*/
public static final int DEFAULT = 0;
/**
* Encoder flag bit to omit the padding '=' characters at the end
* of the output (if any).
*/
public static final int NO_PADDING = 1;
/**
* Encoder flag bit to omit all line terminators (i.e., the output
* will be on one long line).
*/
public static final int NO_WRAP = 2;
/**
* Encoder flag bit to indicate lines should be terminated with a
* CRLF pair instead of just an LF. Has no effect if {@code
* NO_WRAP} is specified as well.
*/
public static final int CRLF = 4;
/**
* Encoder/decoder flag bit to indicate using the "URL and
* filename safe" variant of Base64 (see RFC 3548 section 4) where
* {@code -} and {@code _} are used in place of {@code +} and
* {@code /}.
*/
public static final int URL_SAFE = 8;
/**
* Flag to pass to {@link android.util.Base64OutputStream} to indicate that it
* should not close the output stream it is wrapping when it
* itself is closed.
*/
public static final int NO_CLOSE = 16;
// --------------------------------------------------------
// shared code
// --------------------------------------------------------
/* package */ static abstract class Coder {
public byte[] output;
public int op;
/**
* Encode/decode another block of input data. this.output is
* provided by the caller, and must be big enough to hold all
* the coded data. On exit, this.opwill be set to the length
* of the coded data.
*
* @param finish true if this is the final call to process for
* this object. Will finalize the coder state and
* include any final bytes in the output.
*
* @return true if the input so far is good; false if some
* error has been detected in the input stream..
*/
public abstract boolean process(byte[] input, int offset, int len, boolean finish);
/**
* @return the maximum number of bytes a call to process()
* could produce for the given number of input bytes. This may
* be an overestimate.
*/
public abstract int maxOutputSize(int len);
}
// --------------------------------------------------------
// decoding
// --------------------------------------------------------
/**
* Decode the Base64-encoded data in input and return the data in
* a new byte array.
*
* <p>The padding '=' characters at the end are considered optional, but
* if any are present, there must be the correct number of them.
*
* @param str the input String to decode, which is converted to
* bytes using the default charset
* @param flags controls certain features of the decoded output.
* Pass {@code DEFAULT} to decode standard Base64.
*
* @throws IllegalArgumentException if the input contains
* incorrect padding
*/
public static byte[] decode(String str, int flags) {
return decode(str.getBytes(), flags);
}
/**
* Decode the Base64-encoded data in input and return the data in
* a new byte array.
*
* <p>The padding '=' characters at the end are considered optional, but
* if any are present, there must be the correct number of them.
*
* @param input the input array to decode
* @param flags controls certain features of the decoded output.
* Pass {@code DEFAULT} to decode standard Base64.
*
* @throws IllegalArgumentException if the input contains
* incorrect padding
*/
public static byte[] decode(byte[] input, int flags) {
return decode(input, 0, input.length, flags);
}
/**
* Decode the Base64-encoded data in input and return the data in
* a new byte array.
*
* <p>The padding '=' characters at the end are considered optional, but
* if any are present, there must be the correct number of them.
*
* @param input the data to decode
* @param offset the position within the input array at which to start
* @param len the number of bytes of input to decode
* @param flags controls certain features of the decoded output.
* Pass {@code DEFAULT} to decode standard Base64.
*
* @throws IllegalArgumentException if the input contains
* incorrect padding
*/
public static byte[] decode(byte[] input, int offset, int len, int flags) {
// Allocate space for the most data the input could represent.
// (It could contain less if it contains whitespace, etc.)
Decoder decoder = new Decoder(flags, new byte[len*3/4]);
if (!decoder.process(input, offset, len, true)) {
throw new IllegalArgumentException("bad base-64");
}
// Maybe we got lucky and allocated exactly enough output space.
if (decoder.op == decoder.output.length) {
return decoder.output;
}
// Need to shorten the array, so allocate a new one of the
// right size and copy.
byte[] temp = new byte[decoder.op];
System.arraycopy(decoder.output, 0, temp, 0, decoder.op);
return temp;
}
/* package */ static class Decoder extends Coder {
/**
* Lookup table for turning bytes into their position in the
* Base64 alphabet.
*/
private static final int DECODE[] = {
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63,
52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -2, -1, -1,
-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
-1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
};
/**
* Decode lookup table for the "web safe" variant (RFC 3548
* sec. 4) where - and _ replace + and /.
*/
private static final int DECODE_WEBSAFE[] = {
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1,
52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -2, -1, -1,
-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, 63,
-1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
};
/** Non-data values in the DECODE arrays. */
private static final int SKIP = -1;
private static final int EQUALS = -2;
/**
* States 0-3 are reading through the next input tuple.
* State 4 is having read one '=' and expecting exactly
* one more.
* State 5 is expecting no more data or padding characters
* in the input.
* State 6 is the error state; an error has been detected
* in the input and no future input can "fix" it.
*/
private int state; // state number (0 to 6)
private int value;
final private int[] alphabet;
public Decoder(int flags, byte[] output) {
this.output = output;
alphabet = ((flags & URL_SAFE) == 0) ? DECODE : DECODE_WEBSAFE;
state = 0;
value = 0;
}
/**
* @return an overestimate for the number of bytes {@code
* len} bytes could decode to.
*/
public int maxOutputSize(int len) {
return len * 3/4 + 10;
}
/**
* Decode another block of input data.
*
* @return true if the state machine is still healthy. false if
* bad base-64 data has been detected in the input stream.
*/
public boolean process(byte[] input, int offset, int len, boolean finish) {
if (this.state == 6) return false;
int p = offset;
len += offset;
// Using local variables makes the decoder about 12%
// faster than if we manipulate the member variables in
// the loop. (Even alphabet makes a measurable
// difference, which is somewhat surprising to me since
// the member variable is final.)
int state = this.state;
int value = this.value;
int op = 0;
final byte[] output = this.output;
final int[] alphabet = this.alphabet;
while (p < len) {
// Try the fast path: we're starting a new tuple and the
// next four bytes of the input stream are all data
// bytes. This corresponds to going through states
// 0-1-2-3-0. We expect to use this method for most of
// the data.
//
// If any of the next four bytes of input are non-data
// (whitespace, etc.), value will end up negative. (All
// the non-data values in decode are small negative
// numbers, so shifting any of them up and or'ing them
// together will result in a value with its top bit set.)
//
// You can remove this whole block and the output should
// be the same, just slower.
if (state == 0) {
while (p+4 <= len &&
(value = ((alphabet[input[p] & 0xff] << 18) |
(alphabet[input[p+1] & 0xff] << 12) |
(alphabet[input[p+2] & 0xff] << 6) |
(alphabet[input[p+3] & 0xff]))) >= 0) {
output[op+2] = (byte) value;
output[op+1] = (byte) (value >> 8);
output[op] = (byte) (value >> 16);
op += 3;
p += 4;
}
if (p >= len) break;
}
// The fast path isn't available -- either we've read a
// partial tuple, or the next four input bytes aren't all
// data, or whatever. Fall back to the slower state
// machine implementation.
int d = alphabet[input[p++] & 0xff];
switch (state) {
case 0:
if (d >= 0) {
value = d;
++state;
} else if (d != SKIP) {
this.state = 6;
return false;
}
break;
case 1:
if (d >= 0) {
value = (value << 6) | d;
++state;
} else if (d != SKIP) {
this.state = 6;
return false;
}
break;
case 2:
if (d >= 0) {
value = (value << 6) | d;
++state;
} else if (d == EQUALS) {
// Emit the last (partial) output tuple;
// expect exactly one more padding character.
output[op++] = (byte) (value >> 4);
state = 4;
} else if (d != SKIP) {
this.state = 6;
return false;
}
break;
case 3:
if (d >= 0) {
// Emit the output triple and return to state 0.
value = (value << 6) | d;
output[op+2] = (byte) value;
output[op+1] = (byte) (value >> 8);
output[op] = (byte) (value >> 16);
op += 3;
state = 0;
} else if (d == EQUALS) {
// Emit the last (partial) output tuple;
// expect no further data or padding characters.
output[op+1] = (byte) (value >> 2);
output[op] = (byte) (value >> 10);
op += 2;
state = 5;
} else if (d != SKIP) {
this.state = 6;
return false;
}
break;
case 4:
if (d == EQUALS) {
++state;
} else if (d != SKIP) {
this.state = 6;
return false;
}
break;
case 5:
if (d != SKIP) {
this.state = 6;
return false;
}
break;
}
}
if (!finish) {
// We're out of input, but a future call could provide
// more.
this.state = state;
this.value = value;
this.op = op;
return true;
}
// Done reading input. Now figure out where we are left in
// the state machine and finish up.
switch (state) {
case 0:
// Output length is a multiple of three. Fine.
break;
case 1:
// Read one extra input byte, which isn't enough to
// make another output byte. Illegal.
this.state = 6;
return false;
case 2:
// Read two extra input bytes, enough to emit 1 more
// output byte. Fine.
output[op++] = (byte) (value >> 4);
break;
case 3:
// Read three extra input bytes, enough to emit 2 more
// output bytes. Fine.
output[op++] = (byte) (value >> 10);
output[op++] = (byte) (value >> 2);
break;
case 4:
// Read one padding '=' when we expected 2. Illegal.
this.state = 6;
return false;
case 5:
// Read all the padding '='s we expected and no more.
// Fine.
break;
}
this.state = state;
this.op = op;
return true;
}
}
// --------------------------------------------------------
// encoding
// --------------------------------------------------------
/**
* Base64-encode the given data and return a newly allocated
* String with the result.
*
* @param input the data to encode
* @param flags controls certain features of the encoded output.
* Passing {@code DEFAULT} results in output that
* adheres to RFC 2045.
*/
public static String encodeToString(byte[] input, int flags) {
try {
return new String(encode(input, flags), "US-ASCII");
} catch (UnsupportedEncodingException e) {
// US-ASCII is guaranteed to be available.
throw new AssertionError(e);
}
}
/**
* Base64-encode the given data and return a newly allocated
* String with the result.
*
* @param input the data to encode
* @param offset the position within the input array at which to
* start
* @param len the number of bytes of input to encode
* @param flags controls certain features of the encoded output.
* Passing {@code DEFAULT} results in output that
* adheres to RFC 2045.
*/
public static String encodeToString(byte[] input, int offset, int len, int flags) {
try {
return new String(encode(input, offset, len, flags), "US-ASCII");
} catch (UnsupportedEncodingException e) {
// US-ASCII is guaranteed to be available.
throw new AssertionError(e);
}
}
/**
* Base64-encode the given data and return a newly allocated
* byte[] with the result.
*
* @param input the data to encode
* @param flags controls certain features of the encoded output.
* Passing {@code DEFAULT} results in output that
* adheres to RFC 2045.
*/
public static byte[] encode(byte[] input, int flags) {
return encode(input, 0, input.length, flags);
}
/**
* Base64-encode the given data and return a newly allocated
* byte[] with the result.
*
* @param input the data to encode
* @param offset the position within the input array at which to
* start
* @param len the number of bytes of input to encode
* @param flags controls certain features of the encoded output.
* Passing {@code DEFAULT} results in output that
* adheres to RFC 2045.
*/
public static byte[] encode(byte[] input, int offset, int len, int flags) {
Encoder encoder = new Encoder(flags, null);
// Compute the exact length of the array we will produce.
int output_len = len / 3 * 4;
// Account for the tail of the data and the padding bytes, if any.
if (encoder.do_padding) {
if (len % 3 > 0) {
output_len += 4;
}
} else {
switch (len % 3) {
case 0: break;
case 1: output_len += 2; break;
case 2: output_len += 3; break;
}
}
// Account for the newlines, if any.
if (encoder.do_newline && len > 0) {
output_len += (((len-1) / (3 * Encoder.LINE_GROUPS)) + 1) *
(encoder.do_cr ? 2 : 1);
}
encoder.output = new byte[output_len];
encoder.process(input, offset, len, true);
assert encoder.op == output_len;
return encoder.output;
}
/* package */ static class Encoder extends Coder {
/**
* Emit a new line every this many output tuples. Corresponds to
* a 76-character line length (the maximum allowable according to
* <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>).
*/
public static final int LINE_GROUPS = 19;
/**
* Lookup table for turning Base64 alphabet positions (6 bits)
* into output bytes.
*/
private static final byte ENCODE[] = {
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/',
};
/**
* Lookup table for turning Base64 alphabet positions (6 bits)
* into output bytes.
*/
private static final byte ENCODE_WEBSAFE[] = {
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', '_',
};
final private byte[] tail;
/* package */ int tailLen;
private int count;
final public boolean do_padding;
final public boolean do_newline;
final public boolean do_cr;
final private byte[] alphabet;
public Encoder(int flags, byte[] output) {
this.output = output;
do_padding = (flags & NO_PADDING) == 0;
do_newline = (flags & NO_WRAP) == 0;
do_cr = (flags & CRLF) != 0;
alphabet = ((flags & URL_SAFE) == 0) ? ENCODE : ENCODE_WEBSAFE;
tail = new byte[2];
tailLen = 0;
count = do_newline ? LINE_GROUPS : -1;
}
/**
* @return an overestimate for the number of bytes {@code
* len} bytes could encode to.
*/
public int maxOutputSize(int len) {
return len * 8/5 + 10;
}
public boolean process(byte[] input, int offset, int len, boolean finish) {
// Using local variables makes the encoder about 9% faster.
final byte[] alphabet = this.alphabet;
final byte[] output = this.output;
int op = 0;
int count = this.count;
int p = offset;
len += offset;
int v = -1;
// First we need to concatenate the tail of the previous call
// with any input bytes available now and see if we can empty
// the tail.
switch (tailLen) {
case 0:
// There was no tail.
break;
case 1:
if (p+2 <= len) {
// A 1-byte tail with at least 2 bytes of
// input available now.
v = ((tail[0] & 0xff) << 16) |
((input[p++] & 0xff) << 8) |
(input[p++] & 0xff);
tailLen = 0;
};
break;
case 2:
if (p+1 <= len) {
// A 2-byte tail with at least 1 byte of input.
v = ((tail[0] & 0xff) << 16) |
((tail[1] & 0xff) << 8) |
(input[p++] & 0xff);
tailLen = 0;
}
break;
}
if (v != -1) {
output[op++] = alphabet[(v >> 18) & 0x3f];
output[op++] = alphabet[(v >> 12) & 0x3f];
output[op++] = alphabet[(v >> 6) & 0x3f];
output[op++] = alphabet[v & 0x3f];
if (--count == 0) {
if (do_cr) output[op++] = '\r';
output[op++] = '\n';
count = LINE_GROUPS;
}
}
// At this point either there is no tail, or there are fewer
// than 3 bytes of input available.
// The main loop, turning 3 input bytes into 4 output bytes on
// each iteration.
while (p+3 <= len) {
v = ((input[p] & 0xff) << 16) |
((input[p+1] & 0xff) << 8) |
(input[p+2] & 0xff);
output[op] = alphabet[(v >> 18) & 0x3f];
output[op+1] = alphabet[(v >> 12) & 0x3f];
output[op+2] = alphabet[(v >> 6) & 0x3f];
output[op+3] = alphabet[v & 0x3f];
p += 3;
op += 4;
if (--count == 0) {
if (do_cr) output[op++] = '\r';
output[op++] = '\n';
count = LINE_GROUPS;
}
}
if (finish) {
// Finish up the tail of the input. Note that we need to
// consume any bytes in tail before any bytes
// remaining in input; there should be at most two bytes
// total.
if (p-tailLen == len-1) {
int t = 0;
v = ((tailLen > 0 ? tail[t++] : input[p++]) & 0xff) << 4;
tailLen -= t;
output[op++] = alphabet[(v >> 6) & 0x3f];
output[op++] = alphabet[v & 0x3f];
if (do_padding) {
output[op++] = '=';
output[op++] = '=';
}
if (do_newline) {
if (do_cr) output[op++] = '\r';
output[op++] = '\n';
}
} else if (p-tailLen == len-2) {
int t = 0;
v = (((tailLen > 1 ? tail[t++] : input[p++]) & 0xff) << 10) |
(((tailLen > 0 ? tail[t++] : input[p++]) & 0xff) << 2);
tailLen -= t;
output[op++] = alphabet[(v >> 12) & 0x3f];
output[op++] = alphabet[(v >> 6) & 0x3f];
output[op++] = alphabet[v & 0x3f];
if (do_padding) {
output[op++] = '=';
}
if (do_newline) {
if (do_cr) output[op++] = '\r';
output[op++] = '\n';
}
} else if (do_newline && op > 0 && count != LINE_GROUPS) {
if (do_cr) output[op++] = '\r';
output[op++] = '\n';
}
assert tailLen == 0;
assert p == len;
} else {
// Save the leftovers in tail to be consumed on the next
// call to encodeInternal.
if (p == len-1) {
tail[tailLen++] = input[p];
} else if (p == len-2) {
tail[tailLen++] = input[p];
tail[tailLen++] = input[p+1];
}
}
this.op = op;
this.count = count;
return true;
}
}
private Base64() { } // don't instantiate
}
| [
"leeiidesu@gmail.com"
] | leeiidesu@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.