blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
410
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
51
| license_type
stringclasses 2
values | repo_name
stringlengths 5
132
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
80
| visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 5.85k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 131
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
9.45M
| extension
stringclasses 32
values | content
stringlengths 3
9.45M
| authors
listlengths 1
1
| author_id
stringlengths 0
313
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
586384fd129db6a886ce0aa18673f566878a1aa0 | cee63db21abf9a7b7d443b791382762836fbbe51 | /src/edu/hm/jeyachaneggers/ss2015/se2/praktikum/lab06/tracer/Reflexion.java | 705760488241b50f7f6b602e185fac5c91c91c2d | [
"MIT"
]
| permissive | michaeleggers/JTracer | 3e9c8ab3891ae78415bf8f11aedea33965fffec5 | 563c24ae34c239c26cfc881ab1508fae2eb2a085 | refs/heads/master | 2021-01-19T09:02:59.758449 | 2017-04-09T15:26:05 | 2017-04-09T15:26:05 | 87,716,651 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,500 | java | package edu.hm.jeyachaneggers.ss2015.se2.praktikum.lab06.tracer;
import java.util.Optional;
import edu.hm.jeyachaneggers.ss2015.se2.praktikum.lab06.geometry.Ray;
import edu.hm.jeyachaneggers.ss2015.se2.praktikum.lab06.scene.Scene;
import edu.hm.jeyachaneggers.ss2015.se2.praktikum.lab06.scene.primitive.Intersection;
import edu.hm.jeyachaneggers.ss2015.se2.praktikum.lab06.scene.primitive.Surface.Property;
/**
* The reflexion light model computes surfaces that reflect other surfaces.
*
* @author Michael Eggers, [email protected]
* @author Vithya Jeyachandran, [email protected]
*
* @version 04.06.2015 16:01:57
*/
public class Reflexion implements LightModel{
/** Threshold value. If a ray weights below this value the recursion will be stopped. */
private static final int THRESHOLD = 256;
/** A tacer object is needed to start the recursion. */
private final Raytracer tracer;
/** Needed to compute the reflection ray and to get actual ray weight. */
private final Ray ray;
/**
* A reflexion always needs the ray that shall be reflected on a surface.
* Also a Raytracer object is required to start a recursion.
*
* @param ray Ray that is (maybe) reflected.
* @param tracer Actual raytracer.
*/
Reflexion(final Ray ray, final Raytracer tracer){
this.ray = ray;
this.tracer = tracer;
}
public Raytracer getTracer() {
return tracer;
}
public Ray getRay() {
return ray;
}
@Override
public double calculate(final Scene scene, final Optional<Intersection> intersection){
if(!intersection.isPresent())
return 0;
// Is enum property r > 0? If so we can continue, otherwise there will be no relfexion contribution to the pixel.
final double reflexionRatio = intersection.get().getSurface().get(Property.ReflexionRatio);
if(reflexionRatio == 0)
return 0;
// Compute weight for the potential new reflected ray.
final Ray actualRay = getRay();
final double actualRayWeight = actualRay.getMaxWeight();
final double newRayWeight = actualRayWeight * reflexionRatio;
// If the new rays weight is below a threshold value, we stop the recursion. Without this test the recursion would never stop.
if(newRayWeight <= 1/THRESHOLD)
return 0;
// Compute reflected ray and set its new weight.
final Ray reflectionRay = reflectRay(intersection, actualRay);
reflectionRay.setMaxWeight(newRayWeight);
// Now pursue the reflected ray (again). The recursion starts here.
return getTracer().trace(reflectionRay);
}
}
| [
"[email protected]"
]
| |
1f46eec9fea38c5222b09137a9e1733be4049da5 | 30812995bf4d809300ed49d60e824f97d9088651 | /src/main/java/com/yzg/blogweb/pojo/CategoryExample.java | 7b9d8d64132ca9e94e03fcf4cf30f5287189a7f2 | []
| no_license | guang124/blogweb | 9993e805908b82db24c649e0a9428a4213197bed | 1decb0f83e051dc0d812b3644b6065b02613fc5e | refs/heads/master | 2020-04-12T18:19:51.304060 | 2018-12-23T09:13:24 | 2018-12-23T09:13:24 | 162,675,854 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,009 | java | package com.yzg.blogweb.pojo;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class CategoryExample {
protected String orderByClause;
protected boolean distinct;
protected List<Criteria> oredCriteria;
public CategoryExample() {
oredCriteria = new ArrayList<Criteria>();
}
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
public String getOrderByClause() {
return orderByClause;
}
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
public boolean isDistinct() {
return distinct;
}
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andIdIsNull() {
addCriterion("id is null");
return (Criteria) this;
}
public Criteria andIdIsNotNull() {
addCriterion("id is not null");
return (Criteria) this;
}
public Criteria andIdEqualTo(Long value) {
addCriterion("id =", value, "id");
return (Criteria) this;
}
public Criteria andIdNotEqualTo(Long value) {
addCriterion("id <>", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThan(Long value) {
addCriterion("id >", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThanOrEqualTo(Long value) {
addCriterion("id >=", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThan(Long value) {
addCriterion("id <", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThanOrEqualTo(Long value) {
addCriterion("id <=", value, "id");
return (Criteria) this;
}
public Criteria andIdIn(List<Long> values) {
addCriterion("id in", values, "id");
return (Criteria) this;
}
public Criteria andIdNotIn(List<Long> values) {
addCriterion("id not in", values, "id");
return (Criteria) this;
}
public Criteria andIdBetween(Long value1, Long value2) {
addCriterion("id between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andIdNotBetween(Long value1, Long value2) {
addCriterion("id not between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andNameIsNull() {
addCriterion("name is null");
return (Criteria) this;
}
public Criteria andNameIsNotNull() {
addCriterion("name is not null");
return (Criteria) this;
}
public Criteria andNameEqualTo(String value) {
addCriterion("name =", value, "name");
return (Criteria) this;
}
public Criteria andNameNotEqualTo(String value) {
addCriterion("name <>", value, "name");
return (Criteria) this;
}
public Criteria andNameGreaterThan(String value) {
addCriterion("name >", value, "name");
return (Criteria) this;
}
public Criteria andNameGreaterThanOrEqualTo(String value) {
addCriterion("name >=", value, "name");
return (Criteria) this;
}
public Criteria andNameLessThan(String value) {
addCriterion("name <", value, "name");
return (Criteria) this;
}
public Criteria andNameLessThanOrEqualTo(String value) {
addCriterion("name <=", value, "name");
return (Criteria) this;
}
public Criteria andNameLike(String value) {
addCriterion("name like", value, "name");
return (Criteria) this;
}
public Criteria andNameNotLike(String value) {
addCriterion("name not like", value, "name");
return (Criteria) this;
}
public Criteria andNameIn(List<String> values) {
addCriterion("name in", values, "name");
return (Criteria) this;
}
public Criteria andNameNotIn(List<String> values) {
addCriterion("name not in", values, "name");
return (Criteria) this;
}
public Criteria andNameBetween(String value1, String value2) {
addCriterion("name between", value1, value2, "name");
return (Criteria) this;
}
public Criteria andNameNotBetween(String value1, String value2) {
addCriterion("name not between", value1, value2, "name");
return (Criteria) this;
}
public Criteria andContentsIsNull() {
addCriterion("contents is null");
return (Criteria) this;
}
public Criteria andContentsIsNotNull() {
addCriterion("contents is not null");
return (Criteria) this;
}
public Criteria andContentsEqualTo(String value) {
addCriterion("contents =", value, "contents");
return (Criteria) this;
}
public Criteria andContentsNotEqualTo(String value) {
addCriterion("contents <>", value, "contents");
return (Criteria) this;
}
public Criteria andContentsGreaterThan(String value) {
addCriterion("contents >", value, "contents");
return (Criteria) this;
}
public Criteria andContentsGreaterThanOrEqualTo(String value) {
addCriterion("contents >=", value, "contents");
return (Criteria) this;
}
public Criteria andContentsLessThan(String value) {
addCriterion("contents <", value, "contents");
return (Criteria) this;
}
public Criteria andContentsLessThanOrEqualTo(String value) {
addCriterion("contents <=", value, "contents");
return (Criteria) this;
}
public Criteria andContentsLike(String value) {
addCriterion("contents like", value, "contents");
return (Criteria) this;
}
public Criteria andContentsNotLike(String value) {
addCriterion("contents not like", value, "contents");
return (Criteria) this;
}
public Criteria andContentsIn(List<String> values) {
addCriterion("contents in", values, "contents");
return (Criteria) this;
}
public Criteria andContentsNotIn(List<String> values) {
addCriterion("contents not in", values, "contents");
return (Criteria) this;
}
public Criteria andContentsBetween(String value1, String value2) {
addCriterion("contents between", value1, value2, "contents");
return (Criteria) this;
}
public Criteria andContentsNotBetween(String value1, String value2) {
addCriterion("contents not between", value1, value2, "contents");
return (Criteria) this;
}
public Criteria andTypeIsNull() {
addCriterion("type is null");
return (Criteria) this;
}
public Criteria andTypeIsNotNull() {
addCriterion("type is not null");
return (Criteria) this;
}
public Criteria andTypeEqualTo(String value) {
addCriterion("type =", value, "type");
return (Criteria) this;
}
public Criteria andTypeNotEqualTo(String value) {
addCriterion("type <>", value, "type");
return (Criteria) this;
}
public Criteria andTypeGreaterThan(String value) {
addCriterion("type >", value, "type");
return (Criteria) this;
}
public Criteria andTypeGreaterThanOrEqualTo(String value) {
addCriterion("type >=", value, "type");
return (Criteria) this;
}
public Criteria andTypeLessThan(String value) {
addCriterion("type <", value, "type");
return (Criteria) this;
}
public Criteria andTypeLessThanOrEqualTo(String value) {
addCriterion("type <=", value, "type");
return (Criteria) this;
}
public Criteria andTypeLike(String value) {
addCriterion("type like", value, "type");
return (Criteria) this;
}
public Criteria andTypeNotLike(String value) {
addCriterion("type not like", value, "type");
return (Criteria) this;
}
public Criteria andTypeIn(List<String> values) {
addCriterion("type in", values, "type");
return (Criteria) this;
}
public Criteria andTypeNotIn(List<String> values) {
addCriterion("type not in", values, "type");
return (Criteria) this;
}
public Criteria andTypeBetween(String value1, String value2) {
addCriterion("type between", value1, value2, "type");
return (Criteria) this;
}
public Criteria andTypeNotBetween(String value1, String value2) {
addCriterion("type not between", value1, value2, "type");
return (Criteria) this;
}
public Criteria andCreateTimeIsNull() {
addCriterion("create_time is null");
return (Criteria) this;
}
public Criteria andCreateTimeIsNotNull() {
addCriterion("create_time is not null");
return (Criteria) this;
}
public Criteria andCreateTimeEqualTo(Date value) {
addCriterion("create_time =", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotEqualTo(Date value) {
addCriterion("create_time <>", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThan(Date value) {
addCriterion("create_time >", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
addCriterion("create_time >=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThan(Date value) {
addCriterion("create_time <", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
addCriterion("create_time <=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeIn(List<Date> values) {
addCriterion("create_time in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotIn(List<Date> values) {
addCriterion("create_time not in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeBetween(Date value1, Date value2) {
addCriterion("create_time between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
addCriterion("create_time not between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNull() {
addCriterion("update_time is null");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNotNull() {
addCriterion("update_time is not null");
return (Criteria) this;
}
public Criteria andUpdateTimeEqualTo(Date value) {
addCriterion("update_time =", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotEqualTo(Date value) {
addCriterion("update_time <>", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThan(Date value) {
addCriterion("update_time >", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) {
addCriterion("update_time >=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThan(Date value) {
addCriterion("update_time <", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThanOrEqualTo(Date value) {
addCriterion("update_time <=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeIn(List<Date> values) {
addCriterion("update_time in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotIn(List<Date> values) {
addCriterion("update_time not in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeBetween(Date value1, Date value2) {
addCriterion("update_time between", value1, value2, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotBetween(Date value1, Date value2) {
addCriterion("update_time not between", value1, value2, "updateTime");
return (Criteria) this;
}
}
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
} | [
"[email protected]"
]
| |
c3f7eabeb8a9884d4cc41b3631d3a03a97b201a3 | d4b9d0821cdc036b8eee667112a83318d655b738 | /src/com/desmetRobotics/durtCmdBot/subsystems/Shooter.java | 1b20e601a0287dc7012e09db6f61e01148718d5c | []
| no_license | FRC1178/2014_DurtAssist | 6bf197f0e894d013fb2c3e000a91e7250d07f3d0 | 0b16bde3ba320520313926cac168ad99d4ad59dc | refs/heads/master | 2021-01-22T09:41:59.501932 | 2014-02-28T02:47:36 | 2014-02-28T02:47:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,309 | java | package com.desmetRobotics.durtCmdBot.subsystems;
import com.desmetRobotics.utils.subsystems.Subsystem1178;
import edu.wpi.first.wpilibj.Solenoid;
import edu.wpi.first.wpilibj.command.Command;
/**
*
* @author John
*/
public class Shooter extends Subsystem1178{
public static final boolean SHOOTER_ON = false;
//public static final boolean SHOOTER_OFF = true;
Solenoid shooterOn;
//Solenoid shooterOff;
private boolean shooterState;
public Shooter(int myOnSolenoid){
super("Shooter");
this.shooterOn = new Solenoid(myOnSolenoid);
//this.shooterOff = new Solenoid(myOffSolenoid);
}
public void initDefaultCommand() {
// Set the default command for a subsystem here.
//setDefaultCommand(new MySpecialCommand());
}
public void setShooterState(boolean daState){
shooterState = daState;
update();
}
public void update(){
if (shooterState == SHOOTER_ON){
shooterOn.set(true);
//shooterOff.set(false);
}else{
shooterOn.set(false);
}
}
public void setDefaultCommand(Command command){
if(getDefaultCommand() != null){
super.getDefaultCommand().cancel();
}
super.setDefaultCommand(command);
}
} | [
"[email protected]"
]
| |
082e47db32f44a0c348bf94b5ce0c068f15fec47 | d1e13dbde481ebfce555145ce92b690eb7d194ff | /li_blog_xo/src/main/java/com/steel/li_blog_xo/vo/TodoVO.java | 1c14c87cdcb2e1953acb3eb1d0b0f820daed913f | []
| no_license | king-code0212/LiBlog | a9275ee6b20bd9a91ec7bb85538e85d4fcd5a6e3 | cbb60c0ce771815adc62b856046a0b12ea863eba | refs/heads/master | 2023-01-05T14:51:12.162233 | 2020-10-31T07:17:36 | 2020-10-31T07:17:36 | 303,974,222 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 842 | java | package com.steel.li_blog_xo.vo;
import com.steel.li_blog_base.validator.annotion.BooleanNotNULL;
import com.steel.li_blog_base.validator.annotion.NotBlank;
import com.steel.li_blog_base.validator.group.GetOne;
import com.steel.li_blog_base.validator.group.Insert;
import com.steel.li_blog_base.validator.group.Update;
import com.steel.li_blog_base.vo.BaseVO;
import lombok.Data;
/**
* TodoVO
*
* @author: steel
* @create: 2019年12月18日22:16:23
*/
@Data
public class TodoVO extends BaseVO<TodoVO> {
/**
* 内容
*/
@NotBlank(groups = {Insert.class, Update.class})
private String text;
/**
* 表示事项是否完成
*/
@BooleanNotNULL(groups = {Update.class, GetOne.class})
private Boolean done;
/**
* 无参构造方法,初始化默认值
*/
TodoVO() {
}
}
| [
"[email protected]"
]
| |
0b549f7b8ef5238c62cfe74ff195bf967097f3c8 | 85552d7099fac0836e86667281490ce75646ab56 | /src/org/adligo/tests4j_4gwt/client/model/run/I_GwtMethodWrapper.java | e5005f78e20040f76cc924a87177ef6b7e776c42 | [
"Apache-2.0"
]
| permissive | adligo/tests4j_4gwt.adligo.org | 8049c241f2ba857065c477f37ac0332dd48fcc8e | 6a8e44a5ff425e24a8634b4df3cdfc203d32b006 | refs/heads/master | 2020-05-20T02:37:35.470964 | 2015-04-01T06:26:47 | 2015-04-01T06:26:47 | 33,230,165 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 137 | java | package org.adligo.tests4j_4gwt.client.model.run;
public interface I_GwtMethodWrapper {
public String getName();
public void run();
}
| [
"[email protected]"
]
| |
f03e0c20315181284fab1e8ac8feba17dcadc9d6 | 3780e73562773dbaff5e644c18da19888334fb3b | /SmileXi/src/com/smilexi/sx/common/SmileXiApi.java | 334cb7713c5b2be29bdac28c2290bc3d7d4a75af | []
| no_license | YanxiSir/Android_Project | 16c1ca495bb931bbb64d5ccc15641c7207f88071 | 08eaf83517aa519d66cf5d6618dfe634499e3695 | refs/heads/master | 2021-01-10T14:41:52.156954 | 2015-11-14T15:12:51 | 2015-11-14T15:12:51 | 46,177,131 | 1 | 0 | null | null | null | null | GB18030 | Java | false | false | 43,619 | java | package com.smilexi.sx.common;
import java.io.IOException;
import java.io.StringReader;
import java.lang.reflect.Type;
import org.ksoap2.serialization.SoapObject;
import com.google.gson.reflect.TypeToken;
import com.google.gson.stream.JsonReader;
import com.sea_monster.core.exception.InternalException;
import com.sea_monster.core.exception.ParseException;
import com.smilexi.sx.app.AppManager;
import com.smilexi.sx.common.net.CWebService;
import com.smilexi.sx.common.net.CWebService.WebHandlerCallBack;
import com.smilexi.sx.finals.ServerFinals;
import com.smilexi.sx.protocol.SxAnswers;
import com.smilexi.sx.protocol.SxAttentioned;
import com.smilexi.sx.protocol.SxDynamicReply;
import com.smilexi.sx.protocol.SxDynamics;
import com.smilexi.sx.protocol.SxNoResultDefault;
import com.smilexi.sx.protocol.SxNotiReply;
import com.smilexi.sx.protocol.SxNotiZan;
import com.smilexi.sx.protocol.SxQuestionType;
import com.smilexi.sx.protocol.SxQuestions;
import com.smilexi.sx.protocol.SxStatus;
import com.smilexi.sx.protocol.SxUpdateUserInfoReturn;
import com.smilexi.sx.protocol.SxUserBaseInfo;
import com.smilexi.sx.protocol.SxUserMainPageInfo;
import com.smilexi.sx.protocol.parser.GsonParser;
import com.smilexi.sx.request.domain.AskQuestionRequest;
import com.smilexi.sx.request.domain.GetAttentionedRequest;
import com.smilexi.sx.request.domain.NotiRequest;
import com.smilexi.sx.request.domain.ReplyAnswerRequest;
import com.smilexi.sx.request.domain.SubmitAnswerRequest;
import com.smilexi.sx.request.domain.SubmitReplyRequest;
import com.smilexi.sx.request.domain.UserGetDynamicsRequest;
import com.smilexi.sx.request.domain.UserImproveInfoRequest;
import com.smilexi.sx.request.domain.UserLoginRequest;
import com.smilexi.sx.request.domain.UserPublishDynamic;
import com.smilexi.sx.request.domain.UserRegisterRequest;
import com.smilexi.sx.request.domain.UserUpdateInfoRequest;
import com.smilexi.sx.request.domain.ZanDynamic;
import com.smilexi.sx.util.L;
import android.content.Context;
import android.text.TextUtils;
public class SmileXiApi {
public Context mContext;
public SmileXiApi(Context mContext) {
this.mContext = mContext;
}
/*
* 获取dynamic zan noti
*/
public void getNotiZan(Object obj, final IApiCallback callback) {
NotiRequest params = (NotiRequest) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_GET_NOTI_ZAN);
request.addProperty("uid", params.getUid());
request.addProperty("sid", params.getSid());
request.addProperty("count", params.getCount());
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.GET_NOTI_OPERATE, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
L.d(result);
Type type = new TypeToken<SxStatus<SxNotiZan>>() {
}.getType();
GsonParser<SxStatus<SxNotiZan>> parser = new GsonParser<SxStatus<SxNotiZan>>(
type);
try {
SxStatus<SxNotiZan> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(tmpResult.getResult());
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 获取dynamicreply noti
*/
public void getNotiReply(Object obj, final IApiCallback callback) {
NotiRequest params = (NotiRequest) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_GET_NOTI_REPLY);
request.addProperty("uid", params.getUid());
request.addProperty("sid", params.getSid());
request.addProperty("count", params.getCount());
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.GET_NOTI_OPERATE, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
L.d(result);
Type type = new TypeToken<SxStatus<SxNotiReply>>() {
}.getType();
GsonParser<SxStatus<SxNotiReply>> parser = new GsonParser<SxStatus<SxNotiReply>>(
type);
try {
SxStatus<SxNotiReply> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(tmpResult.getResult());
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 搜索user
*/
public void searchUser(int uid, String key, final IApiCallback callback) {
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_SEARCH_USER);
request.addProperty("uid", uid);
request.addProperty("key", key);
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.SEARCH_OPERATE, request, new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxAttentioned>>() {
}.getType();
GsonParser<SxStatus<SxAttentioned>> parser = new GsonParser<SxStatus<SxAttentioned>>(
type);
try {
SxStatus<SxAttentioned> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(tmpResult.getResult());
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 获取收藏的答案
*/
public void getCollectedAnswers(int uid, final IApiCallback callback) {
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_GET_COLLECTED_ANSWER);
request.addProperty("uid", uid);
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.GET_DYNAMIC_REPLY, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxAnswers>>() {
}.getType();
GsonParser<SxStatus<SxAnswers>> parser = new GsonParser<SxStatus<SxAnswers>>(
type);
try {
SxStatus<SxAnswers> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(tmpResult.getResult());
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 得到某个答案的回复内容
*/
public void getAnswerReplys(int aid, final IApiCallback callback) {
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_GET_ANSWER_REPLY);
request.addProperty("aid", aid);
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.GET_DYNAMIC_REPLY, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxDynamicReply>>() {
}.getType();
GsonParser<SxStatus<SxDynamicReply>> parser = new GsonParser<SxStatus<SxDynamicReply>>(
type);
try {
SxStatus<SxDynamicReply> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(tmpResult.getResult());
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 回复某个答案
*/
public void replyAnswer(Object obj, final IApiCallback callback) {
ReplyAnswerRequest params = (ReplyAnswerRequest) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_REPLY_ANSWER);
request.addProperty("aid", params.getAid());
request.addProperty("fuid", params.getFuid());
request.addProperty("tuid", params.getTuid());
request.addProperty("content", params.getContent());
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.SEND_DYNAMIC_REPLY, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxNoResultDefault>>() {
}.getType();
GsonParser<SxStatus<SxNoResultDefault>> parser = new GsonParser<SxStatus<SxNoResultDefault>>(
type);
try {
SxStatus<SxNoResultDefault> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(null);
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 收藏答案
*/
public void collectAnswer(int uid, int aid, final IApiCallback callback) {
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_COLLECT_ANSWER);
request.addProperty("uid", uid);
request.addProperty("aid", aid);
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.DIANZAN_DYNAMIC, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxNoResultDefault>>() {
}.getType();
GsonParser<SxStatus<SxNoResultDefault>> parser = new GsonParser<SxStatus<SxNoResultDefault>>(
type);
try {
SxStatus<SxNoResultDefault> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(null);
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* zanAnswer
*/
public void zanAnswer(int uid, int aid, final IApiCallback callback) {
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_ZAN_ANSWER);
request.addProperty("uid", uid);
request.addProperty("aid", aid);
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.DIANZAN_DYNAMIC, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxNoResultDefault>>() {
}.getType();
GsonParser<SxStatus<SxNoResultDefault>> parser = new GsonParser<SxStatus<SxNoResultDefault>>(
type);
try {
SxStatus<SxNoResultDefault> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(null);
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 关注问题
*/
public void attentionQuestion(int qid, int uid, final IApiCallback callback) {
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_ATTENTION_QUESTION);
request.addProperty("qid", qid);
request.addProperty("uid", uid);
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.ATTENTION_OPERATE_QUESTION, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxNoResultDefault>>() {
}.getType();
GsonParser<SxStatus<SxNoResultDefault>> parser = new GsonParser<SxStatus<SxNoResultDefault>>(
type);
try {
SxStatus<SxNoResultDefault> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(null);
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 提交回答
*/
public void submitAnswer(Object obj, final IApiCallback callback) {
SubmitAnswerRequest params = (SubmitAnswerRequest) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_SUBMIT_ANSWER);
request.addProperty("qid", params.getQid());
request.addProperty("uid", params.getUid());
request.addProperty("content", params.getContent());
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.SEND_DYNAMIC_REPLY, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxNoResultDefault>>() {
}.getType();
GsonParser<SxStatus<SxNoResultDefault>> parser = new GsonParser<SxStatus<SxNoResultDefault>>(
type);
try {
SxStatus<SxNoResultDefault> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(null);
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 得到某个问题的答案
*/
public void getQuestionAnswers(int uid, int qid, final IApiCallback callback) {
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_GET_QUESTION_ANSWERS);
request.addProperty("uid", uid);
request.addProperty("qid", qid);
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.GET_DYNAMIC_REPLY, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxAnswers>>() {
}.getType();
GsonParser<SxStatus<SxAnswers>> parser = new GsonParser<SxStatus<SxAnswers>>(
type);
try {
SxStatus<SxAnswers> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(tmpResult.getResult());
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 获取问题列表
*/
public void getQuestion(Object obj, final IApiCallback callback) {
UserGetDynamicsRequest params = (UserGetDynamicsRequest) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_GET_QUESTION);
request.addProperty("spos", params.getStartId());
request.addProperty("count", params.getCount());
request.addProperty("oid", params.getOid());
request.addProperty("uid", params.getUid());
request.addProperty("wid", params.getWid());
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.GET_DYNAMIC, request, new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxQuestions>>() {
}.getType();
GsonParser<SxStatus<SxQuestions>> parser = new GsonParser<SxStatus<SxQuestions>>(
type);
try {
SxStatus<SxQuestions> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(tmpResult.getResult());
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 获取问题类型列表
*/
public void getQuestionTypeList(Object obj, final IApiCallback callback) {
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_GET_QUESTION_TYPE);
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.GET_QUESTION_TYPE, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxQuestionType>>() {
}.getType();
GsonParser<SxStatus<SxQuestionType>> parser = new GsonParser<SxStatus<SxQuestionType>>(
type);
try {
SxStatus<SxQuestionType> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(tmpResult.getResult());
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* ask question
*/
public void askQuestion(Object obj, final IApiCallback callback) {
AskQuestionRequest params = (AskQuestionRequest) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_ASK_QUESTION);
request.addProperty("uid", params.getUid());
request.addProperty("type", params.getType());
request.addProperty("title", params.getTitle());
request.addProperty("content", params.getContent());
request.addProperty("keyword", params.getKeyword());
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.PUBLISH_DYNAMIC, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxNoResultDefault>>() {
}.getType();
GsonParser<SxStatus<SxNoResultDefault>> parser = new GsonParser<SxStatus<SxNoResultDefault>>(
type);
try {
SxStatus<SxNoResultDefault> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(null);
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 获取关注的人 列表
*/
public void getAttentioned(Object obj, final IApiCallback callback) {
GetAttentionedRequest params = (GetAttentionedRequest) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_GET_ALL_ATTENTIONED);
request.addProperty("uid", params.getUid());
request.addProperty("sid", params.getSid());
request.addProperty("count", params.getCount());
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.ATTENTION_OPERATE, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxAttentioned>>() {
}.getType();
GsonParser<SxStatus<SxAttentioned>> parser = new GsonParser<SxStatus<SxAttentioned>>(
type);
try {
SxStatus<SxAttentioned> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(tmpResult.getResult());
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 关注操作
*/
public void attentionUser(int fuid, int tuid, final IApiCallback callback) {
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_ATTENTION_USER);
request.addProperty("fuid", fuid);
request.addProperty("tuid", tuid);
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.ATTENTION_OPERATE, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxNoResultDefault>>() {
}.getType();
GsonParser<SxStatus<SxNoResultDefault>> parser = new GsonParser<SxStatus<SxNoResultDefault>>(
type);
try {
SxStatus<SxNoResultDefault> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(null);
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 提交回复
*/
public void submitReply(Object obj, final IApiCallback callback) {
SubmitReplyRequest params = (SubmitReplyRequest) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_SUBMIT_REPLY);
request.addProperty("did", params.getDid());
request.addProperty("content", params.getContent());
request.addProperty("fuid", params.getFuid());
request.addProperty("tuid", params.getTuid());
request.addProperty("funame", params.getFuname());
request.addProperty("tuname", params.getTuname());
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.SEND_DYNAMIC_REPLY, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxNoResultDefault>>() {
}.getType();
GsonParser<SxStatus<SxNoResultDefault>> parser = new GsonParser<SxStatus<SxNoResultDefault>>(
type);
try {
SxStatus<SxNoResultDefault> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(null);
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 获取动态回复内容
*/
public void getDynamicReply(Object obj, final IApiCallback callback) {
int did = (Integer) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_GET_REPLY);
request.addProperty("did", did);
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.GET_DYNAMIC_REPLY, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
L.d(result);
Type type = new TypeToken<SxStatus<SxDynamicReply>>() {
}.getType();
GsonParser<SxStatus<SxDynamicReply>> parser = new GsonParser<SxStatus<SxDynamicReply>>(
type);
try {
SxStatus<SxDynamicReply> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(tmpResult.getResult());
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 点赞
*/
public void zanDynamic(Object obj, final IApiCallback callback) {
ZanDynamic params = (ZanDynamic) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_DIAN_ZAN);
request.addProperty("uid", params.getUid());
request.addProperty("did", params.getDid());
request.addProperty("oid", params.getOid());
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.DIANZAN_DYNAMIC, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxNoResultDefault>>() {
}.getType();
GsonParser<SxStatus<SxNoResultDefault>> parser = new GsonParser<SxStatus<SxNoResultDefault>>(
type);
try {
SxStatus<SxNoResultDefault> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(null);
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 删除动态
*/
public void delDynamic(Object obj, final IApiCallback callback) {
int did = (Integer) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_DEL_DYNAMIC);
request.addProperty("did", did);
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.DEL_OPERATE, request, new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxNoResultDefault>>() {
}.getType();
GsonParser<SxStatus<SxNoResultDefault>> parser = new GsonParser<SxStatus<SxNoResultDefault>>(
type);
try {
SxStatus<SxNoResultDefault> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(null);
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 获取指定用户基本信息
*/
public void getUserMainPage(int wid, int uid, final IApiCallback callback) {
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_GET_USER_INFO);
request.addProperty("wid", wid);
request.addProperty("uid", uid);
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.GET_USER_MAINPAGE, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxUserMainPageInfo>>() {
}.getType();
GsonParser<SxStatus<SxUserMainPageInfo>> parser = new GsonParser<SxStatus<SxUserMainPageInfo>>(
type);
try {
SxStatus<SxUserMainPageInfo> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(tmpResult.getResult());
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 获取动态信息
*/
public void getDynamics(Object obj, final IApiCallback callback) {
UserGetDynamicsRequest params = (UserGetDynamicsRequest) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_GET_DYNAMIC);
request.addProperty("spos", params.getStartId());
request.addProperty("count", params.getCount());
request.addProperty("oid", params.getOid());
request.addProperty("uid", params.getUid());
request.addProperty("wid", params.getWid());
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.GET_DYNAMIC, request, new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxDynamics>>() {
}.getType();
GsonParser<SxStatus<SxDynamics>> parser = new GsonParser<SxStatus<SxDynamics>>(
type);
try {
SxStatus<SxDynamics> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(tmpResult.getResult());
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 发布生活动态
*/
public void publishDynamic(Object obj, final IApiCallback callback) {
UserPublishDynamic params = (UserPublishDynamic) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_PUBLISH_DYNAMIC);
request.addProperty("uid", params.getUid());
request.addProperty("typ", params.getTyp());
request.addProperty("content", params.getContent());
// request.addProperty("por", (String[])params.getPor());
if (params.getPor() != null) {
for (int i = 0; i < params.getPor().length; i++) {
String s = TextUtils.isEmpty(params.getPor()[i]) ? "" : params
.getPor()[i];
request.addProperty("img" + (i + 1), s);
}
for (int i = params.getPor().length; i < 6; i++) {
request.addProperty("img" + (i + 1), "");
}
} else {
for (int i = 0; i < 6; i++) {
request.addProperty("img" + (i + 1), "");
}
}
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.PUBLISH_DYNAMIC, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxNoResultDefault>>() {
}.getType();
GsonParser<SxStatus<SxNoResultDefault>> parser = new GsonParser<SxStatus<SxNoResultDefault>>(
type);
try {
SxStatus<SxNoResultDefault> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(null);
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 更新用户信息
*/
public void updateUserInfo(Object obj, final IApiCallback callback) {
UserUpdateInfoRequest params = (UserUpdateInfoRequest) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.MESHOD_UPDATE_INFO);
request.addProperty("oid", params.getOid());
request.addProperty("content", params.getContent());
request.addProperty("uid", params.getUid());
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.CHANGE_SELF_INFO, request,
new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxUpdateUserInfoReturn>>() {
}.getType();
GsonParser<SxStatus<SxUpdateUserInfoReturn>> parser = new GsonParser<SxStatus<SxUpdateUserInfoReturn>>(
type);
try {
SxStatus<SxUpdateUserInfoReturn> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(tmpResult.getResult());
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 完善个人基本信息
*/
public void uploadUserImproveInfo(Object obj, final IApiCallback callback) {
UserImproveInfoRequest params = (UserImproveInfoRequest) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_UPLOAD_INFO);
request.addProperty("uid", params.getUid());
request.addProperty("username", params.getUsername());
request.addProperty("signStr", params.getSignStr());
request.addProperty("email", params.getEmail());
request.addProperty("realName", params.getRealName());
request.addProperty("genderId", params.getGenderId());
request.addProperty("portrait", params.getPortrait());
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.IMPROVE_INFO, request, new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxUserBaseInfo>>() {
}.getType();
GsonParser<SxStatus<SxUserBaseInfo>> parser = new GsonParser<SxStatus<SxUserBaseInfo>>(
type);
try {
SxStatus<SxUserBaseInfo> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(tmpResult.getResult());
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 注册获取验证码
*/
public void getRegisterVCode(Object obj, final IApiCallback callback) {
String uPhone = (String) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_REGISTER_VCODE);
request.addProperty("uPhone", uPhone);
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.GET_VCODE, request, new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxNoResultDefault>>() {
}.getType();
GsonParser<SxStatus<SxNoResultDefault>> parser = new GsonParser<SxStatus<SxNoResultDefault>>(
type);
try {
SxStatus<SxNoResultDefault> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == null)
return;
if (tmpResult.getResultcode() == 1) {
callback.onComplete(String
.valueOf(tmpResult.getResultcode()));
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 用户注册
*/
public void userRegister(Object obj, final IApiCallback callback) {
UserRegisterRequest params = (UserRegisterRequest) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_REGISTER);
request.addProperty("userPhone", params.getUserPhone());
request.addProperty("password", params.getPassword());
request.addProperty("vCode", params.getvCode());
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.REGISTER, request, new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxNoResultDefault>>() {
}.getType();
GsonParser<SxStatus<SxNoResultDefault>> parser = new GsonParser<SxStatus<SxNoResultDefault>>(
type);
try {
SxStatus<SxNoResultDefault> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == 1) {
callback.onComplete(null);
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
/*
* 用户登录
*/
public void getUserLoginInfo(Object obj, final IApiCallback callback) {
UserLoginRequest params = (UserLoginRequest) obj;
SoapObject request = new SoapObject(ServerFinals.NAME_SPACE,
ServerFinals.METHOD_USER_LOGIN);
request.addProperty("userPhone", params.getUserPhone());
request.addProperty("password", params.getPassword());
CWebService.reqSessionHandler(AppManager.getInstance(),
ServerFinals.LOGIN, request, new WebHandlerCallBack() {
@Override
public void callBack(String result) {
try {
if (TextUtils.isEmpty(result))
return;
Type type = new TypeToken<SxStatus<SxUserBaseInfo>>() {
}.getType();
GsonParser<SxStatus<SxUserBaseInfo>> parser = new GsonParser<SxStatus<SxUserBaseInfo>>(
type);
try {
SxStatus<SxUserBaseInfo> tmpResult = parser
.parse(new JsonReader(new StringReader(
result)));
if (tmpResult.getResultcode() == 1) {
callback.onComplete(tmpResult.getResult());
} else {
callback.onError(Integer.valueOf(tmpResult
.getResultcode()));
}
} catch (ParseException e) {
e.printStackTrace();
} catch (InternalException e) {
e.printStackTrace();
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
}
public interface IApiCallback {
void onError(int errorCode);
void onComplete(Object object);
}
}
| [
"[email protected]"
]
| |
44848e04c48195abb722a04542e390c8f14459a9 | 18d6989ddcf08b2d6b8cfddba24da191d9339f65 | /GetFreeDash2/app/src/main/java/com/getfreedash/FontAwsome.java | ca0554e178737c960cef5136b4f91f58443d6ecc | []
| no_license | mandeepandroid/getFreedash | 0e965226370ad24c974f6056c22a8eca299901ea | 7b91997b302c4f11b37315e592a172ee6031d7a2 | refs/heads/master | 2020-03-07T14:23:34.027343 | 2018-03-31T11:18:44 | 2018-03-31T11:18:44 | 127,525,266 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,720 | java | package com.getfreedash;
import android.graphics.Typeface;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.TextView;
public class FontAwsome extends AppCompatActivity {
Typeface typeface ;
TextView textViewContact, textViewBattery, textViewBank, textViewBirthday, textViewCab, textViewCamera ;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_font_awsome);
typeface = Typeface.createFromAsset(getAssets(), "fontawesome-webfont.ttf");
textViewContact = (TextView)findViewById(R.id.contact_us_icon);
textViewBattery = (TextView)findViewById(R.id.fa_battery);
textViewBank = (TextView)findViewById(R.id.fa_bank_icon);
textViewBirthday = (TextView)findViewById(R.id.fa_birthday);
textViewCab = (TextView)findViewById(R.id.fa_cab_icon);
textViewCamera = (TextView)findViewById(R.id.fa_camera_icon);
textViewContact.setTypeface(typeface);
textViewBattery.setTypeface(typeface);
textViewBank.setTypeface(typeface);
textViewBirthday.setTypeface(typeface);
textViewCab.setTypeface(typeface);
textViewCamera.setTypeface(typeface);
textViewContact.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Animation xmlAnimationSample;
xmlAnimationSample = AnimationUtils.loadAnimation(getApplicationContext(),R.anim.bounch);
textViewContact.startAnimation(xmlAnimationSample);
}
});
textViewBattery.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Animation xmlAnimationSample;
xmlAnimationSample = AnimationUtils.loadAnimation(getApplicationContext(),R.anim.bounch);
textViewBattery.startAnimation(xmlAnimationSample);
}
});
textViewBank.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Animation xmlAnimationSample;
xmlAnimationSample = AnimationUtils.loadAnimation(getApplicationContext(),R.anim.bounch);
textViewBank.startAnimation(xmlAnimationSample);
}
});
textViewBirthday.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Animation xmlAnimationSample;
xmlAnimationSample = AnimationUtils.loadAnimation(getApplicationContext(),R.anim.bounch);
textViewBirthday.startAnimation(xmlAnimationSample);
}
});
textViewCab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Animation xmlAnimationSample;
xmlAnimationSample = AnimationUtils.loadAnimation(getApplicationContext(),R.anim.bounch);
textViewCab.startAnimation(xmlAnimationSample);
}
});
textViewCamera.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Animation xmlAnimationSample;
xmlAnimationSample = AnimationUtils.loadAnimation(getApplicationContext(),R.anim.bounch);
textViewCamera.startAnimation(xmlAnimationSample);
}
});
}
}
| [
"[email protected]"
]
| |
4577a6a30b2ecc14c9c7b9f7fd00407c6a3ede9b | 0712e445a79595bb6ae07385d9dea4ebb811f972 | /EpamLabs/finalTask/src/main/java/com/kozitski/pufar/filter/RunFilter.java | 354a7a90726974f963904aa7e95dda29804fe6d7 | []
| no_license | Den4ik5/javaProjects | bf00c237216f8b2961bf830433ae3b14db8168ab | ce3cf4c16458bb1ec5dfb7c252b70b4dd5f74a9a | refs/heads/master | 2020-04-09T15:32:24.683342 | 2018-12-04T22:22:58 | 2018-12-04T22:22:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 546 | java | package com.kozitski.pufar.filter;
//@WebFilter("/*")
//public class RunFilter implements Filter {
//
// @Override
// public void init(FilterConfig filterConfig) throws ServletException {
//
// }
//
// @Override
// public void destroy() {
//
// }
//
// @Override
// public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
// // transmit to filter
// // WebPathReturner.setSf(request.getServletContext().getRealPath("/"));
// }
//}
| [
"[email protected]"
]
| |
1d1fc9ed55d112e9957a1360be8632a9fe7078e5 | dfcb99fd9feb71da35182811ed5f32bf69cd2bbf | /src/widget-extended/src/main/java/de/iwes/widgets/pattern/page/impl/TriggerableMethodLabel.java | b6d65fae9fda1bab938a1f48cfb4700d4cb6838f | [
"Apache-2.0"
]
| permissive | ogema/ogema-widgets | 99d544d0ec6aebf68fd846fe2c08f5ac5dee7790 | 3adac6461c52555a42a4f1837267380adce293fb | refs/heads/public | 2022-11-29T21:33:14.704989 | 2019-12-09T08:25:41 | 2019-12-09T08:25:41 | 124,270,200 | 0 | 1 | Apache-2.0 | 2022-11-16T06:25:46 | 2018-03-07T17:23:28 | JavaScript | UTF-8 | Java | false | false | 3,158 | java | /**
* Copyright 2014-2018 Fraunhofer-Gesellschaft zur Förderung der angewandten Wissenschaften e.V.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.iwes.widgets.pattern.page.impl;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import org.json.JSONObject;
import org.ogema.core.resourcemanager.pattern.ResourcePattern;
import de.iwes.widgets.api.widgets.WidgetPage;
import de.iwes.widgets.api.widgets.sessionmanagement.OgemaHttpRequest;
import de.iwes.widgets.html.form.label.Label;
import de.iwes.widgets.html.form.label.LabelData;
public class TriggerableMethodLabel extends Label {
private static final long serialVersionUID = 1L;
private final Method method;
public TriggerableMethodLabel(WidgetPage<?> page, String id, Method method) {
super(page, id, "");
this.method = method;
}
@Override
public TriggerableMethodLabelOptions createNewSession() {
return new TriggerableMethodLabelOptions(this);
}
@Override
public TriggerableMethodLabelOptions getData(OgemaHttpRequest req) {
return (TriggerableMethodLabelOptions) super.getData(req);
}
private class TriggerableMethodLabelOptions extends LabelData {
private String message = "";
private ResourcePattern<?> selectedPattern = null;
public TriggerableMethodLabelOptions(TriggerableMethodLabel tml) {
super(tml);
}
@Override
public JSONObject retrieveGETData(OgemaHttpRequest req) {
setText(message);
return super.retrieveGETData(req);
}
public void setMessage(String message) {
this.message = message;
}
public void setMessage() {
String newText = "";
if (selectedPattern != null || Modifier.isStatic(method.getModifiers())) {
try {
newText = method.invoke(selectedPattern).toString(); // TODO other String conversion method
} catch (Exception e) {
}
}
this.message = newText;
}
public String getMessage() {
return message;
}
public void setPattern(ResourcePattern<?> selectedPattern) {
this.selectedPattern = selectedPattern;
}
public ResourcePattern<?> getPattern() {
return selectedPattern;
}
}
public void setMessage(OgemaHttpRequest req) {
getData(req).setMessage();
}
public void setMessage(String message, OgemaHttpRequest req) {
getData(req).setMessage(message);
}
public String getMessage(OgemaHttpRequest req) {
return getData(req).getMessage();
}
public void setPattern(ResourcePattern<?> selectedPattern, OgemaHttpRequest req) {
getData(req).setPattern(selectedPattern);
}
public ResourcePattern<?> getPattern(OgemaHttpRequest req) {
return getData(req).getPattern();
}
}
| [
"[email protected]"
]
| |
a111141a94d02488b73cd043ecfe970368feb6af | 40b7dd1ef57c375367a07aded6c0c4b33d2f6d69 | /BankManager/src/RadiusAndShadow/image/GrayFilter.java | 7ce0f8c2b1e76aca2c145659203e6d1743cc26bf | []
| no_license | vodoanhoanglong/Project_Manage_Bank | 648b128e903e4958438a8accbece2772ce3c50c1 | 5772b259f9176ceaa3485653731cba5314252398 | refs/heads/master | 2023-07-30T08:24:49.008974 | 2021-10-04T14:23:20 | 2021-10-04T14:23:20 | 347,538,018 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,100 | java | /*
Copyright 2006 Jerry Huxtable
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 RadiusAndShadow.image;
/**
* A filter which 'grays out' an image by averaging each pixel with white.
*/
public class GrayFilter extends PointFilter {
public GrayFilter() {
canFilterIndexColorModel = true;
}
public int filterRGB(int x, int y, int rgb) {
int a = rgb & 0xff000000;
int r = (rgb >> 16) & 0xff;
int g = (rgb >> 8) & 0xff;
int b = rgb & 0xff;
r = (r+255)/2;
g = (g+255)/2;
b = (b+255)/2;
return a | (r << 16) | (g << 8) | b;
}
public String toString() {
return "Colors/Gray Out";
}
}
| [
"[email protected]"
]
| |
71600a00ccdb8c412c9b968e990d402d8b926627 | 3cdea5bd8c04ba58c602b6eb4f0e6656c8363a18 | /gen/com/example/androidcal/R.java | af02a56ebdbb94d69fd65ddf65b17ca792f1e6a3 | []
| no_license | blade0219/AndroidCal | 075e567159997eb1deca147d24c39dd7884c7713 | 5a22adfcc41cb530890af268f351da9e92de9426 | refs/heads/master | 2021-01-18T18:16:26.915575 | 2014-07-16T14:27:35 | 2014-07-16T14:27:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 178,210 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package com.example.androidcal;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f040000;
public static final int abc_fade_out=0x7f040001;
public static final int abc_slide_in_bottom=0x7f040002;
public static final int abc_slide_in_top=0x7f040003;
public static final int abc_slide_out_bottom=0x7f040004;
public static final int abc_slide_out_top=0x7f040005;
}
public static final class attr {
/** Custom divider drawable to use for elements in the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01000f;
/** Custom item state list drawable background for action bar items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010010;
/** Size of the Action Bar, including the contextual
bar used to present Action Modes.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionBarSize=0x7f01000e;
/** Reference to a theme that should be used to inflate widgets
and layouts destined for the action bar. Most of the time
this will be a reference to the current theme, but when
the action bar has a significantly different contrast
profile than the rest of the activity the difference
can become important. If this is set to @null the current
theme will be used.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01000c;
/** Reference to a style for the Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01000b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabBarStyle=0x7f010008;
/** Default style for tabs within an action bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010007;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=0x7f010009;
/** Reference to a theme that should be used to inflate widgets
and layouts destined for the action bar. Most of the time
this will be a reference to the current theme, but when
the action bar has a significantly different contrast
profile than the rest of the activity the difference
can become important. If this is set to @null the current
theme will be used.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01000d;
/** Default action button style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010016;
/** Default ActionBar dropdown style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010047;
/** An optional layout to be used as an action view.
See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004e;
/** TextAppearance style that will be applied to text that
appears within action menu items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010011;
/** Color for text that appears within action menu items.
<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=0x7f010012;
/** Background drawable to use for action mode UI
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionModeCloseButtonStyle=0x7f01003b;
/** Drawable to use for the close action mode button
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003e;
/** Drawable to use for the Copy action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010040;
/** Drawable to use for the Cut action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003f;
/** Drawable to use for the Find action button in WebView selection action modes
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010044;
/** Drawable to use for the Paste action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010041;
/** PopupWindow style to use for action modes when showing as a window overlay.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010046;
/** Drawable to use for the Select all action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010042;
/** Drawable to use for the Share action button in WebView selection action modes
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010043;
/** Background drawable to use for action mode UI in the lower split bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionModeStyle=0x7f01003a;
/** Drawable to use for the Web Search action button in WebView selection action modes
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010045;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowButtonStyle=0x7f01000a;
/** The name of an optional ActionProvider class to instantiate an action view
and perform operations such as default action for that menu item.
See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
for more info.
<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=0x7f010050;
/** The name of an optional View class to instantiate and use as an
action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
<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=0x7f01004f;
/** Default ActivityChooserView style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006c;
/** Specifies a background drawable for the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002f;
/** Specifies a background drawable for the bottom component of a split action bar.
<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=0x7f010031;
/** Specifies a background drawable for a second stacked row of the action bar.
<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=0x7f010030;
/** A style that may be applied to Buttons placed within a
LinearLayout with the style buttonBarStyle to form a button bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010018;
/** A style that may be applied to horizontal LinearLayouts
to form a button bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010017;
/** Specifies a layout for custom navigation. Overrides navigationMode.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010032;
/** Whether this spinner should mark child views as enabled/disabled when
the spinner itself is enabled/disabled.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int disableChildrenWhenDisabled=0x7f010054;
/** Options affecting how the action bar is displayed.
<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>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=0x7f010028;
/** Specifies the drawable used for item dividers.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002e;
/** A drawable that may be used as a horizontal divider between visual elements.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01001b;
/** Size of padding on either end of a divider.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010056;
/** A drawable that may be used as a vertical divider between visual elements.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01001a;
/** ListPopupWindow comaptibility
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010021;
/** The preferred item height for dropdown lists.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010048;
/** The drawable to show in the button for expanding the activities overflow popup.
<strong>Note:</strong> Clients would like to set this drawable
as a clue about the action the chosen activity will perform. For
example, if share activity is to be chosen the drawable should
give a clue that sharing is to be performed.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010026;
/** Specifies a drawable to use for the 'home as up' indicator.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010013;
/** Specifies a layout to use for the "home" section of the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010033;
/** Specifies the drawable used for the application icon.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002c;
/** The default state of the SearchView. If true, it will be iconified when not in
use and expanded when clicked.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01005a;
/** Specifies a style resource to use for an indeterminate progress spinner.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010035;
/** The maximal number of items initially shown in the activity list.
<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=0x7f01006a;
/** Specifies whether the theme is light, otherwise it is dark.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010059;
/** Specifies padding that should be applied to the left and right sides of
system-provided items in the bar.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010037;
/** Drawable used as a background for selected list items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listPopupWindowStyle=0x7f010022;
/** The preferred list item height.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01001c;
/** A larger, more robust list item height.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01001e;
/** A smaller, sleeker list item height.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01001d;
/** The preferred padding along the left edge of list items.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01001f;
/** The preferred padding along the right edge of list items.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010020;
/** Specifies the drawable used for the application logo.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002d;
/** The type of navigation to use.
<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> Normal static title text </td></tr>
<tr><td><code>listMode</code></td><td>1</td><td> The action bar will use a selection list for navigation. </td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td> The action bar will use a series of horizontal tabs for navigation. </td></tr>
</table>
*/
public static final int navigationMode=0x7f010027;
/** Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010039;
/** Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010038;
/** Default Panel Menu style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004b;
/** Default Panel Menu width.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01004a;
/** Default PopupMenu style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010049;
/** Reference to a layout to use for displaying a prompt in the dropdown for
spinnerMode="dropdown". This layout must contain a TextView with the id
{@code @android:id/text1} to be populated with the prompt text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupPromptView=0x7f010053;
/** Specifies the horizontal padding on either end for an embedded progress bar.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010036;
/** Specifies a style resource to use for an embedded progress bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010034;
/** The prompt to display when the spinner's dialog is shown.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int prompt=0x7f010051;
/** An optional query hint string to be displayed in the empty query field.
<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=0x7f01005b;
/** SearchView dropdown background
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchDropdownBackground=0x7f01005c;
/** The list item height for search results. @hide
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int searchResultListItemHeight=0x7f010065;
/** SearchView AutoCompleteTextView style
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewAutoCompleteTextView=0x7f010069;
/** SearchView close button icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewCloseIcon=0x7f01005d;
/** SearchView query refinement icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewEditQuery=0x7f010061;
/** SearchView query refinement icon background
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewEditQueryBackground=0x7f010062;
/** SearchView Go button icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewGoIcon=0x7f01005e;
/** SearchView Search icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewSearchIcon=0x7f01005f;
/** SearchView text field background for the left section
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewTextField=0x7f010063;
/** SearchView text field background for the right section
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewTextFieldRight=0x7f010064;
/** SearchView Voice button icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewVoiceIcon=0x7f010060;
/** A style that may be applied to buttons or other selectable items
that should react to pressed and focus states, but that do not
have a clear visual border along the edges.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010019;
/** How this item should display in the Action Bar, if present.
<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> Never show this item in an action bar, show it in the overflow menu instead.
Mutually exclusive with "ifRoom" and "always". </td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td> Show this item in an action bar if there is room for it as determined
by the system. Favor this option over "always" where possible.
Mutually exclusive with "never" and "always". </td></tr>
<tr><td><code>always</code></td><td>2</td><td> Always show this item in an actionbar, even if it would override
the system's limits of how much stuff to put there. This may make
your action bar look bad on some screens. In most cases you should
use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". </td></tr>
<tr><td><code>withText</code></td><td>4</td><td> When this item is shown as an action in the action bar, show a text
label with it even if it has an icon representation. </td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td> This item's action view collapses to a normal menu
item. When expanded, the action view takes over a
larger segment of its container. </td></tr>
</table>
*/
public static final int showAsAction=0x7f01004d;
/** Setting for which dividers to show.
<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=0x7f010055;
/** Default Spinner style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010058;
/** Display mode for spinner options.
<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>dialog</code></td><td>0</td><td> Spinner options will be presented to the user as a dialog window. </td></tr>
<tr><td><code>dropdown</code></td><td>1</td><td> Spinner options will be presented to the user as an inline dropdown
anchored to the spinner widget itself. </td></tr>
</table>
*/
public static final int spinnerMode=0x7f010052;
/** Default Spinner style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010057;
/** Specifies subtitle text used for navigationMode="normal"
<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=0x7f010029;
/** Specifies a style to use for subtitle text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002b;
/** Present the text in ALL CAPS. This may use a small-caps form when available.
<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=0x7f01006d;
/** Text color, typeface, size, and style for the text inside of a popup menu.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010014;
/** The preferred TextAppearance for the primary text of list items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010023;
/** The preferred TextAppearance for the primary text of small list items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010024;
/** Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010067;
/** Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010066;
/** Text color, typeface, size, and style for small text inside of a popup menu.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010015;
/** Text color for urls in search suggestions, used by things like global search
<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=0x7f010068;
/** <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=0x7f010025;
/** Specifies a style to use for title text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBar=0x7f010000;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010001;
/** A fixed height for the window along the major axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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=0x7f010006;
/** A fixed height for the window along the minor axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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=0x7f010004;
/** A fixed width for the window along the major axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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=0x7f010003;
/** A fixed width for the window along the minor axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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=0x7f010005;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowSplitActionBar=0x7f010002;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs_pre_jb=0x7f060000;
public static final int abc_action_bar_expanded_action_views_exclusive=0x7f060001;
/** Whether action menu items should be displayed in ALLCAPS or not.
Defaults to true. If this is not appropriate for specific locales
it should be disabled in that locale's resources.
*/
public static final int abc_config_actionMenuItemAllCaps=0x7f060005;
/** Whether action menu items should obey the "withText" showAsAction
flag. This may be set to false for situations where space is
extremely limited.
Whether action menu items should obey the "withText" showAsAction.
This may be set to false for situations where space is
extremely limited.
*/
public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f060004;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f060003;
public static final int abc_split_action_bar_is_narrow=0x7f060002;
}
public static final class color {
public static final int abc_search_url_text_holo=0x7f070003;
public static final int abc_search_url_text_normal=0x7f070000;
public static final int abc_search_url_text_pressed=0x7f070002;
public static final int abc_search_url_text_selected=0x7f070001;
}
public static final class dimen {
/** Default height of an action bar.
Default height of an action bar.
Default height of an action bar.
Default height of an action bar.
Default height of an action bar.
*/
public static final int abc_action_bar_default_height=0x7f080002;
/** Vertical padding around action bar icons.
Vertical padding around action bar icons.
Vertical padding around action bar icons.
Vertical padding around action bar icons.
Vertical padding around action bar icons.
*/
public static final int abc_action_bar_icon_vertical_padding=0x7f080003;
/** Size of the indeterminate Progress Bar
Size of the indeterminate Progress Bar
*/
public static final int abc_action_bar_progress_bar_size=0x7f08000a;
/** Maximum height for a stacked tab bar as part of an action bar
*/
public static final int abc_action_bar_stacked_max_height=0x7f080009;
/** Maximum width for a stacked action bar tab. This prevents
action bar tabs from becoming too wide on a wide screen when only
a few are present.
*/
public static final int abc_action_bar_stacked_tab_max_width=0x7f080001;
/** Bottom margin for action bar subtitles
Bottom margin for action bar subtitles
Bottom margin for action bar subtitles
Bottom margin for action bar subtitles
Bottom margin for action bar subtitles
*/
public static final int abc_action_bar_subtitle_bottom_margin=0x7f080007;
/** Text size for action bar subtitles
Text size for action bar subtitles
Text size for action bar subtitles
Text size for action bar subtitles
Text size for action bar subtitles
*/
public static final int abc_action_bar_subtitle_text_size=0x7f080005;
/** Top margin for action bar subtitles
Top margin for action bar subtitles
Top margin for action bar subtitles
Top margin for action bar subtitles
Top margin for action bar subtitles
*/
public static final int abc_action_bar_subtitle_top_margin=0x7f080006;
/** Text size for action bar titles
Text size for action bar titles
Text size for action bar titles
Text size for action bar titles
Text size for action bar titles
*/
public static final int abc_action_bar_title_text_size=0x7f080004;
/** Minimum width for an action button in the menu area of an action bar
Minimum width for an action button in the menu area of an action bar
Minimum width for an action button in the menu area of an action bar
*/
public static final int abc_action_button_min_width=0x7f080008;
/** The maximum width we would prefer dialogs to be. 0 if there is no
maximum (let them grow as large as the screen). Actual values are
specified for -large and -xlarge configurations.
see comment in values/config.xml
see comment in values/config.xml
*/
public static final int abc_config_prefDialogWidth=0x7f080000;
/** Width of the icon in a dropdown list
*/
public static final int abc_dropdownitem_icon_width=0x7f080010;
/** Text padding for dropdown items
*/
public static final int abc_dropdownitem_text_padding_left=0x7f08000e;
public static final int abc_dropdownitem_text_padding_right=0x7f08000f;
public static final int abc_panel_menu_list_width=0x7f08000b;
/** Preferred width of the search view.
*/
public static final int abc_search_view_preferred_width=0x7f08000d;
/** Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
*/
public static final int abc_search_view_text_min_width=0x7f08000c;
/** The platform's desired fixed height for a dialog along the major axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the major axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the major axis
(the screen is in portrait). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_height_major=0x7f080013;
/** The platform's desired fixed height for a dialog along the minor axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the minor axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the minor axis
(the screen is in landscape). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_height_minor=0x7f080014;
/** The platform's desired fixed width for a dialog along the major axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the major axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the major axis
(the screen is in landscape). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_width_major=0x7f080011;
/** The platform's desired fixed width for a dialog along the minor axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the minor axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the minor axis
(the screen is in portrait). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_width_minor=0x7f080012;
}
public static final class drawable {
public static final int abc_ab_bottom_solid_dark_holo=0x7f020000;
public static final int abc_ab_bottom_solid_light_holo=0x7f020001;
public static final int abc_ab_bottom_transparent_dark_holo=0x7f020002;
public static final int abc_ab_bottom_transparent_light_holo=0x7f020003;
public static final int abc_ab_share_pack_holo_dark=0x7f020004;
public static final int abc_ab_share_pack_holo_light=0x7f020005;
public static final int abc_ab_solid_dark_holo=0x7f020006;
public static final int abc_ab_solid_light_holo=0x7f020007;
public static final int abc_ab_stacked_solid_dark_holo=0x7f020008;
public static final int abc_ab_stacked_solid_light_holo=0x7f020009;
public static final int abc_ab_stacked_transparent_dark_holo=0x7f02000a;
public static final int abc_ab_stacked_transparent_light_holo=0x7f02000b;
public static final int abc_ab_transparent_dark_holo=0x7f02000c;
public static final int abc_ab_transparent_light_holo=0x7f02000d;
public static final int abc_cab_background_bottom_holo_dark=0x7f02000e;
public static final int abc_cab_background_bottom_holo_light=0x7f02000f;
public static final int abc_cab_background_top_holo_dark=0x7f020010;
public static final int abc_cab_background_top_holo_light=0x7f020011;
public static final int abc_ic_ab_back_holo_dark=0x7f020012;
public static final int abc_ic_ab_back_holo_light=0x7f020013;
public static final int abc_ic_cab_done_holo_dark=0x7f020014;
public static final int abc_ic_cab_done_holo_light=0x7f020015;
public static final int abc_ic_clear=0x7f020016;
public static final int abc_ic_clear_disabled=0x7f020017;
public static final int abc_ic_clear_holo_light=0x7f020018;
public static final int abc_ic_clear_normal=0x7f020019;
public static final int abc_ic_clear_search_api_disabled_holo_light=0x7f02001a;
public static final int abc_ic_clear_search_api_holo_light=0x7f02001b;
public static final int abc_ic_commit_search_api_holo_dark=0x7f02001c;
public static final int abc_ic_commit_search_api_holo_light=0x7f02001d;
public static final int abc_ic_go=0x7f02001e;
public static final int abc_ic_go_search_api_holo_light=0x7f02001f;
public static final int abc_ic_menu_moreoverflow_normal_holo_dark=0x7f020020;
public static final int abc_ic_menu_moreoverflow_normal_holo_light=0x7f020021;
public static final int abc_ic_menu_share_holo_dark=0x7f020022;
public static final int abc_ic_menu_share_holo_light=0x7f020023;
public static final int abc_ic_search=0x7f020024;
public static final int abc_ic_search_api_holo_light=0x7f020025;
public static final int abc_ic_voice_search=0x7f020026;
public static final int abc_ic_voice_search_api_holo_light=0x7f020027;
public static final int abc_item_background_holo_dark=0x7f020028;
public static final int abc_item_background_holo_light=0x7f020029;
public static final int abc_list_divider_holo_dark=0x7f02002a;
public static final int abc_list_divider_holo_light=0x7f02002b;
public static final int abc_list_focused_holo=0x7f02002c;
public static final int abc_list_longpressed_holo=0x7f02002d;
public static final int abc_list_pressed_holo_dark=0x7f02002e;
public static final int abc_list_pressed_holo_light=0x7f02002f;
public static final int abc_list_selector_background_transition_holo_dark=0x7f020030;
public static final int abc_list_selector_background_transition_holo_light=0x7f020031;
public static final int abc_list_selector_disabled_holo_dark=0x7f020032;
public static final int abc_list_selector_disabled_holo_light=0x7f020033;
public static final int abc_list_selector_holo_dark=0x7f020034;
public static final int abc_list_selector_holo_light=0x7f020035;
public static final int abc_menu_dropdown_panel_holo_dark=0x7f020036;
public static final int abc_menu_dropdown_panel_holo_light=0x7f020037;
public static final int abc_menu_hardkey_panel_holo_dark=0x7f020038;
public static final int abc_menu_hardkey_panel_holo_light=0x7f020039;
public static final int abc_search_dropdown_dark=0x7f02003a;
public static final int abc_search_dropdown_light=0x7f02003b;
public static final int abc_spinner_ab_default_holo_dark=0x7f02003c;
public static final int abc_spinner_ab_default_holo_light=0x7f02003d;
public static final int abc_spinner_ab_disabled_holo_dark=0x7f02003e;
public static final int abc_spinner_ab_disabled_holo_light=0x7f02003f;
public static final int abc_spinner_ab_focused_holo_dark=0x7f020040;
public static final int abc_spinner_ab_focused_holo_light=0x7f020041;
public static final int abc_spinner_ab_holo_dark=0x7f020042;
public static final int abc_spinner_ab_holo_light=0x7f020043;
public static final int abc_spinner_ab_pressed_holo_dark=0x7f020044;
public static final int abc_spinner_ab_pressed_holo_light=0x7f020045;
public static final int abc_tab_indicator_ab_holo=0x7f020046;
public static final int abc_tab_selected_focused_holo=0x7f020047;
public static final int abc_tab_selected_holo=0x7f020048;
public static final int abc_tab_selected_pressed_holo=0x7f020049;
public static final int abc_tab_unselected_pressed_holo=0x7f02004a;
public static final int abc_textfield_search_default_holo_dark=0x7f02004b;
public static final int abc_textfield_search_default_holo_light=0x7f02004c;
public static final int abc_textfield_search_right_default_holo_dark=0x7f02004d;
public static final int abc_textfield_search_right_default_holo_light=0x7f02004e;
public static final int abc_textfield_search_right_selected_holo_dark=0x7f02004f;
public static final int abc_textfield_search_right_selected_holo_light=0x7f020050;
public static final int abc_textfield_search_selected_holo_dark=0x7f020051;
public static final int abc_textfield_search_selected_holo_light=0x7f020052;
public static final int abc_textfield_searchview_holo_dark=0x7f020053;
public static final int abc_textfield_searchview_holo_light=0x7f020054;
public static final int abc_textfield_searchview_right_holo_dark=0x7f020055;
public static final int abc_textfield_searchview_right_holo_light=0x7f020056;
public static final int ic_launcher=0x7f020057;
}
public static final class id {
public static final int BtnA=0x7f05003e;
public static final int BtnD=0x7f050041;
public static final int BtnM=0x7f050040;
public static final int BtnS=0x7f05003f;
public static final int Edit1=0x7f05003c;
public static final int Edit2=0x7f05003d;
public static final int Result=0x7f050042;
public static final int action_bar=0x7f05001c;
public static final int action_bar_activity_content=0x7f050015;
public static final int action_bar_container=0x7f05001b;
public static final int action_bar_overlay_layout=0x7f05001f;
public static final int action_bar_root=0x7f05001a;
public static final int action_bar_subtitle=0x7f050023;
public static final int action_bar_title=0x7f050022;
public static final int action_context_bar=0x7f05001d;
public static final int action_menu_divider=0x7f050016;
public static final int action_menu_presenter=0x7f050017;
public static final int action_mode_close_button=0x7f050024;
public static final int activity_chooser_view_content=0x7f050025;
public static final int always=0x7f05000b;
public static final int beginning=0x7f050011;
public static final int checkbox=0x7f05002d;
public static final int collapseActionView=0x7f05000d;
public static final int default_activity_button=0x7f050028;
public static final int dialog=0x7f05000e;
public static final int disableHome=0x7f050008;
public static final int dropdown=0x7f05000f;
public static final int edit_query=0x7f050030;
public static final int end=0x7f050013;
public static final int expand_activities_button=0x7f050026;
public static final int expanded_menu=0x7f05002c;
public static final int home=0x7f050014;
public static final int homeAsUp=0x7f050005;
public static final int icon=0x7f05002a;
public static final int ifRoom=0x7f05000a;
public static final int image=0x7f050027;
public static final int listMode=0x7f050001;
public static final int list_item=0x7f050029;
public static final int middle=0x7f050012;
public static final int never=0x7f050009;
public static final int none=0x7f050010;
public static final int normal=0x7f050000;
public static final int progress_circular=0x7f050018;
public static final int progress_horizontal=0x7f050019;
public static final int radio=0x7f05002f;
public static final int search_badge=0x7f050032;
public static final int search_bar=0x7f050031;
public static final int search_button=0x7f050033;
public static final int search_close_btn=0x7f050038;
public static final int search_edit_frame=0x7f050034;
public static final int search_go_btn=0x7f05003a;
public static final int search_mag_icon=0x7f050035;
public static final int search_plate=0x7f050036;
public static final int search_src_text=0x7f050037;
public static final int search_voice_btn=0x7f05003b;
public static final int shortcut=0x7f05002e;
public static final int showCustom=0x7f050007;
public static final int showHome=0x7f050004;
public static final int showTitle=0x7f050006;
public static final int split_action_bar=0x7f05001e;
public static final int submit_area=0x7f050039;
public static final int tabMode=0x7f050002;
public static final int title=0x7f05002b;
public static final int top_action_bar=0x7f050020;
public static final int up=0x7f050021;
public static final int useLogo=0x7f050003;
public static final int withText=0x7f05000c;
}
public static final class integer {
/** The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
*/
public static final int abc_max_action_buttons=0x7f090000;
}
public static final class layout {
public static final int abc_action_bar_decor=0x7f030000;
public static final int abc_action_bar_decor_include=0x7f030001;
public static final int abc_action_bar_decor_overlay=0x7f030002;
public static final int abc_action_bar_home=0x7f030003;
public static final int abc_action_bar_tab=0x7f030004;
public static final int abc_action_bar_tabbar=0x7f030005;
public static final int abc_action_bar_title_item=0x7f030006;
public static final int abc_action_bar_view_list_nav_layout=0x7f030007;
public static final int abc_action_menu_item_layout=0x7f030008;
public static final int abc_action_menu_layout=0x7f030009;
public static final int abc_action_mode_bar=0x7f03000a;
public static final int abc_action_mode_close_item=0x7f03000b;
public static final int abc_activity_chooser_view=0x7f03000c;
public static final int abc_activity_chooser_view_include=0x7f03000d;
public static final int abc_activity_chooser_view_list_item=0x7f03000e;
public static final int abc_expanded_menu_layout=0x7f03000f;
public static final int abc_list_menu_item_checkbox=0x7f030010;
public static final int abc_list_menu_item_icon=0x7f030011;
public static final int abc_list_menu_item_layout=0x7f030012;
public static final int abc_list_menu_item_radio=0x7f030013;
public static final int abc_popup_menu_item_layout=0x7f030014;
public static final int abc_search_dropdown_item_icons_2line=0x7f030015;
public static final int abc_search_view=0x7f030016;
public static final int abc_simple_decor=0x7f030017;
public static final int activity_main=0x7f030018;
public static final int support_simple_spinner_dropdown_item=0x7f030019;
}
public static final class string {
public static final int Add=0x7f0a0011;
public static final int CalResult_ =0x7f0a0015;
public static final int Division=0x7f0a0014;
public static final int Multiplication=0x7f0a0013;
public static final int Number1=0x7f0a000f;
public static final int Number2=0x7f0a0010;
public static final int Substract=0x7f0a0012;
/** Content description for the action bar "home" affordance. [CHAR LIMIT=NONE]
*/
public static final int abc_action_bar_home_description=0x7f0a0001;
/** Content description for the action bar "up" affordance. [CHAR LIMIT=NONE]
*/
public static final int abc_action_bar_up_description=0x7f0a0002;
/** Content description for the action menu overflow button. [CHAR LIMIT=NONE]
*/
public static final int abc_action_menu_overflow_description=0x7f0a0003;
/** Label for the "Done" button on the far left of action mode toolbars.
*/
public static final int abc_action_mode_done=0x7f0a0000;
/** Title for a button to expand the list of activities in ActivityChooserView [CHAR LIMIT=25]
*/
public static final int abc_activity_chooser_view_see_all=0x7f0a000a;
/** ActivityChooserView - accessibility support
Description of the shwoing of a popup window with activities to choose from. [CHAR LIMIT=NONE]
*/
public static final int abc_activitychooserview_choose_application=0x7f0a0009;
/** SearchView accessibility description for clear button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_clear=0x7f0a0006;
/** SearchView accessibility description for search text field [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_query=0x7f0a0005;
/** SearchView accessibility description for search button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_search=0x7f0a0004;
/** SearchView accessibility description for submit button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_submit=0x7f0a0007;
/** SearchView accessibility description for voice button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_voice=0x7f0a0008;
/** Description of the choose target button in a ShareActionProvider (share UI). [CHAR LIMIT=NONE]
*/
public static final int abc_shareactionprovider_share_with=0x7f0a000c;
/** Description of a share target (both in the list of such or the default share button) in a ShareActionProvider (share UI). [CHAR LIMIT=NONE]
*/
public static final int abc_shareactionprovider_share_with_application=0x7f0a000b;
public static final int app_name=0x7f0a000d;
public static final int hello_world=0x7f0a000e;
}
public static final class style {
/**
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
Base application theme for API 11+. This theme completely replaces
AppBaseTheme from res/values/styles.xml on API 11+ devices.
API 11 theme customizations can go here.
Base application theme for API 14+. This theme completely replaces
AppBaseTheme from BOTH res/values/styles.xml and
res/values-v11/styles.xml on API 14+ devices.
API 14 theme customizations can go here.
*/
public static final int AppBaseTheme=0x7f0b008b;
/** Application theme.
All customizations that are NOT specific to a particular API-level can go here.
*/
public static final int AppTheme=0x7f0b008c;
/** Mimic text appearance in select_dialog_item.xml
*/
public static final int TextAppearance_AppCompat_Base_CompactMenu_Dialog=0x7f0b0063;
public static final int TextAppearance_AppCompat_Base_SearchResult=0x7f0b006d;
public static final int TextAppearance_AppCompat_Base_SearchResult_Subtitle=0x7f0b006f;
/** Search View result styles
*/
public static final int TextAppearance_AppCompat_Base_SearchResult_Title=0x7f0b006e;
public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Large=0x7f0b0069;
public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Small=0x7f0b006a;
public static final int TextAppearance_AppCompat_Light_Base_SearchResult=0x7f0b0070;
public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle=0x7f0b0072;
/**
TextAppearance.Holo.Light.SearchResult.* are private so we extend from the default
versions instead (which are exactly the same).
*/
public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Title=0x7f0b0071;
public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large=0x7f0b006b;
public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small=0x7f0b006c;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b0035;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b0034;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b0030;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b0031;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b0033;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b0032;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b001a;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0006;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0008;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0005;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0007;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b001e;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b0020;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b001d;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b001f;
public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Menu=0x7f0b0054;
public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle=0x7f0b0056;
public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse=0x7f0b0058;
public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title=0x7f0b0055;
public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse=0x7f0b0057;
public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle=0x7f0b0051;
public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse=0x7f0b0053;
public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title=0x7f0b0050;
public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse=0x7f0b0052;
public static final int TextAppearance_AppCompat_Widget_Base_DropDownItem=0x7f0b0061;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0021;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b002e;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b002f;
public static final int TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item=0x7f0b0062;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0028;
/** Themes in the "Theme.AppCompat" family will contain an action bar by default.
If Holo themes are available on the current platform version they will be used.
A limited Holo-styled action bar will be provided on platform versions older
than 3.0. (API 11)
These theme declarations contain any version-independent specification. Items
that need to vary based on platform version should be defined in the corresponding
"Theme.Base" theme.
Platform-independent theme providing an action bar in a dark-themed activity.
*/
public static final int Theme_AppCompat=0x7f0b0077;
/** Menu/item attributes
*/
public static final int Theme_AppCompat_Base_CompactMenu=0x7f0b0083;
public static final int Theme_AppCompat_Base_CompactMenu_Dialog=0x7f0b0084;
/** Menu/item attributes
*/
public static final int Theme_AppCompat_CompactMenu=0x7f0b007c;
public static final int Theme_AppCompat_CompactMenu_Dialog=0x7f0b007d;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b007a;
/** Platform-independent theme providing an action bar in a light-themed activity.
*/
public static final int Theme_AppCompat_Light=0x7f0b0078;
/** Platform-independent theme providing an action bar in a dark-themed activity.
*/
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b0079;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b007b;
/** Base platform-dependent theme
*/
public static final int Theme_Base=0x7f0b007e;
/** Base platform-dependent theme providing an action bar in a dark-themed activity.
Base platform-dependent theme providing an action bar in a dark-themed activity.
*/
public static final int Theme_Base_AppCompat=0x7f0b0080;
public static final int Theme_Base_AppCompat_Dialog_FixedSize=0x7f0b0087;
public static final int Theme_Base_AppCompat_Dialog_Light_FixedSize=0x7f0b0088;
public static final int Theme_Base_AppCompat_DialogWhenLarge=0x7f0b0085;
/**
As we have defined the theme in values-large (for compat) and values-large takes precedence
over values-v14, we need to reset back to the Holo parent in values-large-v14. As the themes
in values-v14 & values-large-v14 are exactly the same, these "double base" themes can be
inherited from in both values-v14 and values-large-v14.
*/
public static final int Theme_Base_AppCompat_DialogWhenLarge_Base=0x7f0b0089;
/** Base platform-dependent theme providing an action bar in a light-themed activity.
Base platform-dependent theme providing an action bar in a light-themed activity.
*/
public static final int Theme_Base_AppCompat_Light=0x7f0b0081;
/** Base platform-dependent theme providing a dark action bar in a light-themed activity.
Base platform-dependent theme providing a dark action bar in a light-themed activity.
*/
public static final int Theme_Base_AppCompat_Light_DarkActionBar=0x7f0b0082;
public static final int Theme_Base_AppCompat_Light_DialogWhenLarge=0x7f0b0086;
public static final int Theme_Base_AppCompat_Light_DialogWhenLarge_Base=0x7f0b008a;
/** Base platform-dependent theme providing a light-themed activity.
*/
public static final int Theme_Base_Light=0x7f0b007f;
/** Styles in here can be extended for customisation in your application. Each utilises
one of the Base styles. If Holo themes are available on the current platform version
they will be used instead of the compat styles.
*/
public static final int Widget_AppCompat_ActionBar=0x7f0b0000;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b0002;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b0011;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b0017;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b0014;
public static final int Widget_AppCompat_ActionButton=0x7f0b000b;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b000d;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b000f;
public static final int Widget_AppCompat_ActionMode=0x7f0b001b;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0b0038;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b0036;
public static final int Widget_AppCompat_Base_ActionBar=0x7f0b003a;
public static final int Widget_AppCompat_Base_ActionBar_Solid=0x7f0b003c;
public static final int Widget_AppCompat_Base_ActionBar_TabBar=0x7f0b0045;
public static final int Widget_AppCompat_Base_ActionBar_TabText=0x7f0b004b;
public static final int Widget_AppCompat_Base_ActionBar_TabView=0x7f0b0048;
/** Action Button Styles
*/
public static final int Widget_AppCompat_Base_ActionButton=0x7f0b003f;
public static final int Widget_AppCompat_Base_ActionButton_CloseMode=0x7f0b0041;
public static final int Widget_AppCompat_Base_ActionButton_Overflow=0x7f0b0043;
public static final int Widget_AppCompat_Base_ActionMode=0x7f0b004e;
public static final int Widget_AppCompat_Base_ActivityChooserView=0x7f0b0075;
/** AutoCompleteTextView styles (for SearchView)
*/
public static final int Widget_AppCompat_Base_AutoCompleteTextView=0x7f0b0073;
public static final int Widget_AppCompat_Base_DropDownItem_Spinner=0x7f0b005d;
/** Popup Menu
*/
public static final int Widget_AppCompat_Base_ListPopupWindow=0x7f0b0065;
/** Spinner Widgets
*/
public static final int Widget_AppCompat_Base_ListView_DropDown=0x7f0b005f;
public static final int Widget_AppCompat_Base_ListView_Menu=0x7f0b0064;
public static final int Widget_AppCompat_Base_PopupMenu=0x7f0b0067;
public static final int Widget_AppCompat_Base_ProgressBar=0x7f0b005a;
/** Progress Bar
*/
public static final int Widget_AppCompat_Base_ProgressBar_Horizontal=0x7f0b0059;
/** Action Bar Spinner Widgets
*/
public static final int Widget_AppCompat_Base_Spinner=0x7f0b005b;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b0024;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0b0001;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0003;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b0004;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b0012;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b0013;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0018;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0019;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0015;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0016;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0b000c;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b000e;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b0010;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b001c;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b0039;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b0037;
public static final int Widget_AppCompat_Light_Base_ActionBar=0x7f0b003b;
public static final int Widget_AppCompat_Light_Base_ActionBar_Solid=0x7f0b003d;
public static final int Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse=0x7f0b003e;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar=0x7f0b0046;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse=0x7f0b0047;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabText=0x7f0b004c;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse=0x7f0b004d;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabView=0x7f0b0049;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse=0x7f0b004a;
public static final int Widget_AppCompat_Light_Base_ActionButton=0x7f0b0040;
public static final int Widget_AppCompat_Light_Base_ActionButton_CloseMode=0x7f0b0042;
public static final int Widget_AppCompat_Light_Base_ActionButton_Overflow=0x7f0b0044;
public static final int Widget_AppCompat_Light_Base_ActionMode_Inverse=0x7f0b004f;
public static final int Widget_AppCompat_Light_Base_ActivityChooserView=0x7f0b0076;
public static final int Widget_AppCompat_Light_Base_AutoCompleteTextView=0x7f0b0074;
public static final int Widget_AppCompat_Light_Base_DropDownItem_Spinner=0x7f0b005e;
public static final int Widget_AppCompat_Light_Base_ListPopupWindow=0x7f0b0066;
public static final int Widget_AppCompat_Light_Base_ListView_DropDown=0x7f0b0060;
public static final int Widget_AppCompat_Light_Base_PopupMenu=0x7f0b0068;
public static final int Widget_AppCompat_Light_Base_Spinner=0x7f0b005c;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b0025;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b002a;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b0027;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b002c;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b0023;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0b0029;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0b0026;
public static final int Widget_AppCompat_ListView_Menu=0x7f0b002d;
public static final int Widget_AppCompat_PopupMenu=0x7f0b002b;
public static final int Widget_AppCompat_ProgressBar=0x7f0b000a;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0009;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b0022;
}
public static final class styleable {
/** ============================================
Attributes used to style the Action Bar.
These should be set on your theme; the default actionBarStyle will
propagate them to the correct elements as needed.
Please Note: when overriding attributes for an ActionBar style
you must specify each attribute twice: once with the "android:"
namespace prefix and once without.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBar_background com.example.androidcal:background}</code></td><td> Specifies a background drawable for the action bar.</td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit com.example.androidcal:backgroundSplit}</code></td><td> Specifies a background drawable for the bottom component of a split action bar.</td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked com.example.androidcal:backgroundStacked}</code></td><td> Specifies a background drawable for a second stacked row of the action bar.</td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout com.example.androidcal:customNavigationLayout}</code></td><td> Specifies a layout for custom navigation.</td></tr>
<tr><td><code>{@link #ActionBar_displayOptions com.example.androidcal:displayOptions}</code></td><td> Options affecting how the action bar is displayed.</td></tr>
<tr><td><code>{@link #ActionBar_divider com.example.androidcal:divider}</code></td><td> Specifies the drawable used for item dividers.</td></tr>
<tr><td><code>{@link #ActionBar_height com.example.androidcal:height}</code></td><td> Specifies a fixed height.</td></tr>
<tr><td><code>{@link #ActionBar_homeLayout com.example.androidcal:homeLayout}</code></td><td> Specifies a layout to use for the "home" section of the action bar.</td></tr>
<tr><td><code>{@link #ActionBar_icon com.example.androidcal:icon}</code></td><td> Specifies the drawable used for the application icon.</td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.example.androidcal:indeterminateProgressStyle}</code></td><td> Specifies a style resource to use for an indeterminate progress spinner.</td></tr>
<tr><td><code>{@link #ActionBar_itemPadding com.example.androidcal:itemPadding}</code></td><td> Specifies padding that should be applied to the left and right sides of
system-provided items in the bar.</td></tr>
<tr><td><code>{@link #ActionBar_logo com.example.androidcal:logo}</code></td><td> Specifies the drawable used for the application logo.</td></tr>
<tr><td><code>{@link #ActionBar_navigationMode com.example.androidcal:navigationMode}</code></td><td> The type of navigation to use.</td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding com.example.androidcal:progressBarPadding}</code></td><td> Specifies the horizontal padding on either end for an embedded progress bar.</td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle com.example.androidcal:progressBarStyle}</code></td><td> Specifies a style resource to use for an embedded progress bar.</td></tr>
<tr><td><code>{@link #ActionBar_subtitle com.example.androidcal:subtitle}</code></td><td> Specifies subtitle text used for navigationMode="normal" </td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle com.example.androidcal:subtitleTextStyle}</code></td><td> Specifies a style to use for subtitle text.</td></tr>
<tr><td><code>{@link #ActionBar_title com.example.androidcal:title}</code></td><td> Specifies title text used for navigationMode="normal" </td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle com.example.androidcal:titleTextStyle}</code></td><td> Specifies a style to use for title text.</td></tr>
</table>
@see #ActionBar_background
@see #ActionBar_backgroundSplit
@see #ActionBar_backgroundStacked
@see #ActionBar_customNavigationLayout
@see #ActionBar_displayOptions
@see #ActionBar_divider
@see #ActionBar_height
@see #ActionBar_homeLayout
@see #ActionBar_icon
@see #ActionBar_indeterminateProgressStyle
@see #ActionBar_itemPadding
@see #ActionBar_logo
@see #ActionBar_navigationMode
@see #ActionBar_progressBarPadding
@see #ActionBar_progressBarStyle
@see #ActionBar_subtitle
@see #ActionBar_subtitleTextStyle
@see #ActionBar_title
@see #ActionBar_titleTextStyle
*/
public static final int[] ActionBar = {
0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028,
0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c,
0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030,
0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034,
0x7f010035, 0x7f010036, 0x7f010037
};
/**
<p>
@attr description
Specifies a background drawable for the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:background
*/
public static final int ActionBar_background = 10;
/**
<p>
@attr description
Specifies a background drawable for the bottom component of a split action bar.
<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>".
<p>This is a private symbol.
@attr name com.example.androidcal:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>
@attr description
Specifies a background drawable for a second stacked row of the action bar.
<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>".
<p>This is a private symbol.
@attr name com.example.androidcal:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>
@attr description
Specifies a layout for custom navigation. Overrides navigationMode.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>
@attr description
Options affecting how the action bar is displayed.
<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>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>
<p>This is a private symbol.
@attr name com.example.androidcal:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>
@attr description
Specifies the drawable used for item dividers.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>
@attr description
Specifies a fixed height.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.example.androidcal:height
*/
public static final int ActionBar_height = 1;
/**
<p>
@attr description
Specifies a layout to use for the "home" section of the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>
@attr description
Specifies the drawable used for the application icon.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>
@attr description
Specifies a style resource to use for an indeterminate progress spinner.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>
@attr description
Specifies padding that should be applied to the left and right sides of
system-provided items in the bar.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.example.androidcal:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>
@attr description
Specifies the drawable used for the application logo.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>
@attr description
The type of navigation to use.
<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> Normal static title text </td></tr>
<tr><td><code>listMode</code></td><td>1</td><td> The action bar will use a selection list for navigation. </td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td> The action bar will use a series of horizontal tabs for navigation. </td></tr>
</table>
<p>This is a private symbol.
@attr name com.example.androidcal:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>
@attr description
Specifies the horizontal padding on either end for an embedded progress bar.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.example.androidcal:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>
@attr description
Specifies a style resource to use for an embedded progress bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>
@attr description
Specifies subtitle text used for navigationMode="normal"
<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.
<p>This is a private symbol.
@attr name com.example.androidcal:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>
@attr description
Specifies a style to use for subtitle text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>
@attr description
Specifies title text used for navigationMode="normal"
<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.
<p>This is a private symbol.
@attr name com.example.androidcal:title
*/
public static final int ActionBar_title = 0;
/**
<p>
@attr description
Specifies a style to use for title text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:titleTextStyle
*/
public static final int ActionBar_titleTextStyle = 5;
/** Valid LayoutParams for views placed in the action bar as custom views.
<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;
/** These attributes are meant to be specified and customized by the app.
The system will read and apply them as needed. These attributes control
properties of the activity window, such as whether an action bar should
be present and whether it should overlay content.
<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 #ActionBarWindow_windowActionBar com.example.androidcal:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBarWindow_windowActionBarOverlay com.example.androidcal:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBarWindow_windowFixedHeightMajor com.example.androidcal:windowFixedHeightMajor}</code></td><td> A fixed height for the window along the major axis of the screen,
that is, when in portrait.</td></tr>
<tr><td><code>{@link #ActionBarWindow_windowFixedHeightMinor com.example.androidcal:windowFixedHeightMinor}</code></td><td> A fixed height for the window along the minor axis of the screen,
that is, when in landscape.</td></tr>
<tr><td><code>{@link #ActionBarWindow_windowFixedWidthMajor com.example.androidcal:windowFixedWidthMajor}</code></td><td> A fixed width for the window along the major axis of the screen,
that is, when in landscape.</td></tr>
<tr><td><code>{@link #ActionBarWindow_windowFixedWidthMinor com.example.androidcal:windowFixedWidthMinor}</code></td><td> A fixed width for the window along the minor axis of the screen,
that is, when in portrait.</td></tr>
<tr><td><code>{@link #ActionBarWindow_windowSplitActionBar com.example.androidcal:windowSplitActionBar}</code></td><td></td></tr>
</table>
@see #ActionBarWindow_windowActionBar
@see #ActionBarWindow_windowActionBarOverlay
@see #ActionBarWindow_windowFixedHeightMajor
@see #ActionBarWindow_windowFixedHeightMinor
@see #ActionBarWindow_windowFixedWidthMajor
@see #ActionBarWindow_windowFixedWidthMinor
@see #ActionBarWindow_windowSplitActionBar
*/
public static final int[] ActionBarWindow = {
0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003,
0x7f010004, 0x7f010005, 0x7f010006
};
/**
<p>This symbol is the offset where the {@link com.example.androidcal.R.attr#windowActionBar}
attribute's value can be found in the {@link #ActionBarWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.androidcal:windowActionBar
*/
public static final int ActionBarWindow_windowActionBar = 0;
/**
<p>This symbol is the offset where the {@link com.example.androidcal.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #ActionBarWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.androidcal:windowActionBarOverlay
*/
public static final int ActionBarWindow_windowActionBarOverlay = 1;
/**
<p>
@attr description
A fixed height for the window along the major axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name com.example.androidcal:windowFixedHeightMajor
*/
public static final int ActionBarWindow_windowFixedHeightMajor = 6;
/**
<p>
@attr description
A fixed height for the window along the minor axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name com.example.androidcal:windowFixedHeightMinor
*/
public static final int ActionBarWindow_windowFixedHeightMinor = 4;
/**
<p>
@attr description
A fixed width for the window along the major axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name com.example.androidcal:windowFixedWidthMajor
*/
public static final int ActionBarWindow_windowFixedWidthMajor = 3;
/**
<p>
@attr description
A fixed width for the window along the minor axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name com.example.androidcal:windowFixedWidthMinor
*/
public static final int ActionBarWindow_windowFixedWidthMinor = 5;
/**
<p>This symbol is the offset where the {@link com.example.androidcal.R.attr#windowSplitActionBar}
attribute's value can be found in the {@link #ActionBarWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.androidcal:windowSplitActionBar
*/
public static final int ActionBarWindow_windowSplitActionBar = 2;
/** 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;
/** Size of padding on either end of a divider.
*/
public static final int[] ActionMenuView = {
};
/** Attributes that can be used with a ActionMode.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMode_background com.example.androidcal:background}</code></td><td> Specifies a background for the action mode bar.</td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit com.example.androidcal:backgroundSplit}</code></td><td> Specifies a background for the split action mode bar.</td></tr>
<tr><td><code>{@link #ActionMode_height com.example.androidcal:height}</code></td><td> Specifies a fixed height for the action mode bar.</td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle com.example.androidcal:subtitleTextStyle}</code></td><td> Specifies a style to use for subtitle text.</td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle com.example.androidcal:titleTextStyle}</code></td><td> Specifies a style to use for title text.</td></tr>
</table>
@see #ActionMode_background
@see #ActionMode_backgroundSplit
@see #ActionMode_height
@see #ActionMode_subtitleTextStyle
@see #ActionMode_titleTextStyle
*/
public static final int[] ActionMode = {
0x7f010026, 0x7f01002a, 0x7f01002b, 0x7f01002f,
0x7f010031
};
/**
<p>
@attr description
Specifies a background for the action mode bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:background
*/
public static final int ActionMode_background = 3;
/**
<p>
@attr description
Specifies a background for the split action mode bar.
<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>".
<p>This is a private symbol.
@attr name com.example.androidcal:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>
@attr description
Specifies a fixed height for the action mode bar.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.example.androidcal:height
*/
public static final int ActionMode_height = 0;
/**
<p>
@attr description
Specifies a style to use for subtitle text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>
@attr description
Specifies a style to use for title text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:titleTextStyle
*/
public static final int ActionMode_titleTextStyle = 1;
/** Attrbitutes for a ActivityChooserView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.example.androidcal:expandActivityOverflowButtonDrawable}</code></td><td> The drawable to show in the button for expanding the activities overflow popup.</td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount com.example.androidcal:initialActivityCount}</code></td><td> The maximal number of items initially shown in the activity list.</td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f01006a, 0x7f01006b
};
/**
<p>
@attr description
The drawable to show in the button for expanding the activities overflow popup.
<strong>Note:</strong> Clients would like to set this drawable
as a clue about the action the chosen activity will perform. For
example, if share activity is to be chosen the drawable should
give a clue that sharing is to be performed.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>
@attr description
The maximal number of items initially shown in the activity list.
<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.
<p>This is a private symbol.
@attr name com.example.androidcal:initialActivityCount
*/
public static final int ActivityChooserView_initialActivityCount = 0;
/** Attributes that can be used with a CompatTextView.
<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 #CompatTextView_textAllCaps com.example.androidcal:textAllCaps}</code></td><td> Present the text in ALL CAPS.</td></tr>
</table>
@see #CompatTextView_textAllCaps
*/
public static final int[] CompatTextView = {
0x7f01006d
};
/**
<p>
@attr description
Present the text in ALL CAPS. This may use a small-caps form when available.
<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>".
<p>This is a private symbol.
@attr name com.example.androidcal:textAllCaps
*/
public static final int CompatTextView_textAllCaps = 0;
/** Attributes that can be used with a LinearLayoutICS.
<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 #LinearLayoutICS_divider com.example.androidcal:divider}</code></td><td> Drawable to use as a vertical divider between buttons.</td></tr>
<tr><td><code>{@link #LinearLayoutICS_dividerPadding com.example.androidcal:dividerPadding}</code></td><td> Size of padding on either end of a divider.</td></tr>
<tr><td><code>{@link #LinearLayoutICS_showDividers com.example.androidcal:showDividers}</code></td><td> Setting for which dividers to show.</td></tr>
</table>
@see #LinearLayoutICS_divider
@see #LinearLayoutICS_dividerPadding
@see #LinearLayoutICS_showDividers
*/
public static final int[] LinearLayoutICS = {
0x7f01002e, 0x7f010055, 0x7f010056
};
/**
<p>
@attr description
Drawable to use as a vertical divider between buttons.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:divider
*/
public static final int LinearLayoutICS_divider = 0;
/**
<p>
@attr description
Size of padding on either end of a divider.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.example.androidcal:dividerPadding
*/
public static final int LinearLayoutICS_dividerPadding = 2;
/**
<p>
@attr description
Setting for which dividers to show.
<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>
<p>This is a private symbol.
@attr name com.example.androidcal:showDividers
*/
public static final int LinearLayoutICS_showDividers = 1;
/** Base attributes that are available to all groups.
<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> Whether the items are capable of displaying a check mark.</td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td> Whether the items are enabled.</td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td> The ID of the group.</td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td> The category applied to all items within this group.</td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td> The order within the category applied to all items within this group.</td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td> Whether the items are shown/visible.</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>
@attr description
Whether the items are capable of displaying a check mark.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#checkableBehavior}.
@attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior = 5;
/**
<p>
@attr description
Whether the items are enabled.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#enabled}.
@attr name android:enabled
*/
public static final int MenuGroup_android_enabled = 0;
/**
<p>
@attr description
The ID of the group.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#id}.
@attr name android:id
*/
public static final int MenuGroup_android_id = 1;
/**
<p>
@attr description
The category applied to all items within this group.
(This will be or'ed with the orderInCategory attribute.)
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#menuCategory}.
@attr name android:menuCategory
*/
public static final int MenuGroup_android_menuCategory = 3;
/**
<p>
@attr description
The order within the category applied to all items within this group.
(This will be or'ed with the category attribute.)
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#orderInCategory}.
@attr name android:orderInCategory
*/
public static final int MenuGroup_android_orderInCategory = 4;
/**
<p>
@attr description
Whether the items are shown/visible.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#visible}.
@attr name android:visible
*/
public static final int MenuGroup_android_visible = 2;
/** Base attributes that are available to all Item objects.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuItem_actionLayout com.example.androidcal:actionLayout}</code></td><td> An optional layout to be used as an action view.</td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass com.example.androidcal:actionProviderClass}</code></td><td> The name of an optional ActionProvider class to instantiate an action view
and perform operations such as default action for that menu item.</td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass com.example.androidcal:actionViewClass}</code></td><td> The name of an optional View class to instantiate and use as an
action view.</td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td> The alphabetic shortcut key.</td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td> Whether the item is capable of displaying a check mark.</td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td> Whether the item is checked.</td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td> Whether the item is enabled.</td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td> The icon associated with this item.</td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td> The ID of the item.</td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td> The category applied to the item.</td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td> The numeric shortcut key.</td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td> Name of a method on the Context used to inflate the menu that will be
called when the item is clicked.</td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td> The order within the category applied to the item.</td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td> The title associated with the item.</td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td> The condensed title associated with the item.</td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td> Whether the item is shown/visible.</td></tr>
<tr><td><code>{@link #MenuItem_showAsAction com.example.androidcal:showAsAction}</code></td><td> How this item should display in the Action Bar, if present.</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, 0x7f01004d, 0x7f01004e, 0x7f01004f,
0x7f010050
};
/**
<p>
@attr description
An optional layout to be used as an action view.
See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:actionLayout
*/
public static final int MenuItem_actionLayout = 14;
/**
<p>
@attr description
The name of an optional ActionProvider class to instantiate an action view
and perform operations such as default action for that menu item.
See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
for more info.
<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.
<p>This is a private symbol.
@attr name com.example.androidcal:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 16;
/**
<p>
@attr description
The name of an optional View class to instantiate and use as an
action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
<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.
<p>This is a private symbol.
@attr name com.example.androidcal:actionViewClass
*/
public static final int MenuItem_actionViewClass = 15;
/**
<p>
@attr description
The alphabetic shortcut key. This is the shortcut when using a keyboard
with alphabetic keys.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#alphabeticShortcut}.
@attr name android:alphabeticShortcut
*/
public static final int MenuItem_android_alphabeticShortcut = 9;
/**
<p>
@attr description
Whether the item is capable of displaying a check mark.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#checkable}.
@attr name android:checkable
*/
public static final int MenuItem_android_checkable = 11;
/**
<p>
@attr description
Whether the item is checked. Note that you must first have enabled checking with
the checkable attribute or else the check mark will not appear.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#checked}.
@attr name android:checked
*/
public static final int MenuItem_android_checked = 3;
/**
<p>
@attr description
Whether the item is enabled.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#enabled}.
@attr name android:enabled
*/
public static final int MenuItem_android_enabled = 1;
/**
<p>
@attr description
The icon associated with this item. This icon will not always be shown, so
the title should be sufficient in describing this item.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#icon}.
@attr name android:icon
*/
public static final int MenuItem_android_icon = 0;
/**
<p>
@attr description
The ID of the item.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#id}.
@attr name android:id
*/
public static final int MenuItem_android_id = 2;
/**
<p>
@attr description
The category applied to the item.
(This will be or'ed with the orderInCategory attribute.)
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#menuCategory}.
@attr name android:menuCategory
*/
public static final int MenuItem_android_menuCategory = 5;
/**
<p>
@attr description
The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key)
keyboard.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#numericShortcut}.
@attr name android:numericShortcut
*/
public static final int MenuItem_android_numericShortcut = 10;
/**
<p>
@attr description
Name of a method on the Context used to inflate the menu that will be
called when the item is clicked.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#onClick}.
@attr name android:onClick
*/
public static final int MenuItem_android_onClick = 12;
/**
<p>
@attr description
The order within the category applied to the item.
(This will be or'ed with the category attribute.)
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#orderInCategory}.
@attr name android:orderInCategory
*/
public static final int MenuItem_android_orderInCategory = 6;
/**
<p>
@attr description
The title associated with the item.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#title}.
@attr name android:title
*/
public static final int MenuItem_android_title = 7;
/**
<p>
@attr description
The condensed title associated with the item. This is used in situations where the
normal title may be too long to be displayed.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#titleCondensed}.
@attr name android:titleCondensed
*/
public static final int MenuItem_android_titleCondensed = 8;
/**
<p>
@attr description
Whether the item is shown/visible.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#visible}.
@attr name android:visible
*/
public static final int MenuItem_android_visible = 4;
/**
<p>
@attr description
How this item should display in the Action Bar, if present.
<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> Never show this item in an action bar, show it in the overflow menu instead.
Mutually exclusive with "ifRoom" and "always". </td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td> Show this item in an action bar if there is room for it as determined
by the system. Favor this option over "always" where possible.
Mutually exclusive with "never" and "always". </td></tr>
<tr><td><code>always</code></td><td>2</td><td> Always show this item in an actionbar, even if it would override
the system's limits of how much stuff to put there. This may make
your action bar look bad on some screens. In most cases you should
use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". </td></tr>
<tr><td><code>withText</code></td><td>4</td><td> When this item is shown as an action in the action bar, show a text
label with it even if it has an icon representation. </td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td> This item's action view collapses to a normal menu
item. When expanded, the action view takes over a
larger segment of its container. </td></tr>
</table>
<p>This is a private symbol.
@attr name com.example.androidcal: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> Default background for the menu header.</td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td> Default horizontal divider between rows of menu items.</td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td> Default background for each menu item.</td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td> Default disabled icon alpha for each menu item that shows an icon.</td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td> Default appearance of menu item text.</td></tr>
<tr><td><code>{@link #MenuView_android_preserveIconSpacing android:preserveIconSpacing}</code></td><td> Whether space should be reserved in layout when an icon is missing.</td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td> Default vertical divider between menu items.</td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td> Default animations for the menu.</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_preserveIconSpacing
@see #MenuView_android_verticalDivider
@see #MenuView_android_windowAnimationStyle
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x01010438
};
/**
<p>
@attr description
Default background for the menu header.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#headerBackground}.
@attr name android:headerBackground
*/
public static final int MenuView_android_headerBackground = 4;
/**
<p>
@attr description
Default horizontal divider between rows of menu items.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#horizontalDivider}.
@attr name android:horizontalDivider
*/
public static final int MenuView_android_horizontalDivider = 2;
/**
<p>
@attr description
Default background for each menu item.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#itemBackground}.
@attr name android:itemBackground
*/
public static final int MenuView_android_itemBackground = 5;
/**
<p>
@attr description
Default disabled icon alpha for each menu item that shows an icon.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#itemIconDisabledAlpha}.
@attr name android:itemIconDisabledAlpha
*/
public static final int MenuView_android_itemIconDisabledAlpha = 6;
/**
<p>
@attr description
Default appearance of menu item text.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#itemTextAppearance}.
@attr name android:itemTextAppearance
*/
public static final int MenuView_android_itemTextAppearance = 1;
/**
<p>
@attr description
Whether space should be reserved in layout when an icon is missing.
<p>This is a private symbol.
@attr name android:preserveIconSpacing
*/
public static final int MenuView_android_preserveIconSpacing = 7;
/**
<p>
@attr description
Default vertical divider between menu items.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#verticalDivider}.
@attr name android:verticalDivider
*/
public static final int MenuView_android_verticalDivider = 3;
/**
<p>
@attr description
Default animations for the menu.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#windowAnimationStyle}.
@attr name android:windowAnimationStyle
*/
public static final int MenuView_android_windowAnimationStyle = 0;
/** Attributes that can be used with a SearchView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td> The IME options to set on the query text field.</td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td> The input type to set on the query text field.</td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td> An optional maximum width of the SearchView.</td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault com.example.androidcal:iconifiedByDefault}</code></td><td> The default state of the SearchView.</td></tr>
<tr><td><code>{@link #SearchView_queryHint com.example.androidcal:queryHint}</code></td><td> An optional query hint string to be displayed in the empty query field.</td></tr>
</table>
@see #SearchView_android_imeOptions
@see #SearchView_android_inputType
@see #SearchView_android_maxWidth
@see #SearchView_iconifiedByDefault
@see #SearchView_queryHint
*/
public static final int[] SearchView = {
0x0101011f, 0x01010220, 0x01010264, 0x7f01005a,
0x7f01005b
};
/**
<p>
@attr description
The IME options to set on the query text field.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#imeOptions}.
@attr name android:imeOptions
*/
public static final int SearchView_android_imeOptions = 2;
/**
<p>
@attr description
The input type to set on the query text field.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#inputType}.
@attr name android:inputType
*/
public static final int SearchView_android_inputType = 1;
/**
<p>
@attr description
An optional maximum width of the SearchView.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#maxWidth}.
@attr name android:maxWidth
*/
public static final int SearchView_android_maxWidth = 0;
/**
<p>
@attr description
The default state of the SearchView. If true, it will be iconified when not in
use and expanded when clicked.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.example.androidcal:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 3;
/**
<p>
@attr description
An optional query hint string to be displayed in the empty query field.
<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.
<p>This is a private symbol.
@attr name com.example.androidcal:queryHint
*/
public static final int SearchView_queryHint = 4;
/** 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_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td> Horizontal offset from the spinner widget for positioning the dropdown
in spinnerMode="dropdown".</td></tr>
<tr><td><code>{@link #Spinner_android_dropDownSelector android:dropDownSelector}</code></td><td> List selector to use for spinnerMode="dropdown" display.</td></tr>
<tr><td><code>{@link #Spinner_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td> Vertical offset from the spinner widget for positioning the dropdown in
spinnerMode="dropdown".</td></tr>
<tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td> Width of the dropdown in spinnerMode="dropdown".</td></tr>
<tr><td><code>{@link #Spinner_android_gravity android:gravity}</code></td><td> Gravity setting for positioning the currently selected item.</td></tr>
<tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td> Background drawable to use for the dropdown in spinnerMode="dropdown".</td></tr>
<tr><td><code>{@link #Spinner_disableChildrenWhenDisabled com.example.androidcal:disableChildrenWhenDisabled}</code></td><td> Whether this spinner should mark child views as enabled/disabled when
the spinner itself is enabled/disabled.</td></tr>
<tr><td><code>{@link #Spinner_popupPromptView com.example.androidcal:popupPromptView}</code></td><td> Reference to a layout to use for displaying a prompt in the dropdown for
spinnerMode="dropdown".</td></tr>
<tr><td><code>{@link #Spinner_prompt com.example.androidcal:prompt}</code></td><td> The prompt to display when the spinner's dialog is shown.</td></tr>
<tr><td><code>{@link #Spinner_spinnerMode com.example.androidcal:spinnerMode}</code></td><td> Display mode for spinner options.</td></tr>
</table>
@see #Spinner_android_dropDownHorizontalOffset
@see #Spinner_android_dropDownSelector
@see #Spinner_android_dropDownVerticalOffset
@see #Spinner_android_dropDownWidth
@see #Spinner_android_gravity
@see #Spinner_android_popupBackground
@see #Spinner_disableChildrenWhenDisabled
@see #Spinner_popupPromptView
@see #Spinner_prompt
@see #Spinner_spinnerMode
*/
public static final int[] Spinner = {
0x010100af, 0x01010175, 0x01010176, 0x01010262,
0x010102ac, 0x010102ad, 0x7f010051, 0x7f010052,
0x7f010053, 0x7f010054
};
/**
<p>
@attr description
Horizontal offset from the spinner widget for positioning the dropdown
in spinnerMode="dropdown".
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#dropDownHorizontalOffset}.
@attr name android:dropDownHorizontalOffset
*/
public static final int Spinner_android_dropDownHorizontalOffset = 4;
/**
<p>
@attr description
List selector to use for spinnerMode="dropdown" display.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#dropDownSelector}.
@attr name android:dropDownSelector
*/
public static final int Spinner_android_dropDownSelector = 1;
/**
<p>
@attr description
Vertical offset from the spinner widget for positioning the dropdown in
spinnerMode="dropdown".
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#dropDownVerticalOffset}.
@attr name android:dropDownVerticalOffset
*/
public static final int Spinner_android_dropDownVerticalOffset = 5;
/**
<p>
@attr description
Width of the dropdown in spinnerMode="dropdown".
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#dropDownWidth}.
@attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth = 3;
/**
<p>
@attr description
Gravity setting for positioning the currently selected item.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#gravity}.
@attr name android:gravity
*/
public static final int Spinner_android_gravity = 0;
/**
<p>
@attr description
Background drawable to use for the dropdown in spinnerMode="dropdown".
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#popupBackground}.
@attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground = 2;
/**
<p>
@attr description
Whether this spinner should mark child views as enabled/disabled when
the spinner itself is enabled/disabled.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.example.androidcal:disableChildrenWhenDisabled
*/
public static final int Spinner_disableChildrenWhenDisabled = 9;
/**
<p>
@attr description
Reference to a layout to use for displaying a prompt in the dropdown for
spinnerMode="dropdown". This layout must contain a TextView with the id
{@code @android:id/text1} to be populated with the prompt text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:popupPromptView
*/
public static final int Spinner_popupPromptView = 8;
/**
<p>
@attr description
The prompt to display when the spinner's dialog is shown.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:prompt
*/
public static final int Spinner_prompt = 6;
/**
<p>
@attr description
Display mode for spinner options.
<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>dialog</code></td><td>0</td><td> Spinner options will be presented to the user as a dialog window. </td></tr>
<tr><td><code>dropdown</code></td><td>1</td><td> Spinner options will be presented to the user as an inline dropdown
anchored to the spinner widget itself. </td></tr>
</table>
<p>This is a private symbol.
@attr name com.example.androidcal:spinnerMode
*/
public static final int Spinner_spinnerMode = 7;
/** These are the standard attributes that make up a complete theme.
<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 #Theme_actionDropDownStyle com.example.androidcal:actionDropDownStyle}</code></td><td> Default ActionBar dropdown style.</td></tr>
<tr><td><code>{@link #Theme_dropdownListPreferredItemHeight com.example.androidcal:dropdownListPreferredItemHeight}</code></td><td> The preferred item height for dropdown lists.</td></tr>
<tr><td><code>{@link #Theme_listChoiceBackgroundIndicator com.example.androidcal:listChoiceBackgroundIndicator}</code></td><td> Drawable used as a background for selected list items.</td></tr>
<tr><td><code>{@link #Theme_panelMenuListTheme com.example.androidcal:panelMenuListTheme}</code></td><td> Default Panel Menu style.</td></tr>
<tr><td><code>{@link #Theme_panelMenuListWidth com.example.androidcal:panelMenuListWidth}</code></td><td> Default Panel Menu width.</td></tr>
<tr><td><code>{@link #Theme_popupMenuStyle com.example.androidcal:popupMenuStyle}</code></td><td> Default PopupMenu style.</td></tr>
</table>
@see #Theme_actionDropDownStyle
@see #Theme_dropdownListPreferredItemHeight
@see #Theme_listChoiceBackgroundIndicator
@see #Theme_panelMenuListTheme
@see #Theme_panelMenuListWidth
@see #Theme_popupMenuStyle
*/
public static final int[] Theme = {
0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a,
0x7f01004b, 0x7f01004c
};
/**
<p>
@attr description
Default ActionBar dropdown style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:actionDropDownStyle
*/
public static final int Theme_actionDropDownStyle = 0;
/**
<p>
@attr description
The preferred item height for dropdown lists.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.example.androidcal:dropdownListPreferredItemHeight
*/
public static final int Theme_dropdownListPreferredItemHeight = 1;
/**
<p>
@attr description
Drawable used as a background for selected list items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:listChoiceBackgroundIndicator
*/
public static final int Theme_listChoiceBackgroundIndicator = 5;
/**
<p>
@attr description
Default Panel Menu style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:panelMenuListTheme
*/
public static final int Theme_panelMenuListTheme = 4;
/**
<p>
@attr description
Default Panel Menu width.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.example.androidcal:panelMenuListWidth
*/
public static final int Theme_panelMenuListWidth = 3;
/**
<p>
@attr description
Default PopupMenu style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.example.androidcal:popupMenuStyle
*/
public static final int Theme_popupMenuStyle = 2;
/** 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> Boolean that controls whether a view can take focus.</td></tr>
<tr><td><code>{@link #View_paddingEnd com.example.androidcal:paddingEnd}</code></td><td> Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.</td></tr>
<tr><td><code>{@link #View_paddingStart com.example.androidcal:paddingStart}</code></td><td> Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.</td></tr>
</table>
@see #View_android_focusable
@see #View_paddingEnd
@see #View_paddingStart
*/
public static final int[] View = {
0x010100da, 0x7f010038, 0x7f010039
};
/**
<p>
@attr description
Boolean that controls whether a view can take focus. By default the user can not
move focus to a view; by setting this attribute to true the view is
allowed to take focus. This value does not impact the behavior of
directly calling {@link android.view.View#requestFocus}, which will
always request focus regardless of this view. It only impacts where
focus navigation will try to move focus.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#focusable}.
@attr name android:focusable
*/
public static final int View_android_focusable = 0;
/**
<p>
@attr description
Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.example.androidcal:paddingEnd
*/
public static final int View_paddingEnd = 2;
/**
<p>
@attr description
Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.example.androidcal:paddingStart
*/
public static final int View_paddingStart = 1;
};
}
| [
"[email protected]"
]
| |
298b11faaf4d974cfad31249acf61d055ca3057e | 01febbf88c620283ed4ac9daabd4f5da0fba8178 | /dracarys-job-core/src/main/java/io/github/junhuhdev/dracarys/jobrunr/storage/nosql/mongo/MongoUtils.java | 481214a0342aed9677418cb53e8f2d10bb9083af | []
| no_license | junhuhdev/dracarys-jobrunr | 300df1dc82b76ce8f3c01a982162a3b6072b34a6 | 0966a177f495c31ac6a2c7c1e317845ad8a7a269 | refs/heads/master | 2023-02-21T09:14:21.280392 | 2021-01-19T04:35:24 | 2021-01-19T04:35:24 | 328,041,666 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,621 | java | package io.github.junhuhdev.dracarys.jobrunr.storage.nosql.mongo;
import org.bson.BsonBinarySubType;
import org.bson.Document;
import org.bson.UuidRepresentation;
import org.bson.types.Binary;
import java.util.UUID;
import static io.github.junhuhdev.dracarys.jobrunr.common.JobRunrException.shouldNotHappenException;
import static org.bson.internal.UuidHelper.decodeBinaryToUuid;
public class MongoUtils {
private MongoUtils() {
}
//sorry about this -> necessary to be compatible with MongoDB Java Driver 3 and 4
//see https://github.com/jobrunr/jobrunr/issues/55
static UUID getIdAsUUID(Document document) {
if (document.get("_id") instanceof UUID) {
return document.get("_id", UUID.class);
}
Binary idAsBinary = document.get("_id", Binary.class);
if (BsonBinarySubType.isUuid(idAsBinary.getType())) {
if (idAsBinary.getType() == BsonBinarySubType.UUID_STANDARD.getValue()) {
return decodeBinaryToUuid(clone(idAsBinary.getData()), idAsBinary.getType(), UuidRepresentation.STANDARD);
} else if (idAsBinary.getType() == BsonBinarySubType.UUID_LEGACY.getValue()) {
return decodeBinaryToUuid(clone(idAsBinary.getData()), idAsBinary.getType(), UuidRepresentation.JAVA_LEGACY);
}
}
throw shouldNotHappenException("Unknown id: " + document.get("_id").getClass());
}
public static byte[] clone(final byte[] array) {
final byte[] result = new byte[array.length];
System.arraycopy(array, 0, result, 0, array.length);
return result;
}
}
| [
"[email protected]"
]
| |
3b23f32ec3bcf6310a10f08123fd0930ded3139e | 0963125ded363c7ebe0e1baf53958e91cffada19 | /app/src/main/java/com/jude/joy/model/bean/ImageJoy.java | 99597f7639d9095fecf2a1eb5cb1203fa602de00 | []
| no_license | sunnyvip9/Joy | db0bf20553c97abbe49482c67f1aaf39093baf3a | 92a48d8699adba1a711e80810b44ebf5bd80fd9a | refs/heads/master | 2021-01-15T14:02:33.711510 | 2016-03-18T07:41:26 | 2016-03-18T07:41:26 | 54,182,985 | 1 | 0 | null | 2016-03-18T07:40:05 | 2016-03-18T07:40:04 | null | UTF-8 | Java | false | false | 890 | java | package com.jude.joy.model.bean;
/**
* Created by Mr.Jude on 2015/8/20.
*/
public class ImageJoy {
/**
* ct : 2015-08-13 13:10:36.891
* img : http://img.hao123.com/data/3_1b72caa7998cf674fecb4f334cf9d356_430
* title : 牙膏还有这技能。
* type : 2
*/
private String ct;
private String img;
private String title;
private int type;
public void setCt(String ct) {
this.ct = ct;
}
public void setImg(String img) {
this.img = img;
}
public void setTitle(String title) {
this.title = title;
}
public void setType(int type) {
this.type = type;
}
public String getCt() {
return ct;
}
public String getImg() {
return img;
}
public String getTitle() {
return title;
}
public int getType() {
return type;
}
}
| [
"[email protected]"
]
| |
3ffdf27b2077d4d6c9c2438e4b0893e8ba3dd84b | 8574ed9020b186111a54522bb71953c96de5654e | /castle/gen/generator/CastleGen.java | 15e0f0974af7a730e1f77f22fcc281cb44c8eec1 | []
| no_license | Taggme/MinecraftProceduralCastles | 3060bc75e4ccabcd488fa33c99da592cd650bea2 | 80d0b4647ef83c38a5762b7afd0126e398654da4 | refs/heads/master | 2020-04-09T06:37:08.531953 | 2014-05-28T03:41:50 | 2014-05-28T03:41:50 | 20,244,060 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 25,244 | java | package castle.gen.generator;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Deque;
import java.util.Random;
import com.sun.xml.internal.bind.v2.schemagen.xmlschema.List;
import net.minecraft.block.Block;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntityChest;
import net.minecraft.world.World;
public class CastleGen {
public class Ladder_Cord
{
public int XCoord;
public int YCoord;
public int ZCoord;
public int Dir;
public int Spawn;
public int Floor;
}
public static final int RoomWidth = 8;
public static final int RoomHeight = 5;
public static final int RoomNorth = 0;
public static final int RoomEast = 1;
public static final int RoomSouth = 2;
public static final int RoomWest = 3;
public static final int SpawnOut = 40;
public static final int CastleDepth = 7;
public static final int CastleHeight = 7;
private static final Ladder_Cord Ladder_Cord = null;
public static int CastleMinX;
public static int CastleMinZ;
public static int CastleMaxX;
public static int CastleMaxZ;
public static Deque<CastleChunk> chunks[] = new ArrayDeque[CastleHeight ];
public static Deque<CastleChunk> finalize = new ArrayDeque();
public static void GenCastleInit(){
for(int floors = 0; floors < CastleHeight; floors++)
{
chunks[floors] = new ArrayDeque();
}
}
public static void GenCastleEnterence(World world, Random rand,int chunkX, int chunkZ)
{
for(int floors = 0; floors < CastleHeight; floors++)
{
chunks[floors].clear();
}
finalize.clear();
int XCoord = chunkX + (rand.nextInt() % 2) * 8;
int YCoord = 185;
int ZCoord = chunkZ + (rand.nextInt() % 2) * 8;
while (world.isAirBlock(XCoord, YCoord - 1, ZCoord) && YCoord > 2)
{
--YCoord;
}
Block ground = world.getBlock(XCoord, YCoord - 1, ZCoord);
if(ground == Blocks.dirt || ground == Blocks.grass)
{
int dir = rand.nextInt(4);
int XCoord2 = XCoord;
int ZCoord2 = ZCoord;
switch(dir)
{
case RoomNorth:
CastleMaxX = XCoord - RoomWidth;
CastleMinX = XCoord - RoomWidth * (CastleDepth + 1);
CastleMinZ = ZCoord - RoomWidth * CastleDepth / 2;
CastleMaxZ = ZCoord + RoomWidth * CastleDepth / 2;
break;
case RoomEast:
CastleMaxZ = ZCoord - RoomWidth;
CastleMinZ = ZCoord - RoomWidth * (CastleDepth + 1);
CastleMinX = XCoord - RoomWidth * CastleDepth / 2;
CastleMaxX = XCoord + RoomWidth * CastleDepth / 2;
break;
case RoomSouth:
CastleMaxX = XCoord + RoomWidth * (CastleDepth + 1);
CastleMinX = XCoord + RoomWidth;
CastleMinZ = ZCoord - RoomWidth * CastleDepth / 2;
CastleMaxZ = ZCoord + RoomWidth * CastleDepth / 2;
break;
case RoomWest:
CastleMaxZ = ZCoord + RoomWidth * (CastleDepth + 1);
CastleMinZ = ZCoord + RoomWidth;
CastleMinX = XCoord - RoomWidth * CastleDepth / 2;
CastleMaxX = XCoord + RoomWidth * CastleDepth / 2;
break;
}
GenCastleFloor(world, rand, XCoord2, YCoord, ZCoord2);
CastleGen.GenCastleRoom(world, rand, XCoord, YCoord, ZCoord, dir);
chunks[0].addLast(new GenCastleRoomSplitter(world, rand, XCoord, YCoord, ZCoord, dir, 0, 0));
for(int floors = 0; floors < CastleHeight; floors++)
{
while(!chunks[floors].isEmpty())
{
chunks[floors].getFirst().Generate();
finalize.addLast(chunks[floors].getFirst());
chunks[floors].removeFirst();
}
}
while(!finalize.isEmpty())
{
finalize.getFirst().Window();
finalize.removeFirst();
}
}
}
public static boolean GenCastleCanGen(World world, Random rand, int XCoord, int YCoord, int ZCoord, int direct, int spawn, int floor)
{
if(spawn >= SpawnOut || floor >= CastleHeight)
{
return false;
}
switch(direct)
{
case RoomNorth:
XCoord -= RoomWidth;
if(XCoord < CastleMinX)
return false;
break;
case RoomEast:
ZCoord -= RoomWidth;
if(ZCoord < CastleMinZ)
return false;
break;
case RoomSouth:
XCoord += RoomWidth;
if(XCoord > CastleMaxX)
return false;
break;
case RoomWest:
ZCoord += RoomWidth;
if(ZCoord > CastleMaxZ)
return false;
break;
}
if(world.getBlock(XCoord + RoomWidth / 2, YCoord - 1, ZCoord) == Blocks.stonebrick)
{
return false;
}
if(world.getBlock(XCoord + RoomWidth / 2, YCoord - 1, ZCoord + RoomWidth / 2) == Blocks.stonebrick)
{
return false;
}
if(world.getBlock(XCoord, YCoord - 1, ZCoord + RoomWidth / 2) == Blocks.stonebrick)
{
return false;
}
if(world.getBlock(XCoord, YCoord - RoomHeight - 1, ZCoord) != Blocks.stonebrick && floor != 0)
{
return false;
}
return true;
}
public static boolean GenCastleCanGenNeedAir(World world, Random rand, int XCoord, int YCoord, int ZCoord, int direct)
{
switch(direct)
{
case RoomNorth:
XCoord -= RoomWidth;
if(XCoord < CastleMinX)
return false;
break;
case RoomEast:
ZCoord -= RoomWidth;
if(ZCoord < CastleMinZ)
return false;
break;
case RoomSouth:
XCoord += RoomWidth;
if(XCoord > CastleMaxX)
return false;
break;
case RoomWest:
ZCoord += RoomWidth;
if(ZCoord > CastleMaxZ)
return false;
break;
}
if(world.getBlock(XCoord + RoomWidth / 2, YCoord - 1, ZCoord) == Blocks.stonebrick)
{
return false;
}
if(world.getBlock(XCoord + RoomWidth / 2, YCoord - 1, ZCoord + RoomWidth / 2) == Blocks.stonebrick)
{
return false;
}
if(world.getBlock(XCoord, YCoord - 1, ZCoord + RoomWidth / 2) == Blocks.stonebrick)
{
return false;
}
if(world.getBlock(XCoord, YCoord - RoomHeight - 1, ZCoord) == Blocks.stonebrick)
{
return false;
}
return true;
}
/*
public static void GenCastleRoomConnector(World world, Random rand, int XCoord, int YCoord, int ZCoord, int direct, int spawn, int floor)
{
switch(direct)
{
case RoomNorth:
XCoord -= RoomWidth;
break;
case RoomEast:
ZCoord -= RoomWidth;
break;
case RoomSouth:
XCoord += RoomWidth;
break;
case RoomWest:
ZCoord += RoomWidth;
break;
}
GenCastleRoom(world, rand, XCoord, YCoord, ZCoord);
GenCastleDoor(world, rand, XCoord, YCoord, ZCoord, (direct + 2) % 4);
GenCastleWindows(world, rand, XCoord, YCoord, ZCoord);
for(int tries = 0; tries < 60; tries++)
{
int dirout = rand.nextInt() % 4;
if(GenCastleCanGen(world, rand, XCoord, YCoord, ZCoord, dirout, spawn + 1, floor))
{
GenCastleDoor(world, rand, XCoord, YCoord, ZCoord, dirout);
int rooms = rand.nextInt() % 100;
if(rooms < 70){
GenCastleRoomSplitter(world, rand, XCoord, YCoord, ZCoord, dirout, spawn + 1, floor);
}
else if(rooms < 80){
GenCastleRoomLadder(world, rand, XCoord, YCoord, ZCoord, dirout, spawn + 1, floor);
}
else{
GenCastleRoomTreasure(world, rand, XCoord, YCoord, ZCoord, dirout, spawn + 1, floor);
}
return;
}
}
}
*/
/*
public static void GenCastleRoomSplitter(World world, Random rand, int XCoord, int YCoord, int ZCoord, int direct, int spawn, int floor)
{
switch(direct)
{
case RoomNorth:
XCoord -= RoomWidth;
break;
case RoomEast:
ZCoord -= RoomWidth;
break;
case RoomSouth:
XCoord += RoomWidth;
break;
case RoomWest:
ZCoord += RoomWidth;
break;
}
GenCastleRoom(world, rand, XCoord, YCoord, ZCoord);
GenCastleDoor(world, rand, XCoord, YCoord, ZCoord, (direct + 2) % 4);
//GenCastleWindows(world, rand, XCoord, YCoord, ZCoord);
for(int tries = 0; tries < 70; tries++)
{
int dirout = rand.nextInt() % 4;
if(GenCastleCanGen(world, rand, XCoord, YCoord, ZCoord, dirout, spawn + 1, floor))
{
int rooms = rand.nextInt() % 100;
if(rooms < 20){
GenCastleRoomConnector(world, rand, XCoord, YCoord, ZCoord, dirout, spawn + 1, floor);
}
else if(rooms < 70){
GenCastleRoomSplitter(world, rand, XCoord, YCoord, ZCoord, dirout, spawn + 1, floor);
}
else if(rooms < 80){
GenCastleRoomLadder(world, rand, XCoord, YCoord, ZCoord, dirout, spawn + 1, floor);
}
else{
GenCastleRoomTreasure(world, rand, XCoord, YCoord, ZCoord, dirout, spawn + 1, floor);
}
GenCastleDoor(world, rand, XCoord, YCoord, ZCoord, dirout);
}
}
}
*/
/*
public static void GenCastleRoomTreasure(World world, Random rand, int XCoord, int YCoord, int ZCoord, int direct, int spawn, int floor)
{
switch(direct)
{
case RoomNorth:
XCoord -= RoomWidth;
break;
case RoomEast:
ZCoord -= RoomWidth;
break;
case RoomSouth:
XCoord += RoomWidth;
break;
case RoomWest:
ZCoord += RoomWidth;
break;
}
GenCastleRoom(world, rand, XCoord, YCoord, ZCoord);
GenCastleDoor(world, rand, XCoord, YCoord, ZCoord, (direct + 2) % 4);
GenCastleWindows(world, rand, XCoord, YCoord, ZCoord);
switch(direct)
{
case RoomNorth:
XCoord += 1;
ZCoord += RoomWidth / 2;
break;
case RoomEast:
ZCoord += 1;
XCoord += RoomWidth / 2;
break;
case RoomSouth:
XCoord += RoomWidth - 2;
ZCoord += RoomWidth / 2;
break;
case RoomWest:
ZCoord += RoomWidth - 2;
XCoord += RoomWidth / 2;
break;
}
TileEntityChest chest = new TileEntityChest();
world.setBlock(XCoord, YCoord, ZCoord, Blocks.chest);
world.setTileEntity(XCoord, YCoord, ZCoord, chest);
if(rand.nextInt() % 8 == 0)
chest.setInventorySlotContents(0, new ItemStack(Items.apple, rand.nextInt(10) + 8));
if(rand.nextInt() % 12 == 0)
chest.setInventorySlotContents(1, new ItemStack(Items.record_stal, 1));
if(rand.nextInt() % 6 == 0)
chest.setInventorySlotContents(3, new ItemStack(Items.bed, 1));
if(rand.nextInt() % 7 == 0)
chest.setInventorySlotContents(5, new ItemStack(Items.iron_sword, 1));
if(rand.nextInt() % 8 == 0)
chest.setInventorySlotContents(7, new ItemStack(Blocks.bookshelf, rand.nextInt(8) + 4));
if(rand.nextInt() % 18 == 0)
chest.setInventorySlotContents(12, new ItemStack(Items.diamond, rand.nextInt(3) + 1));
if(rand.nextInt() % 24 == 0)
chest.setInventorySlotContents(13, new ItemStack(Items.emerald, rand.nextInt(2) + 1));
if(rand.nextInt() % 12 == 0)
chest.setInventorySlotContents(14, new ItemStack(Items.gold_ingot, rand.nextInt(4) + 6));
if(rand.nextInt() % 8 == 0)
chest.setInventorySlotContents(15, new ItemStack(Items.bed, 1));
if(rand.nextInt() % 12 == 0)
chest.setInventorySlotContents(16, new ItemStack(Blocks.glass, 12));
if(rand.nextInt() % 3 == 0)
chest.setInventorySlotContents(17, new ItemStack(Items.cooked_beef, rand.nextInt(6) + 4));
if(rand.nextInt() % 14 == 0)
chest.setInventorySlotContents(19, new ItemStack(Items.map, 1));
if(rand.nextInt() % 2 == 0)
chest.setInventorySlotContents(20, new ItemStack(Items.coal, rand.nextInt(20) + 12));
else
chest.setInventorySlotContents(22, new ItemStack(Items.iron_ingot, rand.nextInt(10) + 4));
}
*/
/*
public static void GenCastleRoomLadder(World world, Random rand, int XCoord, int YCoord, int ZCoord, int direct, int spawn, int floor)
{
switch(direct)
{
case RoomNorth:
XCoord -= RoomWidth;
break;
case RoomEast:
ZCoord -= RoomWidth;
break;
case RoomSouth:
XCoord += RoomWidth;
break;
case RoomWest:
ZCoord += RoomWidth;
break;
}
GenCastleRoom(world, rand, XCoord, YCoord, ZCoord);
GenCastleDoor(world, rand, XCoord, YCoord, ZCoord, (direct + 2) % 4);
int XCoord2 = XCoord;
int ZCoord2 = ZCoord;
int meta = 1;
switch(direct)
{
case RoomNorth:
meta = 5;
XCoord += 1;
ZCoord += RoomWidth / 2;
break;
case RoomEast:
meta = 3;
ZCoord += 1;
XCoord += RoomWidth / 2;
break;
case RoomSouth:
meta = 4;
XCoord += RoomWidth - 2;
ZCoord += RoomWidth / 2;
break;
case RoomWest:
meta = 2;
ZCoord += RoomWidth - 2;
XCoord += RoomWidth / 2;
break;
}
if(GenCastleCanGen(world, rand, XCoord2, YCoord + RoomHeight + 1, ZCoord2, -1, spawn + 1, floor + 1))
{
GenCastleRoom(world, rand, XCoord2, YCoord + RoomHeight + 1, ZCoord2);
GenCastleDoor(world, rand, XCoord2, YCoord + RoomHeight + 1, ZCoord2, (direct + 2) % 4);
GenCastleWindows(world, rand, XCoord2, YCoord + RoomHeight + 1, ZCoord2);
for(int laddery = 0; laddery < RoomHeight + 2; laddery++){
world.setBlock(XCoord, YCoord + laddery, ZCoord, Blocks.ladder, meta, 0);
}
GenCastleRoomSplitter(world, rand, XCoord2, YCoord + RoomHeight + 1, ZCoord2, (direct + 2) % 4, spawn + 1, floor + 1);
}
}
*/
public static void GenCastleFloor(World world, Random rand, int XCoord, int YCoord, int ZCoord)
{
for(int airx_ = 0; airx_ < RoomWidth; airx_++) {
for(int airy_ = 0; airy_ <= RoomHeight; airy_++) {
for(int airz_ = 0; airz_ < RoomWidth; airz_++) {
if(airy_ == 0) {
world.setBlock(XCoord + airx_, YCoord - 1 + airy_, ZCoord + airz_, Blocks.stonebrick);
}
else {
world.setBlockToAir(XCoord + airx_, YCoord - 1 + airy_, ZCoord + airz_);
}
}
}
}
}
public static void GenCastleRoom(World world, Random rand, int XCoord, int YCoord, int ZCoord, int direct)
{
switch(direct)
{
case CastleGen.RoomNorth:
XCoord -= CastleGen.RoomWidth;
break;
case CastleGen.RoomEast:
ZCoord -= CastleGen.RoomWidth;
break;
case CastleGen.RoomSouth:
XCoord += CastleGen.RoomWidth;
break;
case CastleGen.RoomWest:
ZCoord += CastleGen.RoomWidth;
break;
}
for(int airx = 0; airx < RoomWidth; airx++) {
for(int airy = 0; airy <= RoomHeight; airy++) {
for(int airz = 0; airz < RoomWidth; airz++) {
if(airy == 0 || airy == RoomHeight || airx == 0 || airx == RoomWidth - 1 || airz == 0 || airz == RoomWidth - 1) {
world.setBlock(XCoord + airx, YCoord - 1 + airy, ZCoord + airz, Blocks.stonebrick);
}
else {
world.setBlockToAir(XCoord + airx, YCoord - 1 + airy, ZCoord + airz);
}
}
}
}
}
public static void GenCastleGarden(World world, Random rand, int XCoord, int YCoord, int ZCoord, int direct)
{
switch(direct)
{
case CastleGen.RoomNorth:
XCoord -= CastleGen.RoomWidth;
break;
case CastleGen.RoomEast:
ZCoord -= CastleGen.RoomWidth;
break;
case CastleGen.RoomSouth:
XCoord += CastleGen.RoomWidth;
break;
case CastleGen.RoomWest:
ZCoord += CastleGen.RoomWidth;
break;
}
for(int airx = 0; airx < RoomWidth; airx++) {
for(int airy = 0; airy < RoomHeight; airy++) {
for(int airz = 0; airz < RoomWidth; airz++) {
if(airy == 0){
if(airx == 0 || airx == RoomWidth - 1 || airz == 0 || airz == RoomWidth - 1) {
world.setBlock(XCoord + airx, YCoord - 1 + airy, ZCoord + airz, Blocks.stonebrick);
}
else{
world.setBlock(XCoord + airx, YCoord - 1 + airy, ZCoord + airz, Blocks.grass);
}
}
else {
world.setBlockToAir(XCoord + airx, YCoord - 1 + airy, ZCoord + airz);
}
}
}
}
}
public static void GenCastleDoor(World world, Random rand, int XCoord, int YCoord, int ZCoord, int direction)
{
switch(direction)
{
case RoomNorth:
for(int doory = 0; doory <= 2; doory++){
world.setBlockToAir(XCoord, YCoord + doory, ZCoord + RoomWidth / 2 - 1);
world.setBlockToAir(XCoord, YCoord + doory, ZCoord + RoomWidth / 2);
}
break;
case RoomEast:
for(int doory = 0; doory <= 2; doory++){
world.setBlockToAir(XCoord + RoomWidth / 2 - 1, YCoord + doory, ZCoord);
world.setBlockToAir(XCoord + RoomWidth / 2, YCoord + doory, ZCoord);
}
break;
case RoomSouth:
for(int doory = 0; doory <= 2; doory++){
world.setBlockToAir(XCoord + RoomWidth - 1, YCoord + doory, ZCoord + RoomWidth / 2 - 1);
world.setBlockToAir(XCoord + RoomWidth - 1, YCoord + doory, ZCoord + RoomWidth / 2);
}
break;
case RoomWest:
for(int doory = 0; doory <= 2; doory++){
world.setBlockToAir(XCoord + RoomWidth / 2 - 1, YCoord + doory, ZCoord + RoomWidth - 1);
world.setBlockToAir(XCoord + RoomWidth / 2, YCoord + doory, ZCoord + RoomWidth - 1);
}
break;
}
}
public static void GenCastleNoWall(World world, Random rand, int XCoord, int YCoord, int ZCoord, int direction)
{
switch(direction)
{
case RoomNorth:
for(int wallw = 1; wallw < RoomWidth - 1; wallw++)
{
for(int doory = 0; doory < RoomHeight - 1; doory++){
world.setBlockToAir(XCoord, YCoord + doory, ZCoord + wallw);
}
}
break;
case RoomEast:
for(int wallw = 1; wallw < RoomWidth - 1; wallw++)
{
for(int doory = 0; doory < RoomHeight - 1; doory++){
world.setBlockToAir(XCoord + wallw, YCoord + doory, ZCoord);
}
}
break;
case RoomSouth:
for(int wallw = 1; wallw < RoomWidth - 1; wallw++)
{
for(int doory = 0; doory < RoomHeight - 1; doory++){
world.setBlockToAir(XCoord + RoomWidth - 1, YCoord + doory, ZCoord + wallw);
}
}
break;
case RoomWest:
for(int wallw = 1; wallw < RoomWidth - 1; wallw++)
{
for(int doory = 0; doory < RoomHeight - 1; doory++){
world.setBlockToAir(XCoord + wallw, YCoord + doory, ZCoord + RoomWidth - 1);
}
}
break;
}
}
public static void GenCastleWindows(World world, Random rand, int XCoord, int YCoord, int ZCoord){
if(world.getBlock(XCoord + RoomWidth, YCoord, ZCoord) == Blocks.air){
for(int airx = 0; airx < RoomWidth; airx++) {
for(int airy = 1; airy <= 3; airy++) {
if(airx >= 2 && airx <= 5 && world.getBlock(XCoord + RoomWidth - 1, YCoord + airy, ZCoord + airx) == Blocks.stonebrick)
world.setBlock(XCoord + RoomWidth - 1, YCoord + airy, ZCoord + airx, Blocks.stained_glass);
}
}
}
if(world.getBlock(XCoord - 1, YCoord, ZCoord) == Blocks.air){
for(int airx = 0; airx < RoomWidth; airx++) {
for(int airy = 1; airy <= 3; airy++) {
if(airx >= 2 && airx <= 5 && world.getBlock(XCoord, YCoord + airy, ZCoord + airx) == Blocks.stonebrick)
world.setBlock(XCoord, YCoord + airy, ZCoord + airx, Blocks.stained_glass);
}
}
}
if(world.getBlock(XCoord, YCoord, ZCoord + RoomWidth) == Blocks.air){
for(int airz = 0; airz < RoomWidth; airz++) {
for(int airy = 1; airy <= 3; airy++) {
if(airz >= 2 && airz <= 5 && world.getBlock(XCoord + airz, YCoord + airy, ZCoord + RoomWidth - 1) == Blocks.stonebrick)
world.setBlock(XCoord + airz, YCoord + airy, ZCoord + RoomWidth - 1, Blocks.stained_glass);
}
}
}
if(world.getBlock(XCoord, YCoord, ZCoord - 1) == Blocks.air){
for(int airz = 0; airz < RoomWidth; airz++) {
for(int airy = 1; airy <= 3; airy++) {
if(airz >= 2 && airz <= 5 && world.getBlock(XCoord + airz, YCoord + airy, ZCoord) == Blocks.stonebrick)
world.setBlock(XCoord + airz, YCoord + airy, ZCoord, Blocks.stained_glass);
}
}
}
}
public static void GenCastleStainWindows(World world, Random rand, int XCoord, int YCoord, int ZCoord){
if(world.getBlock(XCoord + RoomWidth, YCoord, ZCoord) == Blocks.air){
for(int airx = 0; airx < RoomWidth; airx++) {
for(int airy = 1; airy <= 3; airy++) {
if(airx >= 2 && airx <= 5 && world.getBlock(XCoord + RoomWidth - 1, YCoord + airy, ZCoord + airx) == Blocks.stonebrick)
world.setBlock(XCoord + RoomWidth - 1, YCoord + airy, ZCoord + airx, Blocks.stained_glass, 14, 0);
}
}
}
if(world.getBlock(XCoord - 1, YCoord, ZCoord) == Blocks.air){
for(int airx = 0; airx < RoomWidth; airx++) {
for(int airy = 1; airy <= 3; airy++) {
if(airx >= 2 && airx <= 5 && world.getBlock(XCoord, YCoord + airy, ZCoord + airx) == Blocks.stonebrick)
world.setBlock(XCoord, YCoord + airy, ZCoord + airx, Blocks.stained_glass, 14, 0);
}
}
}
if(world.getBlock(XCoord, YCoord, ZCoord + RoomWidth) == Blocks.air){
for(int airz = 0; airz < RoomWidth; airz++) {
for(int airy = 1; airy <= 3; airy++) {
if(airz >= 2 && airz <= 5 && world.getBlock(XCoord + airz, YCoord + airy, ZCoord + RoomWidth - 1) == Blocks.stonebrick)
world.setBlock(XCoord + airz, YCoord + airy, ZCoord + RoomWidth - 1, Blocks.stained_glass, 14, 0);
}
}
}
if(world.getBlock(XCoord, YCoord, ZCoord - 1) == Blocks.air){
for(int airz = 0; airz < RoomWidth; airz++) {
for(int airy = 1; airy <= 3; airy++) {
if(airz >= 2 && airz <= 5 && world.getBlock(XCoord + airz, YCoord + airy, ZCoord) == Blocks.stonebrick)
world.setBlock(XCoord + airz, YCoord + airy, ZCoord, Blocks.stained_glass, 14, 0);
}
}
}
}
public static void GenCastleStainWindowsR(World world, Random rand, int XCoord, int YCoord, int ZCoord){
if(world.getBlock(XCoord + RoomWidth, YCoord, ZCoord) == Blocks.air){
for(int airx = 0; airx < RoomWidth; airx++) {
for(int airy = 1; airy <= 3; airy++) {
if(airx >= 2 && airx <= 5 && world.getBlock(XCoord + RoomWidth - 1, YCoord + airy, ZCoord + airx) == Blocks.stonebrick)
world.setBlock(XCoord + RoomWidth - 1, YCoord + airy, ZCoord + airx, Blocks.stained_glass, rand.nextInt(14) + 1, 0);
}
}
}
if(world.getBlock(XCoord - 1, YCoord, ZCoord) == Blocks.air){
for(int airx = 0; airx < RoomWidth; airx++) {
for(int airy = 1; airy <= 3; airy++) {
if(airx >= 2 && airx <= 5 && world.getBlock(XCoord, YCoord + airy, ZCoord + airx) == Blocks.stonebrick)
world.setBlock(XCoord, YCoord + airy, ZCoord + airx, Blocks.stained_glass, rand.nextInt(14) + 1, 0);
}
}
}
if(world.getBlock(XCoord, YCoord, ZCoord + RoomWidth) == Blocks.air){
for(int airz = 0; airz < RoomWidth; airz++) {
for(int airy = 1; airy <= 3; airy++) {
if(airz >= 2 && airz <= 5 && world.getBlock(XCoord + airz, YCoord + airy, ZCoord + RoomWidth - 1) == Blocks.stonebrick)
world.setBlock(XCoord + airz, YCoord + airy, ZCoord + RoomWidth - 1, Blocks.stained_glass, rand.nextInt(14) + 1, 0);
}
}
}
if(world.getBlock(XCoord, YCoord, ZCoord - 1) == Blocks.air){
for(int airz = 0; airz < RoomWidth; airz++) {
for(int airy = 1; airy <= 3; airy++) {
if(airz >= 2 && airz <= 5 && world.getBlock(XCoord + airz, YCoord + airy, ZCoord) == Blocks.stonebrick)
world.setBlock(XCoord + airz, YCoord + airy, ZCoord, Blocks.stained_glass, rand.nextInt(14) + 1, 0);
}
}
}
}
public static void GenCastleRails(World world, Random rand, int XCoord, int YCoord, int ZCoord){
if(world.getBlock(XCoord + RoomWidth, YCoord - 1, ZCoord) != Blocks.stonebrick){
for(int airx = 0; airx < RoomWidth; airx++) {
for(int airy = 0; airy <= 1; airy++) {
if(airy == 0){
world.setBlock(XCoord + RoomWidth - 1, YCoord + airy, ZCoord + airx, Blocks.stonebrick);
}
else{
world.setBlock(XCoord + RoomWidth - 1, YCoord + airy, ZCoord + airx, Blocks.fence);
}
}
}
}
if(world.getBlock(XCoord - 1, YCoord - 1, ZCoord) != Blocks.stonebrick){
for(int airx = 0; airx < RoomWidth; airx++) {
for(int airy = 0; airy <= 1; airy++) {
if(airy == 0){
world.setBlock(XCoord, YCoord + airy, ZCoord + airx, Blocks.stonebrick);
}
else{
world.setBlock(XCoord, YCoord + airy, ZCoord + airx, Blocks.fence);
}
}
}
}
if(world.getBlock(XCoord, YCoord - 1, ZCoord + RoomWidth) != Blocks.stonebrick){
for(int airz = 0; airz < RoomWidth; airz++) {
for(int airy = 0; airy <= 1; airy++) {
if(airy == 0){
world.setBlock(XCoord + airz, YCoord + airy, ZCoord + RoomWidth - 1, Blocks.stonebrick);
}
else{
world.setBlock(XCoord + airz, YCoord + airy, ZCoord + RoomWidth - 1, Blocks.fence);
}
}
}
}
if(world.getBlock(XCoord, YCoord - 1, ZCoord - 1) != Blocks.stonebrick){
for(int airz = 0; airz < RoomWidth; airz++) {
for(int airy = 0; airy <= 1; airy++) {
if(airy == 0){
world.setBlock(XCoord + airz, YCoord + airy, ZCoord, Blocks.stonebrick);
}
else{
world.setBlock(XCoord + airz, YCoord + airy, ZCoord, Blocks.fence);
}
}
}
}
}
}
| [
"[email protected]"
]
| |
da56487d0f751676244a3314da4e2868f1802994 | 3968031093eb98cb5ef7751c7d68fa5bffefa26b | /src/com/kaylerrenslow/a3plugin/dialog/newGroup/SQFConfigFunctionInformationHolder.java | 43ec1a4be07cfba485bd3c3e40c1c62bb76d150c | [
"MIT"
]
| permissive | qimenxiaozi/arma-intellij-plugin | e48d354da16a629e4783deb9320adc8e022420d9 | 458675e3b0bf5773e1cd5e34d2c638b4b24c4a11 | refs/heads/master | 2021-01-19T15:03:43.451287 | 2017-06-06T00:20:12 | 2017-06-06T00:20:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,532 | java | package com.kaylerrenslow.a3plugin.dialog.newGroup;
import com.intellij.openapi.module.Module;
import com.kaylerrenslow.a3plugin.util.Attribute;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* Class that holds information for a config function (function defined inside description.ext/CfgFunctions
*
* @author Kayler
* @since 04/25/2016
*/
public class SQFConfigFunctionInformationHolder {
/**
* Function tag name
*/
public final String functionTagName;
/**
* Function config class name (class name inside description.ext/CfgFunctions)
*/
public final String functionClassName;
/**
* Function file name (e.g. fn_function.sqf)
*/
public final String functionFileName;
/**
* String containing path to the function. This will be something like 'folder\anotherFolder'
*/
public final String functionLocation;
/**
* Module that the function resides in
*/
public final Module module;
/**
* Special attributes about the function
*/
public final Attribute[] attributes;
public SQFConfigFunctionInformationHolder(@NotNull String functionTagName, @NotNull String functionClassName, @NotNull String functionLocation, @NotNull String functionFileName, @NotNull Module module, @Nullable Attribute[] attributes) {
this.functionTagName = functionTagName;
this.functionClassName = functionClassName;
this.functionLocation = functionLocation;
this.functionFileName = functionFileName;
this.module = module;
this.attributes = attributes;
}
}
| [
"[email protected]"
]
| |
8856fc40c41c89ffb9faf948564bcf1202b3ebda | 6985fd7253fd96473667a56914ef042191be8d68 | /user-service-provider/src/main/java/org/lhyf/gmall/service/impl/UserServiceImpl.java | 423d6eb7926cc4206e81c3d511fe481eefc16319 | []
| no_license | lhyf/dubbo-demo | 5fc315338c140998ad9081dafcff5bd7c17b27b8 | 4e7759221f5ec095baf982b82f823a4496f7d869 | refs/heads/master | 2020-04-25T09:17:58.193026 | 2019-04-21T13:09:36 | 2019-04-21T13:09:36 | 172,668,794 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 958 | java | package org.lhyf.gmall.service.impl;
import org.lhyf.gamll.bean.UserAddress;
import org.lhyf.gamll.service.UserService;
import java.util.ArrayList;
import java.util.List;
public class UserServiceImpl implements UserService {
private static final List<UserAddress> list = new ArrayList<>();
static {
list.add(new UserAddress(1, "辽宁省沈阳市", "1001", "tom", "13654976255", "true"));
list.add(new UserAddress(2, "湖南省常德市", "1001", "jerry", "18215689468", "true"));
list.add(new UserAddress(3, "广东省深圳市", "1002", "alita", "17363658595", "true"));
}
@Override
public List<UserAddress> getUserAddress(String userId) {
System.out.println("provider:old");
System.out.println("userId:" + userId);
// try {
// Thread.sleep(3000);
// } catch (InterruptedException e) {
// e.printStackTrace();
// }
return list;
}
}
| [
"[email protected]"
]
| |
2be222d7ef027606e66468f32356ca4f0d9b2e9f | f2e5f0c74cca281000e5b0a47044a84b49d5cb87 | /550Dij/src/Node.java | 535c5f8841aa174457808e756e1dfb2097c8be8f | []
| no_license | AaronZhangGitHub/Archive | 7ad351831c7d1d197471213a2b483696ee38f426 | e803443d5333f7f8f99e99e257735d5440ca8df7 | refs/heads/master | 2021-01-16T19:06:45.637250 | 2017-08-12T20:49:55 | 2017-08-12T20:49:55 | 100,136,627 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,061 | java | import java.util.ArrayList;
class Node {
private String name;
private Node next;
private int serialNumber;
private Edge adj;
private int inDeg;
private double shortestPathFromSource;
private Node pred;
private boolean handled;
private ArrayList<Edge> edgeHolder = new ArrayList<Edge>();
private double xVal;
private double yVal;
public Node(int sn, double xVal, double yVal) {
this.serialNumber = sn;
this.xVal = xVal;
this.yVal= yVal;
this.shortestPathFromSource = Integer.MAX_VALUE;
pred = null;
handled = false;
}
public double getX(){
return xVal;
}
public double getY(){
return yVal;
}
public boolean handled() {
return handled;
}
public void handle() {
handled = true;
}
public double getShortestPathFromSource() {
return shortestPathFromSource;
}
public void setShortestPathFromSource(double s) {
shortestPathFromSource = s;
}
public void setPred(Node p) {
pred = p;
}
public Node getPred() {
return pred;
}
public int getSerialNum() {
return serialNumber;
}
public void setNext(Node next) {
this.next = next;
}
public void addEdge(Edge e) {
//The edges coming out of this node, to another node
edgeHolder.add(e);
}
public int numEdgesOutOf() {
return edgeHolder.size();
}
public boolean hasEdge() {
if (edgeHolder.size() > 0) {
return true;
}
return false;
}
public Edge returnEdge(int i) {
return edgeHolder.get(i);
}
public boolean removeEdge(Node deleteNode) {
for (int i = 0; i < edgeHolder.size(); i++) {
if (deleteNode.name.equals(edgeHolder.get(i).getTo().name)) {
// Edge exists to be deleted
deleteNode.decInDeg();
// Delete Edge
edgeHolder.remove(edgeHolder.get(i));
// Return True
return true;
}
}
return false;
}
public void incInDeg() {
inDeg++;
}
public void decInDeg() {
if (inDeg > 0) {
inDeg--;
}
}
public int getInDeg() {
return inDeg;
}
public void decInDegEdgesOut() {
for (int i = 0; i < edgeHolder.size(); i++) {
edgeHolder.get(i).getTo().decInDeg();
}
}
} | [
"[email protected]"
]
| |
bee567e2f66feeeb8a9ac2ed0f3df24c7c61d93c | 5ec8ce07ca8bdc56a1c7bbaca306a32a8876108a | /shardingsphere-features/shardingsphere-db-discovery/shardingsphere-db-discovery-provider/shardingsphere-db-discovery-mysql/src/test/java/org/apache/shardingsphere/dbdiscovery/mysql/type/MySQLNormalReplicationDatabaseDiscoveryProviderAlgorithmTest.java | 69d08b0535fd7299a15ac107e1181fc613684ae6 | [
"Apache-2.0"
]
| permissive | wornxiao/shardingsphere | c2c5b0c4ebe91f248bdb504529ced0dd1084810a | 04cbfa2a807811e15a80148351f6ca5d01c83da0 | refs/heads/master | 2022-10-21T20:11:10.042821 | 2022-07-17T06:33:44 | 2022-07-17T06:33:44 | 272,212,232 | 1 | 0 | Apache-2.0 | 2020-06-14T13:54:42 | 2020-06-14T13:54:41 | null | UTF-8 | Java | false | false | 4,233 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.shardingsphere.dbdiscovery.mysql.type;
import org.apache.shardingsphere.dbdiscovery.spi.DatabaseDiscoveryProviderAlgorithm;
import org.apache.shardingsphere.dbdiscovery.spi.ReplicaDataSourceStatus;
import org.apache.shardingsphere.test.mock.MockedDataSource;
import org.junit.Test;
import javax.sql.DataSource;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Collections;
import java.util.Properties;
import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.RETURNS_DEEP_STUBS;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
public final class MySQLNormalReplicationDatabaseDiscoveryProviderAlgorithmTest {
@Test
public void assertCheckEnvironment() throws SQLException {
new MySQLNormalReplicationDatabaseDiscoveryProviderAlgorithm().checkEnvironment("foo_db", Collections.singleton(mockDataSourceForReplicationInstances()));
}
@Test
public void assertIsPrimaryInstance() throws SQLException {
assertTrue(new MySQLNormalReplicationDatabaseDiscoveryProviderAlgorithm().isPrimaryInstance(mockDataSourceForReplicationInstances()));
}
private DataSource mockDataSourceForReplicationInstances() throws SQLException {
ResultSet slaveHostsResultSet = mock(ResultSet.class);
when(slaveHostsResultSet.next()).thenReturn(true, false);
when(slaveHostsResultSet.getString("Host")).thenReturn("127.0.0.1");
when(slaveHostsResultSet.getString("Port")).thenReturn("3306");
ResultSet readonlyResultSet = mock(ResultSet.class);
when(readonlyResultSet.next()).thenReturn(true, false);
when(readonlyResultSet.getString("Value")).thenReturn("OFF");
Connection connection = mock(Connection.class, RETURNS_DEEP_STUBS);
when(connection.createStatement().executeQuery("SHOW SLAVE HOSTS")).thenReturn(slaveHostsResultSet);
when(connection.getMetaData().getURL()).thenReturn("jdbc:mysql://127.0.0.1:3306/foo_ds");
when(connection.createStatement().executeQuery("SHOW VARIABLES LIKE 'read_only'")).thenReturn(readonlyResultSet);
return new MockedDataSource(connection);
}
@Test
public void assertLoadReplicaStatus() throws SQLException {
Properties props = new Properties();
props.setProperty("delay-milliseconds-threshold", "15000");
DatabaseDiscoveryProviderAlgorithm algorithm = new MySQLNormalReplicationDatabaseDiscoveryProviderAlgorithm();
algorithm.init(props);
DataSource dataSource = mockDataSourceForReplicaStatus();
ReplicaDataSourceStatus actual = algorithm.loadReplicaStatus(dataSource);
assertTrue(actual.isOnline());
assertThat(actual.getReplicationDelayMilliseconds(), is(10000L));
}
private DataSource mockDataSourceForReplicaStatus() throws SQLException {
ResultSet resultSet = mock(ResultSet.class);
when(resultSet.next()).thenReturn(true, false);
when(resultSet.getLong("Seconds_Behind_Master")).thenReturn(10L);
Connection connection = mock(Connection.class, RETURNS_DEEP_STUBS);
when(connection.createStatement().executeQuery("SHOW SLAVE STATUS")).thenReturn(resultSet);
return new MockedDataSource(connection);
}
}
| [
"[email protected]"
]
| |
2ad8aaa6aaa825e593965cc0f0d5f60e8f935486 | 37d1f3bd15aefaa639d509f1eac3e83370697f65 | /src/views/modify/ModEM.java | 0eb9b6fadd12ecf213ed5071816da346b9ef1ddd | []
| no_license | Newill-Kristin/CIT360Application | 2c8cf3a4ee2c8ba535919fb7d4eb762ab0b1fd54 | 7a1acc4301d14b682744138500ff8f74f5deba24 | refs/heads/master | 2020-04-30T05:07:58.450964 | 2019-04-03T02:15:17 | 2019-04-03T02:15:17 | 176,622,411 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,764 | java | package views.modify;
import models.contact.Contact;
import models.contact.HibUtil;
import org.hibernate.Session;
import org.hibernate.Transaction;
import org.hibernate.resource.transaction.spi.TransactionStatus;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
/**
* Created by Kristin Newill (aingealfire) on 3/28/2019.
*/
@WebServlet(name = "ModEM", urlPatterns = "/ModEM")
public class ModEM extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
Integer id = Integer.valueOf(request.getParameter("id"));
String input = request.getParameter("input");
try {
Session hs = HibUtil.getSessionFactory().openSession();
Transaction tr = hs.beginTransaction();
Contact con = hs.load(Contact.class, id);
con.setEmail(input);
hs.update(con);
tr.commit();
boolean result = hs.getTransaction().getStatus() == TransactionStatus.COMMITTED;
out.println("<html>");
out.println("<head><title>Entry Successful</title>" +
"<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">" +
"<link rel=\"stylesheet\" type=\"text/css\" href=\"css/contact.css\"></head>");
out.println("<body>");
out.println("<header><!---So the header happens --></header><nav><div id=\"top\">" +
"<ul class=\"topnav\" id=\"topnav1\">" +
"<li><a href=\"index.jsp\">Main Menu</a></li>" +
"<li><a href=\"View.jsp\">View All Contacts</a></li>" +
"<li><a href=\"Enter.jsp\">Add a New Contact</a></li>" +
"<li class=\"dropdown\"> <a href=\"javascript:void(0)\" class=\"dropbtn\">Search for a Contact</a>" +
"<div class=\"dropdown-content\">" +
"<a href=\"SearchFN.jsp\">by First Name</a>" +
"<a href=\"SearchLN.jsp\">by Last Name</a>" +
"<a href=\"SearchZIP.jsp\">by Zip Code</a>" +
"<a href=\"SearchTEL.jsp\">by Telephone</a>" +
"<a href=\"SearchEM.jsp\">by Email</a>" +
"</div></li>" +
"<li class=\"dropdown\"> <a href=\"javascript:void(0)\" class=\"dropbtn\">Modify a Contact</a>" +
"<div class=\"dropdown-content\">" +
"<a href=\"ModifyFN.jsp\">First Name</a>" +
"<a href=\"ModifyLN.jsp\">Last Name</a>" +
"<a href=\"ModifyADD.jsp\">Address</a>" +
"<a href=\"ModifyCITY.jsp\">City</a>" +
"<a href=\"ModifySTATE.jsp\">State</a>" +
"<a href=\"ModifyZIP.jsp\">Zip Code</a>" +
"<a href=\"ModifyTEL.jsp\">Telephone</a>" +
"<a href=\"ModifyEM.jsp\">Email</a>" +
"</div></li>" +
"<li><a href=\"Remove.jsp\">Remove a Contact</a></li>" +
"</div></nav><main>");
if(result){
out.println("<h1>Your updated entry is:</h1>");
out.println("<p>Name: " + con.getFirstName() + " " + con.getLastName() + "</p>" +
"<p>Address:</p><p> " + con.getAdd1() + "</p>" +
"<p>" + con.getCity() + ", " + con.getState() + " " + con.getZip() + "</p>" +
"<p>Telephone: " + con.getTele() + "</p>" +
"<p>Email: " + con.getEmail() + "</p>" +
"<p>Record ID:" + con.getId() + "</p>");
out.println("<input class=\"startReg\" type=\"button\" onclick=\"window.location='index.jsp';\" value=\"Return to Main Menu\">");
}else{
out.println("<h1>Modify Failed</h1>");
out.println("<input class=\"startReg\" type=\"button\" onclick=\"window.location='index.jsp';\" value=\"Try Again\">");
}
out.println("</main></body></html>");
} catch (Exception e) {
e.printStackTrace();
} finally {
out.close();
}
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
}
}
| [
"[email protected]"
]
| |
98e71427ba971a1cc76c33231afca2a2e0c31121 | 63efef2a78943970a3cefcbec4a7bd9d1c3b3793 | /lis-commons-lang/src/test/java/com/link_intersystems/lang/reflect/MemberModifierPredicatetTest.java | 9f55de83e803839c3e9236991046b6c04543fcc0 | [
"Apache-2.0"
]
| permissive | renelink/lis-commons | 5ae526fd2bcd142dfb914fd0f2b1207c72d48473 | 4a58042547475f0efb0e41c9db1656bdc37ffa8b | refs/heads/master | 2020-03-18T08:52:10.358477 | 2017-11-19T15:07:06 | 2017-11-19T15:07:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,765 | java | /**
* Copyright 2011 Link Intersystems GmbH <[email protected]>
*
* 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.link_intersystems.lang.reflect;
import static junit.framework.Assert.assertFalse;
import static junit.framework.Assert.assertTrue;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import org.junit.Before;
import org.junit.Test;
import com.link_intersystems.lang.reflect.MemberModifierPredicate.Match;
public class MemberModifierPredicatetTest {
@SuppressWarnings("unused")
private String privateTest;
public String publicTest;
private Field privateTestField;
private Field publicTestField;
private Method privateMethod;
private Method publicMethod;
@SuppressWarnings("unused")
private static final String TEST_CONSTANT = "TEST_CONSTANT";
@SuppressWarnings("unused")
private static String TEST_CONSTANT_2 = "TEST_CONSTANT_2";
private Constructor<? extends MemberModifierPredicatetTest> privateConstructor;
private Constructor<? extends MemberModifierPredicatetTest> publicConstructor;
private Field privateStaticFinalConstField;
private Field privateStaticConstField;
public MemberModifierPredicatetTest() {
}
MemberModifierPredicatetTest(int testConstructor) {
}
@SuppressWarnings("unused")
private void privateMethod() {
}
@Before
public void setup() throws SecurityException, NoSuchFieldException,
NoSuchMethodException {
privateStaticFinalConstField = getClass().getDeclaredField(
"TEST_CONSTANT");
privateStaticConstField = getClass()
.getDeclaredField("TEST_CONSTANT_2");
privateTestField = getClass().getDeclaredField("privateTest");
publicTestField = getClass().getDeclaredField("publicTest");
privateMethod = getClass().getDeclaredMethod("privateMethod");
publicMethod = getClass().getDeclaredMethod("setup");
privateConstructor = getClass().getDeclaredConstructor(int.class);
publicConstructor = getClass().getDeclaredConstructor();
}
@Test(expected = IllegalArgumentException.class)
public void newWithNullMatch() {
new MemberModifierPredicate(Modifier.PUBLIC, null);
}
@Test
public void evaluateAgainstMethod() {
MemberModifierPredicate memberModifierPredicate = new MemberModifierPredicate(
Modifier.PUBLIC);
boolean evaluate = memberModifierPredicate.evaluate(privateMethod);
assertFalse(evaluate);
evaluate = memberModifierPredicate.evaluate(publicMethod);
assertTrue(evaluate);
}
@Test
public void evaluateAgainstConstructor() {
MemberModifierPredicate memberModifierPredicate = new MemberModifierPredicate(
Modifier.PUBLIC);
boolean evaluate = memberModifierPredicate.evaluate(privateConstructor);
assertFalse(evaluate);
evaluate = memberModifierPredicate.evaluate(publicConstructor);
assertTrue(evaluate);
}
@Test
public void evaluateAgainstField() {
MemberModifierPredicate memberModifierPredicate = new MemberModifierPredicate(
Modifier.PUBLIC);
boolean evaluate = memberModifierPredicate.evaluate(privateTestField);
assertFalse(evaluate);
evaluate = memberModifierPredicate.evaluate(publicTestField);
assertTrue(evaluate);
}
@Test
public void matchExace() {
MemberModifierPredicate memberModifierPredicate = new MemberModifierPredicate(
Modifier.PRIVATE | Modifier.STATIC | Modifier.FINAL,
Match.EXACT);
boolean evaluate = memberModifierPredicate
.evaluate(privateStaticConstField);
assertFalse(evaluate);
evaluate = memberModifierPredicate
.evaluate(privateStaticFinalConstField);
assertTrue(evaluate);
}
@Test
public void matchAtLeastOne() {
MemberModifierPredicate memberModifierPredicate = new MemberModifierPredicate(
Modifier.PROTECTED | Modifier.STATIC, Match.AT_LEAST_ONE);
boolean evaluate = memberModifierPredicate
.evaluate(privateStaticConstField);
assertTrue(evaluate);
evaluate = memberModifierPredicate
.evaluate(privateStaticFinalConstField);
assertTrue(evaluate);
memberModifierPredicate = new MemberModifierPredicate(
Modifier.PROTECTED | Modifier.NATIVE, Match.AT_LEAST_ONE);
evaluate = memberModifierPredicate
.evaluate(privateStaticFinalConstField);
assertFalse(evaluate);
}
}
| [
"[email protected]"
]
| |
a6a5f40433b710a98582326a778670df5d10de80 | 86e07453364e16e424ecc7770c219de4084c628d | /DA101G5_Workspace/DA101G5_Workspace/DA101G5APP_073001/src/com/Sort_course/model/Sort_courseService.java | d66e3ee2f6efac1951da06735d1c24abe3d2f0d0 | []
| no_license | ts00328685/da101g5_app | d160fde86fb57bd5711469901ef02438083391a1 | e51024a79c00aaccda3709fa1b39d1243908b8ba | refs/heads/master | 2022-12-07T18:54:35.284217 | 2022-07-10T08:25:50 | 2022-07-10T08:25:50 | 222,197,311 | 0 | 0 | null | 2022-12-07T05:52:18 | 2019-11-17T04:33:03 | JavaScript | UTF-8 | Java | false | false | 1,253 | java | package com.Sort_course.model;
import java.util.List;
public class Sort_courseService {
private Sort_courseDAO_interface dao;
Sort_courseService(){
dao=new Sort_courseJDBCDAO();
}
public Sort_courseVO addSort_course(String sort_course) {
Sort_courseVO sort_courseVO = new Sort_courseVO();
sort_courseVO.setSort_course(sort_course);
dao.insert(sort_courseVO);
return sort_courseVO;
}
//預留給 Struts 2 用的
public void addSort_course(Sort_courseVO sort_courseVO) {
dao.insert(sort_courseVO);
}
public Sort_courseVO updateSort_course(String sort_course_id,String sort_course) {
Sort_courseVO sort_courseVO = new Sort_courseVO();
sort_courseVO.setSort_course(sort_course);
sort_courseVO.setSort_course_id(sort_course_id);
dao.update(sort_courseVO);
return dao.findByPrimaryKey(sort_course_id);
}
//預留給 Struts 2 用的
public void updateSort_course(Sort_courseVO sort_courseVO) {
dao.update(sort_courseVO);
}
public void deleteSort_course(String sort_course_id) {
dao.delete(sort_course_id);
}
public Sort_courseVO getOneSort_course(String sort_course_id) {
return dao.findByPrimaryKey(sort_course_id);
}
public List<Sort_courseVO> getAll() {
return dao.getAll();
}
}
| [
"[email protected]"
]
| |
3f39483030ebe5aed3c60d7d2b8564648b989f77 | 425b39fd89dde81a6c4c905f34071e838cd67e10 | /06.SpringDataIntro/BookShopSystem/src/main/java/bookshopsystemapp/service/BookServiceImpl.java | c4b95bc70fd2f1575c453b7a093b39203b35ca4e | []
| no_license | rayailieva/DatabaseFrameworks | c68d484615eaa360df2bc90dcbef7313832f4db1 | 00d98576855cfe20b07273ce324bcd0d96b8c41f | refs/heads/master | 2020-04-02T14:27:38.071295 | 2018-12-20T11:40:46 | 2018-12-20T11:40:46 | 154,525,582 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 4,560 | java | package bookshopsystemapp.service;
import bookshopsystemapp.domain.entities.*;
import bookshopsystemapp.repository.AuthorRepository;
import bookshopsystemapp.repository.BookRepository;
import bookshopsystemapp.repository.CategoryRepository;
import bookshopsystemapp.util.FileUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.transaction.Transactional;
import java.io.IOException;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Random;
import java.util.Set;
import java.util.stream.Collectors;
@Service
@Transactional
public class BookServiceImpl implements BookService {
private final static String BOOKS_FILE_PATH =
"C:\\Users\\raya\\IdeaProjects\\JavaDatabaseAdvanced\\06.SpringDataIntro\\BookShopSystem\\src\\main\\resources\\files\\books.txt";
private final BookRepository bookRepository;
private final AuthorRepository authorRepository;
private final CategoryRepository categoryRepository;
private final FileUtil fileUtil;
@Autowired
public BookServiceImpl(BookRepository bookRepository, AuthorRepository authorRepository, CategoryRepository categoryRepository, FileUtil fileUtil) {
this.bookRepository = bookRepository;
this.authorRepository = authorRepository;
this.categoryRepository = categoryRepository;
this.fileUtil = fileUtil;
}
@Override
public void seedBooks() throws IOException {
if (this.bookRepository.count() != 0) {
return;
}
String[] booksFileContent = this.fileUtil.getFileContent(BOOKS_FILE_PATH);
for (String line : booksFileContent) {
String[] lineParams = line.split("\\s+");
Book book = new Book();
book.setAuthor(this.getRandomAuthor());
EditionType editionType = EditionType.values()[Integer.parseInt(lineParams[0])];
book.setEditionType(editionType);
LocalDate releaseDate = LocalDate.parse(lineParams[1], DateTimeFormatter.ofPattern("d/M/yyyy"));
book.setReleaseDate(releaseDate);
int copies = Integer.parseInt(lineParams[2]);
book.setCopies(copies);
BigDecimal price = new BigDecimal(lineParams[3]);
book.setPrice(price);
AgeRestriction ageRestriction = AgeRestriction.values()[Integer.parseInt(lineParams[4])];
book.setAgeRestriction(ageRestriction);
StringBuilder title = new StringBuilder();
for (int i = 5; i < lineParams.length; i++) {
title.append(lineParams[i]).append(" ");
}
book.setTitle(title.toString().trim());
Set<Category> categories = this.getRandomCategories();
book.setCategories(categories);
this.bookRepository.saveAndFlush(book);
}
}
@Override
public List<String> getAllBooksByReleaseDateAfter() {
List<Book> books =
this.bookRepository.findAllByReleaseDateAfter(LocalDate.parse("2000-12-31"));
return books.stream().map(Book::getTitle).collect(Collectors.toList());
}
@Override
public List<String> getAllAuthorsWithBookAfter() {
List<Book> books =
this.bookRepository.findAllByReleaseDateBefore(LocalDate.parse("1990-01-01"));
return books.stream()
.map(b -> String.format("%s %s"
, b.getAuthor().getFirstName()
, b.getAuthor().getLastName()))
.collect(Collectors.toList());
}
private Author getRandomAuthor() {
Random random = new Random();
int randomId = random.nextInt((int) (this.authorRepository.count() - 1)) + 1;
return this.authorRepository.getOne(randomId);
}
private Set<Category> getRandomCategories() {
Set<Category> categories = new LinkedHashSet<>();
Random random = new Random();
int length = random.nextInt(5);
for (int i = 0; i < length; i++) {
Category category = this.getRandomCategory();
categories.add(category);
}
return categories;
}
private Category getRandomCategory() {
Random random = new Random();
int randomId = random.nextInt((int) (this.categoryRepository.count() - 1)) + 1;
return this.categoryRepository.getOne(randomId);
}
} | [
"[email protected]"
]
| |
c014683ff877556a1d4966729fb524aad6a43183 | 9f8552f3505f714e73ebae0c7626551c4e9c65a6 | /sonic-server-controller/src/main/java/com/sonic/control/config/CacheConfig.java | 1f7ab0e6d6dc1d677ff939ce21b1145f94a07cea | [
"MIT"
]
| permissive | 17zhtang/sonic-server | 1975a28da97c9c3b25a86a5ea75480484fff0e67 | e4c22f9ef37c1a7c786ae1296b552dfce3fc5369 | refs/heads/main | 2023-07-11T20:16:20.012319 | 2021-08-17T13:40:36 | 2021-08-17T13:40:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,607 | java | package com.sonic.control.config;
import com.alibaba.fastjson.support.spring.GenericFastJsonRedisSerializer;
import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.CachingConfigurerSupport;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.cache.RedisCacheConfiguration;
import org.springframework.data.redis.cache.RedisCacheManager;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.RedisSerializationContext;
import org.springframework.data.redis.serializer.StringRedisSerializer;
import java.time.Duration;
/**
* @author ZhouYiXun
* @des redis配置
* @date 2021/8/15 18:26
*/
@Configuration
@EnableCaching
public class CacheConfig extends CachingConfigurerSupport {
@Bean
public CacheManager cacheManager(RedisConnectionFactory factory) {
GenericFastJsonRedisSerializer fastJsonRedisSerializer = new GenericFastJsonRedisSerializer();
RedisCacheConfiguration config = RedisCacheConfiguration.defaultCacheConfig();
//设置过期时间两小时
config = config.entryTtl(Duration.ofHours(2))
.computePrefixWith(name -> name + ":")
.serializeKeysWith(RedisSerializationContext.SerializationPair.fromSerializer(new StringRedisSerializer()))
.serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(fastJsonRedisSerializer))
.disableCachingNullValues();
RedisCacheManager redisCacheManager = RedisCacheManager.builder(factory)
.cacheDefaults(config)
.build();
return redisCacheManager;
}
@Bean
public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory) {
RedisTemplate<String, Object> template = new RedisTemplate<>();
template.setConnectionFactory(factory);
GenericFastJsonRedisSerializer fastJsonRedisSerializer = new GenericFastJsonRedisSerializer();
template.setValueSerializer(fastJsonRedisSerializer);
template.setKeySerializer(new StringRedisSerializer());
template.setHashKeySerializer(new StringRedisSerializer());
template.setHashValueSerializer(fastJsonRedisSerializer);
template.afterPropertiesSet();
return template;
}
}
| [
"[email protected]"
]
| |
8c9d6e0a06ff2f6a560c71d302179f323091eefa | 3486e30ee2f46e1d6f9a3a372a2e4ee8f37326ca | /src/main/java/org/nickelproject/util/csvUtil/CellProcessorVisitor.java | e66a93fe4adbc7cd169aa5979278279f5491ee54 | []
| no_license | nyjle/nickel | 821c6a7ade44b8880011655b49afd3f9a0b6cc51 | 392e3f69877179b977729f30b3e377d1472258cb | refs/heads/master | 2016-09-08T01:38:23.266077 | 2015-01-11T19:17:39 | 2015-01-11T19:17:39 | 14,007,704 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,478 | java | /*
* Copyright (c) 2013 Nigel Duffy
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.nickelproject.util.csvUtil;
import java.io.IOException;
import org.nickelproject.nickel.types.ByteArrayDataType;
import org.nickelproject.nickel.types.DataTypeVisitor;
import org.nickelproject.nickel.types.DoubleDataType;
import org.nickelproject.nickel.types.IntegerDataType;
import org.nickelproject.nickel.types.JavaClassDataType;
import org.nickelproject.nickel.types.RecordDataType;
import org.nickelproject.nickel.types.StringDataType;
import org.nickelproject.util.IoUtil;
import org.supercsv.cellprocessor.CellProcessorAdaptor;
import org.supercsv.cellprocessor.ParseDouble;
import org.supercsv.cellprocessor.ParseInt;
import org.supercsv.cellprocessor.Trim;
import org.supercsv.cellprocessor.ift.CellProcessor;
import org.supercsv.cellprocessor.ift.StringCellProcessor;
import org.supercsv.exception.SuperCsvCellProcessorException;
import org.supercsv.util.CsvContext;
public final class CellProcessorVisitor extends DataTypeVisitor<CellProcessor, Void> {
@Override
protected CellProcessor visit(final IntegerDataType dataType, final Void data) {
return new Trim(new ParseInt());
}
@Override
protected CellProcessor visit(final StringDataType dataType, final Void data) {
return new Trim();
}
@Override
protected CellProcessor visit(final ByteArrayDataType dataType, final Void data) {
throw new RuntimeException("Cannot read a byte array");
}
@Override
protected CellProcessor visit(final RecordDataType dataType, final Void data) {
throw new RuntimeException();
}
@Override
protected CellProcessor visit(final DoubleDataType dataType, final Void data) {
return new Trim(new ParseDouble());
}
@Override
protected CellProcessor visit(final JavaClassDataType dataType, final Void data) {
return new Trim(new ParseObject());
}
private static final class ParseObject extends CellProcessorAdaptor implements StringCellProcessor {
public ParseObject() {
super();
}
public ParseObject(final CellProcessor next) {
// this constructor allows other processors to be chained after ParseDay
super(next);
}
@Override
public Object execute(final Object value, final CsvContext context) {
validateInputNotNull(value, context); // throws an Exception if the input is null
Object javaObject;
try {
javaObject = IoUtil.deserhex((String) value);
return next.execute(javaObject, context);
} catch (IOException e) {
throw new SuperCsvCellProcessorException(
String.format("Could not parse '%s' as a Java object", value), context, this);
}
}
}
}
| [
"[email protected]"
]
| |
3a64abcc249c1c4545038df719bafb73a423fd5d | 8e3d5d0b9bd6840b4877f51bb46e2db09174a526 | /jenkindemo/src/jenkin_ci_config/DemoCi.java | bb083dc2be98b95d56e0b81c0ea12d6248e40939 | []
| no_license | chhotu25/funfunapp | 3ecea18f390edb164782d94831c47641a6a8038a | efaae61ec8e646878945cea57c9709c99a1b9bf5 | refs/heads/master | 2021-05-05T10:27:36.311732 | 2018-01-05T12:52:06 | 2018-01-05T12:52:06 | 117,971,782 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,546 | java | package jenkin_ci_config;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.edge.EdgeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Parameters;
import org.testng.annotations.Test;
public class DemoCi {
WebDriver driver;
@Parameters("browser")
@BeforeTest
public void setup(String browser) throws Exception {
// Check if parameter passed from TestNG is 'Chrome'
if (browser.equalsIgnoreCase("chrome")) {
// set path to Chromedrive.exe
System.setProperty("webdriver.chrome.driver", "F:\\chhotu\\chromedriver_win32\\chromedriver.exe");
driver = new ChromeDriver();
driver.manage().window().maximize();
driver.manage().timeouts().implicitlyWait(4, TimeUnit.SECONDS);
}
// Check if parameter passed as 'firefox'
else if (browser.equalsIgnoreCase("firefox")) {
// set path to firefoxdriver.exe
System.setProperty("webdriver.gecko.driver", "F:\\driver browser\\geckodriver-v0.19.1-win64\\geckodriver.exe");
driver = new FirefoxDriver();
}
// Check if parameter passed as 'IE'
else if (browser.equalsIgnoreCase("edge")) {
// set path of edgedriver.exe
System.setProperty("webdriver.edge.driver","F:\\driver browser\\MicrosoftWebDriver.exe");
driver = new EdgeDriver();
}
else {
// If no browser passed throw exception
System.out.println("Browser is not correct");
}
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
}
@Test
public void login() throws InterruptedException {
driver.get("https://accounts.google.com/signin");
//WebElement wb =
driver.findElement(By.id("identifierId")).sendKeys("amw.chhotusingh");
//Actions ac = new Actions(driver);
//ac.sendKeys("amw.chhotusingh").build().perform();
Thread.sleep(2000);
driver.findElement(By.cssSelector(".RveJvd.snByac")).click();
Thread.sleep(2000);
driver.findElement(By.name("password")).sendKeys("amchhotu");
Thread.sleep(2000);
driver.findElement(By.cssSelector(".CwaK9")).click();
Thread.sleep(2000);
}
@AfterClass
public void afterTest() {
driver.quit();
}
}
| [
"AL Moin Webtech@AMW-G1"
]
| AL Moin Webtech@AMW-G1 |
5da081a067fff9648d386de7c6ac6f55bc41828f | 23c8af2c24938ddb97e7022a1a9497f0d2af4dbe | /PraticaI/src/util/Encryption.java | 13d908f29118c825c601d588df2458462662b563 | []
| no_license | SI2013-SETREM/pratica-I-Nadine-Dinei | 90ad50a830000b2bee4e0696440273fe942fe817 | efc1f4c55ff7f2b86e184f0d920d27293991781d | refs/heads/master | 2021-01-24T06:40:45.398018 | 2014-12-06T13:03:09 | 2014-12-06T13:03:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,431 | java |
package util;
import java.math.BigInteger;
import java.security.NoSuchAlgorithmException;
import java.security.spec.InvalidKeySpecException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.PBEKeySpec;
/**
* Classe de criptografia
* @author Dinei A. Rockenbach
* @author Nadine Anderle
* @see http://crackstation.net/hashing-security.htm
*/
public abstract class Encryption {
public static final String PBKDF2_ALGORITHM = "PBKDF2WithHmacSHA1";
// The following constants may be changed without breaking existing hashes.
private static final int SALT_BYTE_SIZE = 24;
private static final int HASH_BYTE_SIZE = 24;
private static final int NUM_ITERATIONS = 1000;
public static int iterations;
public static String salt;
public static String hash;
/**
* Cria o hash de uma senha e disponibiliza os dados nos atributos de saída da classe
* @param password A senha
* @return Se o hash foi criado com sucesso
*/
public static boolean hash(String password) {
try {
char[] pass = password.toCharArray();
// Generate a random salt
java.security.SecureRandom random = new java.security.SecureRandom();
byte[] bytarrSalt = new byte[SALT_BYTE_SIZE];
random.nextBytes(bytarrSalt);
byte[] bytarrHash = pbkdf2(pass, bytarrSalt, NUM_ITERATIONS, HASH_BYTE_SIZE);
// Send out
hash = toHex(bytarrHash);
salt = toHex(bytarrSalt);
iterations = NUM_ITERATIONS;
return true;
} catch (Exception ex) {
Logger.getLogger(Encryption.class.getName()).log(Level.SEVERE, null, ex);
}
return false;
}
/**
* Valida a senha
* @param password Senha digitada
* @param correctHash Hash correto
* @param correctSalt Sal correto
* @param correctIterations Número de iterações correto
* @return Se a senha digitada confere com a que está armazenada
*/
public static boolean validate(String password, String correctHash, String correctSalt, int correctIterations) {
try {
char[] pass = password.toCharArray();
byte[] rightHash = fromHex(correctHash);
byte[] rightSalt = fromHex(correctSalt);
// Compute the hash of the provided password, using the same salt,
// iteration count, and hash length
byte[] testHash = pbkdf2(pass, rightSalt, correctIterations, rightHash.length);
// Compare the hashes in constant time. The password is correct if
// both hashes match.
return slowEquals(rightHash, testHash);
} catch (Exception ex) {
Logger.getLogger(Encryption.class.getName()).log(Level.SEVERE, null, ex);
}
return false;
}
/**
* Compares two byte arrays in length-constant time. This comparison method
* is used so that password hashes cannot be extracted from an on-line
* system using a timing attack and then attacked off-line.
*
* @param a the first byte array
* @param b the second byte array
* @return true if both byte arrays are the same, false if not
*/
private static boolean slowEquals(byte[] a, byte[] b)
{
int diff = a.length ^ b.length;
for(int i = 0; i < a.length && i < b.length; i++)
diff |= a[i] ^ b[i];
return diff == 0;
}
/**
* Computes the PBKDF2 hash of a password.
*
* @param password the password to hash.
* @param salt the salt
* @param iterations the iteration count (slowness factor)
* @param bytes the length of the hash to compute in bytes
* @return the PBDKF2 hash of the password
*/
private static byte[] pbkdf2(char[] password, byte[] salt, int iterations, int bytes)
throws NoSuchAlgorithmException, InvalidKeySpecException {
PBEKeySpec spec = new PBEKeySpec(password, salt, iterations, bytes * 8);
SecretKeyFactory skf = SecretKeyFactory.getInstance(PBKDF2_ALGORITHM);
return skf.generateSecret(spec).getEncoded();
}
/**
* Converts a string of hexadecimal characters into a byte array.
*
* @param hex the hex string
* @return the hex string decoded into a byte array
*/
private static byte[] fromHex(String hex)
{
byte[] binary = new byte[hex.length() / 2];
for(int i = 0; i < binary.length; i++)
{
binary[i] = (byte)Integer.parseInt(hex.substring(2*i, 2*i+2), 16);
}
return binary;
}
/**
* Converts a byte array into a hexadecimal string.
*
* @param array the byte array to convert
* @return a length*2 character string encoding the byte array
*/
private static String toHex(byte[] array)
{
BigInteger bi = new BigInteger(1, array);
String hex = bi.toString(16);
int paddingLength = (array.length * 2) - hex.length();
if(paddingLength > 0)
return String.format("%0" + paddingLength + "d", 0) + hex;
else
return hex;
}
}
| [
"[email protected]"
]
| |
7ed7f633b1f9f91f6039265f4e99ce88997bfe66 | 66ba71d2f577c30f8a85207cf65a85d49a14fa93 | /src/main/java/org/humanhelper/travel/route/provider/external/LocationRouteProvider.java | 00ccd6fecf6917662ebf8f6a123a6956313b70a5 | []
| no_license | usov-andrey/travel | 1c9a3498cfe38c06894bad69b8c6c68fc030b596 | e5cb3c2aaeb01cafb68963d25cf49aadcde821ef | refs/heads/master | 2023-07-09T06:46:38.154243 | 2020-07-30T07:00:25 | 2020-07-30T07:00:25 | 276,281,221 | 0 | 0 | null | 2021-08-09T21:00:12 | 2020-07-01T05:01:47 | Java | UTF-8 | Java | false | false | 4,462 | java | package org.humanhelper.travel.route.provider.external;
import org.humanhelper.travel.geo.GeoUtils;
import org.humanhelper.travel.integration.graphhopper.GraphHopperRouteService;
import org.humanhelper.travel.place.Place;
import org.humanhelper.travel.place.PlaceService;
import org.humanhelper.travel.place.type.region.Region;
import org.humanhelper.travel.place.type.transport.TransportPlace;
import org.humanhelper.travel.price.PriceResolver;
import org.humanhelper.travel.price.SimplePriceAgent;
import org.humanhelper.travel.route.provider.AbstractRouteProvider;
import org.humanhelper.travel.route.resolver.RoutesRequest;
import org.humanhelper.travel.route.type.AnyTimeRoute;
import org.humanhelper.travel.route.type.AnyTimeRouteMap;
import org.humanhelper.travel.route.type.TimeRoute;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.*;
/**
* Определяет ближайщие места и ищет до них маршруты
*
* @author Андрей
* @since 04.10.15
*/
@Service
public class LocationRouteProvider extends AbstractRouteProvider {
private static final Currency cur = Currency.getInstance("USD");
@Autowired
private PlaceService placeResolver;
//@Autowired
//private Rome2RioRouteService rome2RioRouteService;
@Autowired
private GraphHopperRouteService graphHopperRouteService;
private AnyTimeRouteMap routeMap = new AnyTimeRouteMap() {
@Override
protected List<AnyTimeRoute> createRoutes(Place place) {
List<AnyTimeRoute> routes = new ArrayList<>();
Region region = place.getRegion();
Collection<Place> nearestPlaces = placeResolver.getNearestPlaces(place);
Set<Place> visitedPlaces = new HashSet<>();
boolean isSourceTransportPlace = TransportPlace.isTransportPlace(place);
for (Place target : nearestPlaces) {
//Пока что рассматриваем пересечение границы только самолетами или автобусами, не машиной
if (!target.getCountry().equals(place.getCountry())) {
continue;
}
//Регион для source уже был добавлен
if (region != null && region.equals(target)) {
continue;
}
//Перемещаться можно только если одно из двух мест транспортное
if (!isSourceTransportPlace && !TransportPlace.isTransportPlace(target)) {
continue;
}
//Если среди ближайщих мест есть группа мест, то ее не рассматриваем
if (!Region.isRegion(target) || !Region.get(target).regionGroup()) {
AnyTimeRoute route = graphHopperRouteService.createAnyTimeRoute(place, target, visitedPlaces);
if (route != null) {
if (target instanceof TransportPlace) {
visitedPlaces.add(target);
}
routes.add(route);
}
}
}
return routes;
}
};
private AnyTimeRoute createRoute(Place source, Place target) {
double distance = source.getLocation().getDistance(target.getLocation());
return new AnyTimeRoute().sourceTarget(source, target)
.duration(//Считаем, что мы идем по прямой со скоростью 25 км в час
GeoUtils.minutesWithVelocity(distance, 25))
//стоимость 1 км = 5000 IDR, считаем, что проехать нам нужно будет в полтора раза больше
.price(new PriceResolver(Math.round(distance * 5000 * 1.5), cur, SimplePriceAgent.INSTANCE));
}
@Override
public Collection<TimeRoute> getTimeRoutes(RoutesRequest request) {
return Collections.emptyList();
}
@Override
public Collection<AnyTimeRoute> getAnyTimeRoutes(RoutesRequest request) {
return routeMap.getRoutes(request);
}
@Override
public Set<Place> getTargets(Place source) {
return routeMap.getTargets(source);
}
}
| [
"[email protected]"
]
| |
5884f21ff13416da0f5b452c77e4e751d1debf4d | d20825f8622396d7c029cd352c8693c814d4eb87 | /app/src/main/java/com/example/nancy/smartbj/domain/PhotosData.java | dd29059f0c0b0f917f6fae01aea297fcb4841002 | []
| no_license | Nancy945/SmartBj | 15cb47bb32fd94aa23cbefd7527c354c538cad91 | 024a91db8afdd57d86ebb2c48381f2711f6509ec | refs/heads/master | 2016-09-12T13:53:06.751432 | 2016-06-07T12:29:38 | 2016-06-07T12:29:38 | 59,621,519 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 799 | java | package com.example.nancy.smartbj.domain;
import java.util.List;
/**
* Created by Nancy on 2016/6/3.
*/
public class PhotosData {
public int retcode;
public PhotosData_Data data;
public class PhotosData_Data {
public String countcommenturl;
public String more;
public String title;
public List<PhotosNews> news;
public class PhotosNews {
public boolean comment;
public String commentlist;
public String commenturl;
public int id;
public String largeimage;
public String listimage;
public String pubdate;
public String smallimage;
public String title;
public String type;
public String url;
}
}
}
| [
"[email protected]"
]
| |
14373df9a1b4564b6609be27241845061e5cf13e | 6e56fba49508f83d935fc722526c57e427c37355 | /Menu_test/gen/com/google/android/gms/R.java | 82c41a7afa0ff93d5fa1029e6031c048e1df49f9 | []
| no_license | zhaiyanhao/MyProjects | 9a9d6904c5312d3969eb7d9d78b8c36165d18832 | 601a692a3a9202382abd9e7802671bea1a5ff91d | refs/heads/master | 2016-09-06T09:20:38.554252 | 2014-09-26T21:57:57 | 2014-09-26T21:57:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 13,327 | 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.google.android.gms;
public final class R {
public static final class attr {
public static final int adSize = 0x7f010000;
public static final int adSizes = 0x7f010001;
public static final int adUnitId = 0x7f010002;
public static final int buyButtonAppearance = 0x7f010018;
public static final int buyButtonHeight = 0x7f010015;
public static final int buyButtonText = 0x7f010017;
public static final int buyButtonWidth = 0x7f010016;
public static final int cameraBearing = 0x7f010004;
public static final int cameraTargetLat = 0x7f010005;
public static final int cameraTargetLng = 0x7f010006;
public static final int cameraTilt = 0x7f010007;
public static final int cameraZoom = 0x7f010008;
public static final int environment = 0x7f010012;
public static final int fragmentMode = 0x7f010014;
public static final int fragmentStyle = 0x7f010013;
public static final int mapType = 0x7f010003;
public static final int maskedWalletDetailsBackground = 0x7f01001b;
public static final int maskedWalletDetailsButtonBackground = 0x7f01001d;
public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01001c;
public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01001a;
public static final int maskedWalletDetailsLogoImageType = 0x7f01001f;
public static final int maskedWalletDetailsLogoTextColor = 0x7f01001e;
public static final int maskedWalletDetailsTextAppearance = 0x7f010019;
public static final int theme = 0x7f010011;
public static final int uiCompass = 0x7f010009;
public static final int uiRotateGestures = 0x7f01000a;
public static final int uiScrollGestures = 0x7f01000b;
public static final int uiTiltGestures = 0x7f01000c;
public static final int uiZoomControls = 0x7f01000d;
public static final int uiZoomGestures = 0x7f01000e;
public static final int useViewLifecycle = 0x7f01000f;
public static final int zOrderOnTop = 0x7f010010;
}
public static final class color {
public static final int common_action_bar_splitter = 0x7f060009;
public static final int common_signin_btn_dark_text_default = 0x7f060000;
public static final int common_signin_btn_dark_text_disabled = 0x7f060002;
public static final int common_signin_btn_dark_text_focused = 0x7f060003;
public static final int common_signin_btn_dark_text_pressed = 0x7f060001;
public static final int common_signin_btn_default_background = 0x7f060008;
public static final int common_signin_btn_light_text_default = 0x7f060004;
public static final int common_signin_btn_light_text_disabled = 0x7f060006;
public static final int common_signin_btn_light_text_focused = 0x7f060007;
public static final int common_signin_btn_light_text_pressed = 0x7f060005;
public static final int common_signin_btn_text_dark = 0x7f06001a;
public static final int common_signin_btn_text_light = 0x7f06001b;
public static final int wallet_bright_foreground_disabled_holo_light = 0x7f06000f;
public static final int wallet_bright_foreground_holo_dark = 0x7f06000a;
public static final int wallet_bright_foreground_holo_light = 0x7f060010;
public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f06000c;
public static final int wallet_dim_foreground_holo_dark = 0x7f06000b;
public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f06000e;
public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f06000d;
public static final int wallet_highlighted_text_holo_dark = 0x7f060014;
public static final int wallet_highlighted_text_holo_light = 0x7f060013;
public static final int wallet_hint_foreground_holo_dark = 0x7f060012;
public static final int wallet_hint_foreground_holo_light = 0x7f060011;
public static final int wallet_holo_blue_light = 0x7f060015;
public static final int wallet_link_text_light = 0x7f060016;
public static final int wallet_primary_text_holo_light = 0x7f06001e;
public static final int wallet_secondary_text_holo_dark = 0x7f06001f;
}
public static final class drawable {
public static final int common_signin_btn_icon_dark = 0x7f020005;
public static final int common_signin_btn_icon_disabled_dark = 0x7f020006;
public static final int common_signin_btn_icon_disabled_focus_dark = 0x7f020007;
public static final int common_signin_btn_icon_disabled_focus_light = 0x7f020008;
public static final int common_signin_btn_icon_disabled_light = 0x7f020009;
public static final int common_signin_btn_icon_focus_dark = 0x7f02000a;
public static final int common_signin_btn_icon_focus_light = 0x7f02000b;
public static final int common_signin_btn_icon_light = 0x7f02000c;
public static final int common_signin_btn_icon_normal_dark = 0x7f02000d;
public static final int common_signin_btn_icon_normal_light = 0x7f02000e;
public static final int common_signin_btn_icon_pressed_dark = 0x7f02000f;
public static final int common_signin_btn_icon_pressed_light = 0x7f020010;
public static final int common_signin_btn_text_dark = 0x7f020011;
public static final int common_signin_btn_text_disabled_dark = 0x7f020012;
public static final int common_signin_btn_text_disabled_focus_dark = 0x7f020013;
public static final int common_signin_btn_text_disabled_focus_light = 0x7f020014;
public static final int common_signin_btn_text_disabled_light = 0x7f020015;
public static final int common_signin_btn_text_focus_dark = 0x7f020016;
public static final int common_signin_btn_text_focus_light = 0x7f020017;
public static final int common_signin_btn_text_light = 0x7f020018;
public static final int common_signin_btn_text_normal_dark = 0x7f020019;
public static final int common_signin_btn_text_normal_light = 0x7f02001a;
public static final int common_signin_btn_text_pressed_dark = 0x7f02001b;
public static final int common_signin_btn_text_pressed_light = 0x7f02001c;
public static final int ic_plusone_medium_off_client = 0x7f020058;
public static final int ic_plusone_small_off_client = 0x7f020059;
public static final int ic_plusone_standard_off_client = 0x7f02005a;
public static final int ic_plusone_tall_off_client = 0x7f02005b;
public static final int powered_by_google_dark = 0x7f020073;
public static final int powered_by_google_light = 0x7f020074;
}
public static final class id {
public static final int book_now = 0x7f070010;
public static final int buyButton = 0x7f07000a;
public static final int buy_now = 0x7f07000f;
public static final int buy_with_google = 0x7f07000e;
public static final int classic = 0x7f070011;
public static final int grayscale = 0x7f070012;
public static final int holo_dark = 0x7f070005;
public static final int holo_light = 0x7f070006;
public static final int hybrid = 0x7f070004;
public static final int match_parent = 0x7f07000c;
public static final int monochrome = 0x7f070013;
public static final int none = 0x7f070000;
public static final int normal = 0x7f070001;
public static final int production = 0x7f070007;
public static final int sandbox = 0x7f070008;
public static final int satellite = 0x7f070002;
public static final int selectionDetails = 0x7f07000b;
public static final int strict_sandbox = 0x7f070009;
public static final int terrain = 0x7f070003;
public static final int wrap_content = 0x7f07000d;
}
public static final class integer {
public static final int google_play_services_version = 0x7f080000;
}
public static final class string {
public static final int auth_client_needs_enabling_title = 0x7f050001;
public static final int auth_client_needs_installation_title = 0x7f050002;
public static final int auth_client_needs_update_title = 0x7f050003;
public static final int auth_client_play_services_err_notification_msg = 0x7f050004;
public static final int auth_client_requested_by_msg = 0x7f050005;
public static final int auth_client_using_bad_version_title = 0x7f050000;
public static final int common_google_play_services_enable_button = 0x7f050011;
public static final int common_google_play_services_enable_text = 0x7f050010;
public static final int common_google_play_services_enable_title = 0x7f05000f;
public static final int common_google_play_services_error_notification_requested_by_msg = 0x7f05000a;
public static final int common_google_play_services_install_button = 0x7f05000e;
public static final int common_google_play_services_install_text_phone = 0x7f05000c;
public static final int common_google_play_services_install_text_tablet = 0x7f05000d;
public static final int common_google_play_services_install_title = 0x7f05000b;
public static final int common_google_play_services_invalid_account_text = 0x7f050017;
public static final int common_google_play_services_invalid_account_title = 0x7f050016;
public static final int common_google_play_services_needs_enabling_title = 0x7f050009;
public static final int common_google_play_services_network_error_text = 0x7f050015;
public static final int common_google_play_services_network_error_title = 0x7f050014;
public static final int common_google_play_services_notification_needs_installation_title = 0x7f050007;
public static final int common_google_play_services_notification_needs_update_title = 0x7f050008;
public static final int common_google_play_services_notification_ticker = 0x7f050006;
public static final int common_google_play_services_unknown_issue = 0x7f050018;
public static final int common_google_play_services_unsupported_date_text = 0x7f05001b;
public static final int common_google_play_services_unsupported_text = 0x7f05001a;
public static final int common_google_play_services_unsupported_title = 0x7f050019;
public static final int common_google_play_services_update_button = 0x7f05001c;
public static final int common_google_play_services_update_text = 0x7f050013;
public static final int common_google_play_services_update_title = 0x7f050012;
public static final int common_signin_button_text = 0x7f05001d;
public static final int common_signin_button_text_long = 0x7f05001e;
public static final int wallet_buy_button_place_holder = 0x7f05001f;
}
public static final class style {
public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f090002;
public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f090001;
public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f090000;
public static final int WalletFragmentDefaultStyle = 0x7f090003;
}
public static final class styleable {
public static final int[] AdsAttrs = { 0x7f010000, 0x7f010001, 0x7f010002 };
public static final int AdsAttrs_adSize = 0;
public static final int AdsAttrs_adSizes = 1;
public static final int AdsAttrs_adUnitId = 2;
public static final int[] MapAttrs = { 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010 };
public static final int MapAttrs_cameraBearing = 1;
public static final int MapAttrs_cameraTargetLat = 2;
public static final int MapAttrs_cameraTargetLng = 3;
public static final int MapAttrs_cameraTilt = 4;
public static final int MapAttrs_cameraZoom = 5;
public static final int MapAttrs_mapType = 0;
public static final int MapAttrs_uiCompass = 6;
public static final int MapAttrs_uiRotateGestures = 7;
public static final int MapAttrs_uiScrollGestures = 8;
public static final int MapAttrs_uiTiltGestures = 9;
public static final int MapAttrs_uiZoomControls = 10;
public static final int MapAttrs_uiZoomGestures = 11;
public static final int MapAttrs_useViewLifecycle = 12;
public static final int MapAttrs_zOrderOnTop = 13;
public static final int[] WalletFragmentOptions = { 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014 };
public static final int WalletFragmentOptions_environment = 1;
public static final int WalletFragmentOptions_fragmentMode = 3;
public static final int WalletFragmentOptions_fragmentStyle = 2;
public static final int WalletFragmentOptions_theme = 0;
public static final int[] WalletFragmentStyle = { 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f };
public static final int WalletFragmentStyle_buyButtonAppearance = 3;
public static final int WalletFragmentStyle_buyButtonHeight = 0;
public static final int WalletFragmentStyle_buyButtonText = 2;
public static final int WalletFragmentStyle_buyButtonWidth = 1;
public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6;
public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8;
public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7;
public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5;
public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10;
public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9;
public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4;
}
}
| [
"[email protected]"
]
| |
3d7191bf9185d04770753a8785c242e022e5fb21 | e36e59ea1989c8867cc2f5cce85b6043ce181078 | /nyq-shop-parent/nyq-shop-basics/nyq-shop-basics-springcloud-zuul/src/main/java/com/nyq/AppGateWay.java | 978457ee8b7accca2a39c7cdf4aef6a0d0f22212 | []
| no_license | WalkOnBeck/myTest | e1fc41a8901cd244b84697fa3cc473857ca4a183 | 936fd833a5ec13a92d36198ee10d8100e71bd68b | refs/heads/master | 2022-12-09T21:57:11.603226 | 2019-10-31T07:10:29 | 2019-10-31T07:10:29 | 208,053,220 | 0 | 0 | null | 2022-12-06T00:36:00 | 2019-09-12T13:06:07 | Java | UTF-8 | Java | false | false | 1,605 | java | package com.nyq;
import java.util.ArrayList;
import java.util.List;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
import org.springframework.context.annotation.Primary;
import org.springframework.stereotype.Component;
import com.spring4all.swagger.EnableSwagger2Doc;
import springfox.documentation.swagger.web.SwaggerResource;
import springfox.documentation.swagger.web.SwaggerResourcesProvider;
@SpringBootApplication
@EnableEurekaClient
@EnableZuulProxy
@EnableSwagger2Doc
public class AppGateWay {
public static void main(String[] args) {
SpringApplication.run(AppGateWay.class, args);
}
// 添加文档来源
@Component
@Primary
class DocumentationConfig implements SwaggerResourcesProvider {
@Override
public List<SwaggerResource> get() {
List resources = new ArrayList<>();
// app-itmayiedu-order
resources.add(swaggerResource("app-nyq-member", "/app-nyq-member/v2/api-docs", "2.0"));
resources.add(swaggerResource("app-nyq-weixin", "/app-nyq-weixin/v2/api-docs", "2.0"));
return resources;
}
private SwaggerResource swaggerResource(String name, String location, String version) {
SwaggerResource swaggerResource = new SwaggerResource();
swaggerResource.setName(name);
swaggerResource.setLocation(location);
swaggerResource.setSwaggerVersion(version);
return swaggerResource;
}
}
}
| [
"[email protected]"
]
| |
51042a0947c69e0c9087630f4c41ee6e39003f97 | e91eb76f6187c22d98750970d7010fc05798bc73 | /iriscsc2/src/com/xzmc/airuishi/utils/PathUtils.java | 7bfddbb33964631394bc14e2de05e9e5270607ae | []
| no_license | JhuoW/iriscsc_Demo | 1f81d265a1ca45dfec16a2e5073e13cfe668343c | df533cccd1d4f4951467426f231b8eaca16da2d4 | refs/heads/master | 2021-09-14T23:45:04.862425 | 2018-05-22T14:28:26 | 2018-05-22T14:28:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,275 | java | package com.xzmc.airuishi.utils;
import java.io.File;
import android.os.Environment;
/**
* Created by lzw on 14-9-19.
*/
public class PathUtils {
public static String getSDcardDir() {
return Environment.getExternalStorageDirectory().getPath() + "/";
}
public static String checkAndMkdirs(String dir) {
File file = new File(dir);
if (file.exists() == false) {
file.mkdirs();
}
return dir;
}
public static String getAppPath() {
String dir = getSDcardDir() + "leanchat/";
return checkAndMkdirs(dir);
}
public static String getAvatarDir() {
String dir = getAppPath() + "avatar/";
return checkAndMkdirs(dir);
}
public static String getAvatarTmpPath() {
return getAvatarDir() + "tmp";
}
public static String getChatFileDir() {
String dir = getAppPath() + "files/";
return checkAndMkdirs(dir);
}
public static String getChatFilePath(String id) {
String dir = getChatFileDir();
String path = dir + id;
return path;
}
public static String getRecordTmpPath() {
return getChatFileDir() + "record_tmp";
}
public static String getUUIDFilePath() {
return getChatFilePath(Utils.uuid());
}
public static String getTmpPath() {
return getAppPath() + "tmp";
}
}
| [
"[email protected]"
]
| |
3cb98415e3b696bf27a75800e6108ec613728cce | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/19/19_59187429893ab1a10d67f5d1f383e4ed9de9bf6c/MethodDeclarationPattern/19_59187429893ab1a10d67f5d1f383e4ed9de9bf6c_MethodDeclarationPattern_s.java | c27ba85b215b95b852e10ba7bd1e0a5626cc4532 | []
| no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 10,720 | java | /*******************************************************************************
* Copyright (c) 2003, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corp. - Rational Software - initial implementation
*******************************************************************************/
/*
* Created on Jul 11, 2003
*/
package org.eclipse.cdt.internal.core.search.matching;
import java.io.IOException;
import org.eclipse.cdt.core.browser.PathUtil;
import org.eclipse.cdt.core.model.ICElement;
import org.eclipse.cdt.core.parser.ISourceElementCallbackDelegate;
import org.eclipse.cdt.core.parser.ast.ASTUtil;
import org.eclipse.cdt.core.parser.ast.IASTFunction;
import org.eclipse.cdt.core.parser.ast.IASTMethod;
import org.eclipse.cdt.core.parser.ast.IASTQualifiedNameElement;
import org.eclipse.cdt.core.search.BasicSearchMatch;
import org.eclipse.cdt.core.search.ICSearchScope;
import org.eclipse.cdt.core.search.LineLocatable;
import org.eclipse.cdt.core.search.OffsetLocatable;
import org.eclipse.cdt.internal.core.CharOperation;
import org.eclipse.cdt.internal.core.index.IEntryResult;
import org.eclipse.cdt.internal.core.index.IIndex;
import org.eclipse.cdt.internal.core.index.cindexstorage.Index;
import org.eclipse.cdt.internal.core.index.cindexstorage.IndexedFileEntry;
import org.eclipse.cdt.internal.core.index.cindexstorage.Util;
import org.eclipse.cdt.internal.core.index.cindexstorage.io.IndexInput;
import org.eclipse.cdt.internal.core.search.IIndexSearchRequestor;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
/**
* @author aniefer
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class MethodDeclarationPattern extends CSearchPattern {
private SearchFor searchFor;
private char[][] parameterNames;
private char[] simpleName;
private char[][] qualifications;
private char[] returnTypes;
private char[] decodedSimpleName;
private char[][] decodedQualifications;
private char[][] decodedParameters;
private char[] decodedReturnTypes;
public MethodDeclarationPattern(char[] name, char[][] qual, char [][] params, char[] returnTypes, int matchMode, SearchFor search, LimitTo limitTo, boolean caseSensitive) {
//super( name, params, matchMode, limitTo, caseSensitive );
super( matchMode, caseSensitive, limitTo );
qualifications = qual;
simpleName = name;
parameterNames = params;
this.returnTypes = returnTypes;
searchFor = search;
}
public char [] getSimpleName(){
return simpleName;
}
public int matchLevel(ISourceElementCallbackDelegate node, LimitTo limit ) {
if( node instanceof IASTMethod ){
if( searchFor != METHOD || !canAccept( limit ) ){
return IMPOSSIBLE_MATCH;
}
} else if ( node instanceof IASTFunction ){
if( searchFor != FUNCTION || !canAccept( limit ) ){
return IMPOSSIBLE_MATCH;
}
} else {
return IMPOSSIBLE_MATCH;
}
IASTFunction function = (IASTFunction) node;
char[] nodeName = function.getNameCharArray();
//check name, if simpleName == null, its treated the same as "*"
if( simpleName != null && !matchesName( simpleName, nodeName ) ){
return IMPOSSIBLE_MATCH;
}
if( node instanceof IASTQualifiedNameElement ){
//create char[][] out of full name,
char [][] qualName = ((IASTQualifiedNameElement) node).getFullyQualifiedNameCharArrays();
//check containing scopes
if( !matchQualifications( qualifications, qualName, true ) ){
return IMPOSSIBLE_MATCH;
}
}
//parameters
if( parameterNames != null && parameterNames.length > 0 && parameterNames[0].length > 0 ){
String [] paramTypes = ASTUtil.getFunctionParameterTypes(function);
if ( paramTypes.length == 0 && CharOperation.equals(parameterNames[0], "void".toCharArray())){ //$NON-NLS-1$
//All empty lists have transformed to void, this function has no parms
return ACCURATE_MATCH;
}
if( parameterNames.length != paramTypes.length )
return IMPOSSIBLE_MATCH;
for( int i = 0; i < parameterNames.length; i++ ){
//if this function doesn't have this many parameters, it is not a match.
//or if this function has a parameter, but parameterNames only has null.
if( parameterNames[ i ] == null )
return IMPOSSIBLE_MATCH;
char[] param = paramTypes[ i ].toCharArray();
//no wildcards in parameters strings
if( !CharOperation.equals( parameterNames[i], param, _caseSensitive ) )
return IMPOSSIBLE_MATCH;
}
}
return ACCURATE_MATCH;
}
public char[] indexEntryPrefix() {
if( searchFor == FUNCTION )
return Index.bestFunctionPrefix( _limitTo, simpleName, _matchMode, _caseSensitive );
else if( searchFor == METHOD )
return Index.bestMethodPrefix( _limitTo, simpleName, qualifications, _matchMode, _caseSensitive );
else return null;
}
protected void resetIndexInfo(){
decodedSimpleName = null;
decodedQualifications = null;
}
protected void decodeIndexEntry(IEntryResult entryResult) {
this.decodedSimpleName = entryResult.extractSimpleName().toCharArray();
String []missmatch = entryResult.getEnclosingNames();
if(missmatch != null) {
//Find the first opening braces
int start=0;
int end=0;
boolean parmsExist=false;
for (int i=0; i<missmatch.length; i++){
if (missmatch[i].equals("(")){ //$NON-NLS-1$
start=i;
parmsExist=true;
}
if (missmatch[i].equals(")")){ //$NON-NLS-1$
end=i;
break;
}
}
//Check for return type
boolean returnTypeExists=false;
int returnStart=0;
int returnEnd=0;
if (end != 0 &&
end<missmatch.length){
//Make sure that we have a parameter string and that there is still something left
//to be decoded
for (int j=end; j<missmatch.length; j++){
if (missmatch[j].equals("R(")){ //$NON-NLS-1$
returnStart=j;
returnTypeExists=true;
}
if (missmatch[j].equals(")R")){ //$NON-NLS-1$
returnEnd=j;
break;
}
}
}
if (parmsExist){
this.decodedParameters = new char[end - (start + 1)][];
int counter=0;
for (int i=start+1; i<end; i++){
decodedParameters[counter++]=missmatch[i].toCharArray();
}
this.decodedQualifications = new char[missmatch.length - (returnEnd + 1)][];
counter=0;
for (int i = returnEnd + 1; i < missmatch.length; i++)
this.decodedQualifications[counter++] = missmatch[i].toCharArray();
} else {
this.decodedParameters = new char[0][];
this.decodedQualifications = new char[missmatch.length][];
for (int i = 0; i < missmatch.length; i++)
this.decodedQualifications[i] = missmatch[i].toCharArray();
}
if (returnTypeExists){
this.returnTypes = missmatch[returnStart + 1].toCharArray();
}
}
}
protected boolean matchIndexEntry() {
/* check simple name matches */
if (simpleName != null){
if( ! matchesName( simpleName, decodedSimpleName ) ){
return false;
}
}
if( !matchQualifications( qualifications, decodedQualifications ) ){
return false;
}
if( !matchParameters( parameterNames, decodedParameters ) ){
return false;
}
if (!matchReturnType(returnTypes, decodedReturnTypes)){
return false;
}
return true;
}
/**
* @param returnTypes
* @param decodedReturnTypes
* @return
*/
private boolean matchReturnType(char[] returnTypes, char[] decodedReturnTypes) {
if( returnTypes == null || decodedReturnTypes == null ){
return true; //treat null as "*"
}
return CharOperation.equals( returnTypes, decodedReturnTypes, true);
}
private boolean matchParameters(char[][] parameterNames2, char[][] decodedParameters2) {
if (parameterNames2.length == 0)
return true;
//Check lengths of decoded
if (decodedParameters2.length != parameterNames2.length)
return false;
for (int i=0; i<parameterNames2.length; i++){
boolean matchFound=false;
for (int j=0; j<decodedParameters2.length; j++){
if (Util.compare(parameterNames2[i],decodedParameters[j])==0){
matchFound=true;
break;
}
}
if (!matchFound)
return false;
}
return true;
}
public void feedIndexRequestor(IIndexSearchRequestor requestor, int detailLevel, int[] fileRefs, int[][] offsets, int[][] offsetLengths,IndexInput input, ICSearchScope scope) throws IOException {
for (int i = 0, max = fileRefs.length; i < max; i++) {
IndexedFileEntry file = input.getIndexedFile(fileRefs[i]);
String path = null;
if (file != null && scope.encloses(path =file.getPath())) {
for (int j=0; j<offsets[i].length; j++){
BasicSearchMatch match = new BasicSearchMatch();
match.setName(new String(this.decodedSimpleName));
//Don't forget that offsets are encoded ICIndexStorageConstants
//Offsets can either be LINE or OFFSET
int offsetType = Integer.valueOf(String.valueOf(offsets[i][j]).substring(0,1)).intValue();
if (offsetType==IIndex.LINE){
match.setLocatable(new LineLocatable(Integer.valueOf(String.valueOf(offsets[i][j]).substring(1)).intValue(),0));
} else if (offsetType==IIndex.OFFSET){
int startOffset=Integer.valueOf(String.valueOf(offsets[i][j]).substring(1)).intValue();
int endOffset= startOffset + offsetLengths[i][j];
match.setLocatable(new OffsetLocatable(startOffset, endOffset));
}
match.setParentName(""); //$NON-NLS-1$
if (searchFor == METHOD){
match.setType(ICElement.C_METHOD);
} else if (searchFor == FUNCTION ){
match.setType(ICElement.C_FUNCTION);
}
IFile tempFile = ResourcesPlugin.getWorkspace().getRoot().getFile(new Path(path));
if (tempFile != null && tempFile.exists())
match.setResource(tempFile);
else {
IPath tempPath = PathUtil.getWorkspaceRelativePath(file.getPath());
match.setPath(tempPath);
match.setReferringElement(tempPath);
}
requestor.acceptSearchMatch(match);
}
}
}
}
}
| [
"[email protected]"
]
| |
22c1f1d60f497a335306d51c74f200d50e6308f9 | c5feda37056e877cc8454dedffc6773d1b74ca69 | /armasm/src/asm/instructions/ARM7STM.java | 731dbe5347655b85eb6540ef043dddee0db19572 | []
| no_license | btuduri/jarmasm | 7596fa6b39da70e3d076073e1ba03bbcf6a22c4f | 45a0d3ca500ae811aabf18edba44bd7020e986ad | refs/heads/master | 2021-01-23T13:36:22.802558 | 2010-03-16T04:22:20 | 2010-03-16T04:22:20 | 32,271,578 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 958 | java | /*
* ARM7STM.java
*
* Created on November 25, 2002, 3:34 PM
*/
package asm.instructions;
/**
*
* @author hans
*/
public class ARM7STM extends ARM7BlockDataXfer {
/** Creates a new instance of ARM7STM */
public ARM7STM( ParsedInstruction pi ) {
super(pi);
clear(20); //Load/Store 0 = load
String cmd = ((String)(pi.getOpcodes()).firstElement()).toUpperCase();
if ( cmd.endsWith("FA") || cmd.endsWith("IB") ) {
set(24); // P bit
set(23); // U bit
} else
if ( cmd.endsWith("EA") || cmd.endsWith("IA") ) {
clear(24);
set(23);
} else
if ( cmd.endsWith("FD") || cmd.endsWith("DB") ) {
set(24);
clear(23);
} else
if ( cmd.endsWith("ED") || cmd.endsWith("DA") ) {
clear(24);
clear(23);
} else {
error("Syntax error: " + cmd);
}
}
}
| [
"schelens@1575094a-85b9-6f95-219f-1fe955611c38"
]
| schelens@1575094a-85b9-6f95-219f-1fe955611c38 |
e5d54b561711ac77001eeda925efddbd1eafe0ac | a039900095ad2284e22b02963241058cc68b4137 | /kibana-eye/src/main/java/com/antzuhl/kibana/domain/QueryLog.java | da6155d6e1f546ece85af6c794287a0f5cd7380a | [
"Apache-2.0"
]
| permissive | FlowCloudSpaceFire/kibana-eye | a37af78fd25156c7f632db491c56c9694fe35ebc | 9ff43b2081b121fc4adfa6b324a79f4bc6c92250 | refs/heads/master | 2022-12-26T03:52:55.864934 | 2020-10-09T07:10:39 | 2020-10-09T07:10:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 921 | java | package com.antzuhl.kibana.domain;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;
import javax.persistence.*;
import java.util.Date;
/**
* @author AntzUhl
* @Date 14:57
*/
@Data
@Entity
@Table(name = "query_log")
@ToString
@AllArgsConstructor
@NoArgsConstructor
public class QueryLog {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
// 索引名称
@Column(name = "name")
private String name;
// 应用名称
@Column(name = "application")
private String application;
// 查询类型
@Column(name = "type")
private String type;
// 查询状态
@Column(name = "status")
private Integer status;
// 查询返回
@Column(name = "query", columnDefinition = "text")
private String query;
@Column(name = "create_time")
private Date createTime;
}
| [
"[email protected]"
]
| |
d1e6f5e3482a7375790c2b81353b59f2e24263d2 | 8d92d7201a5ade4eb0fae4eb7dbf3bb359fb5bce | /Download/Anotações alheias/javacore/javacore/ZZBjdbc/ConexaoFactoryRowSet.java | 519e5ac35753163e2baa2e8cc5c3c92bfbbc7a94 | []
| no_license | NisbCode/learning-java | 5d8db37aac66804fad5bc688fa347a110b0c7905 | 49e4604aec85d39377ee3337912198fdc89ddac0 | refs/heads/master | 2023-08-01T11:19:40.454385 | 2021-09-13T02:04:43 | 2021-09-13T02:04:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,060 | java | package br.com.abc.javacore.ZZBjdbc;
import javax.sql.RowSet;
import javax.sql.rowset.CachedRowSet;
import javax.sql.rowset.JdbcRowSet;
import javax.sql.rowset.RowSetProvider;
import java.sql.*;
/***
* USO DO RowSet
* É uma espécie de derivado da classe RowSet, no qual é
* mais fácil de se trabalhar
* Há dois tipos: o que faz as mudanças no banco com
* atualização remota e o salva os dados em memória para
* edição para depois atualizá-los
* Contudo, não suporta o uso de update, delete e insert
*/
public class ConexaoFactoryRowSet {
public static Connection getConexao (){
String url = "jdbc:mysql://localhost:3306/agencia?useTimezone=true&serverTimezone=UTC";
String usuario = "root";
String password = "jeonjeonggukisagodF@ck";
try {
Connection conexao = DriverManager.getConnection(url, usuario, password);
return conexao;
} catch (SQLException e) {
e.printStackTrace();
}
// A classe Connection pede pra fechar com return
return null;
}
public static JdbcRowSet getRowSetConnection (){ // relaxAutoComit: para usar o acceptChanges() no
// CachedRowSet
String url = "jdbc:mysql://localhost:3306/agencia?useTimezone=true&serverTimezone=UTC&relaxAutoCommit=true";
String usuario = "root";
String password = "jeonjeonggukisagodF@ck";
try {
// Para criar um objeto JdbcRowSet
JdbcRowSet jdbcRowSet = RowSetProvider.newFactory().createJdbcRowSet();
jdbcRowSet.setUrl(url);
jdbcRowSet.setUsername(usuario);
jdbcRowSet.setPassword(password);
return jdbcRowSet;
} catch (SQLException e) {
e.printStackTrace();
}
// A classe Connection pede pra fechar com return
return null;
}
public static CachedRowSet getRowSetConnectionCached (){
String url = "jdbc:mysql://localhost:3306/agencia?useTimezone=true&serverTimezone=UTC";
String usuario = "root";
String password = "jeonjeonggukisagodF@ck";
try {
// Para criar um objeto JdbcRowSet
CachedRowSet cashedRowSet = RowSetProvider.newFactory().createCachedRowSet();
cashedRowSet.setUrl(url);
cashedRowSet.setUsername(usuario);
cashedRowSet.setPassword(password);
return cashedRowSet;
} catch (SQLException e) {
e.printStackTrace();
}
// A classe Connection pede pra fechar com return
return null;
}
// Método para encerrar a conexão e lidar com os tratamentos
// (adaptado ao modo RowSet)
public static void close(RowSet jrs){
try {
// Se usar chave no if aqui, vai dar erro, cuidado
if (jrs != null)
jrs.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
| [
"[email protected]"
]
| |
7a0985d3b48d85f7423c31c6955daf6c51bde564 | 4bc89e41727f4212273d67da8c3ba3582d13e4ed | /src/main/java/com/example/spring/controller/c036/C036Controller.java | 6b7ab07ff862a8d9e185b5d792ee0d53a5c802cc | []
| no_license | kuwalab/spring-mvc41 | 5f7247a1b62265d0b91ddfcece6a60abb220883e | 972163dd5a4b1319f219c80482d6d50abcfdcd11 | refs/heads/master | 2020-12-04T09:45:26.364667 | 2014-12-30T21:13:57 | 2014-12-30T21:13:57 | 26,045,124 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 644 | java | package com.example.spring.controller.c036;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping("/c036")
public class C036Controller {
@RequestMapping("/checkbox")
public String checkbox(Model model) {
C036Model c036Model = new C036Model();
c036Model.setCheck(true);
model.addAttribute("c036Model", c036Model);
return "c036/checkbox";
}
@RequestMapping("/checkboxRecv")
public String checkboxRecv(String check, Model model) {
model.addAttribute("recvData", check);
return "c036/checkboxRecv";
}
}
| [
"[email protected]"
]
| |
2a3bd8697835cfd2416a504cbd5c49fdfe0fe223 | 398fdbf91f3e18f61c1295f7998bf694df3d94e4 | /src/main/java/com/ktds/vo/EmployeesVO.java | 4f9c48a36e9111e169a754c1b2c8bdbdf003cf1b | []
| no_license | wogudnn/article | ef4b24e9d2ae0b5ab0bdaa9af3894d12784e0568 | 6a2d664f080496c32ab2a7418ddaf026306591db | refs/heads/master | 2021-01-21T04:12:59.950861 | 2016-09-22T08:22:36 | 2016-09-22T08:22:36 | 68,695,223 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,069 | java | package com.ktds.vo;
public class EmployeesVO {
private int employeeId;
private String firstName;
private String lastName;
private String email;
private String phoneNumber;
private String hireDate;
private String jobId;
private int salary;
private double commissionPCT;
private int managerId;
private int departmentId;
private DepartmentsVO departmentsVO;
public EmployeesVO() {
departmentsVO = new DepartmentsVO();
}
public int getEmployeeId() {
return employeeId;
}
public void setEmployeeId(int employeeId) {
this.employeeId = employeeId;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPhoneNumber() {
return phoneNumber;
}
public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
}
public String getHireDate() {
return hireDate;
}
public void setHireDate(String hireDate) {
this.hireDate = hireDate;
}
public String getJobId() {
return jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public int getSalary() {
return salary;
}
public void setSalary(int salary) {
this.salary = salary;
}
public double getCommissionPCT() {
return commissionPCT;
}
public void setCommissionPCT(double commissionPCT) {
this.commissionPCT = commissionPCT;
}
public int getManagerId() {
return managerId;
}
public void setManagerId(int managerId) {
this.managerId = managerId;
}
public int getDepartmentId() {
return departmentId;
}
public void setDepartmentId(int departmentId) {
this.departmentId = departmentId;
}
public DepartmentsVO getDepartmentsVO() {
return departmentsVO;
}
public void setDepartmentsVO(DepartmentsVO departmentsVO) {
this.departmentsVO = departmentsVO;
}
}
| [
"wogudnn@gmailcom"
]
| wogudnn@gmailcom |
e0dcdb12fe745be36ae7dfb75fec7f16e6507135 | e5883d7064160b4fedc47cb17dc72924570de426 | /pojo/src/main/java/org/hzdb/beans/pojo/dto/OutDto.java | e4533f64347b68989804a88453c55ce6f275dc1d | []
| no_license | skywalkerzhang/itrip | 14df4703ba64413f3450fab30bb32ce38d129dba | ed3d241291357ab79629c44c371ba72e52fdc0e9 | refs/heads/master | 2023-03-04T09:05:23.207929 | 2021-02-11T09:40:35 | 2021-02-11T09:40:35 | 337,885,724 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,006 | java | package org.hzdb.beans.pojo.dto;
import java.io.Serializable;
public class OutDto implements Serializable {
/**
* 前端响应的数据
*/
private Object data;
/**
* 错误编码
*/
private String errorCode;
/**
* 响应消息
*/
private String msg;
/**
* 成功与否标识
*/
private String success;
public Object getData() {
return data;
}
public void setData(Object data) {
this.data = data;
}
public String getErrorCode() {
return errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public String getSuccess() {
return success;
}
public void setSuccess(String success) {
this.success = success;
}
}
| [
"[email protected]"
]
| |
70622e9f4cc07dd3ac1f0e5634a7915fcbed20ec | ddfb3a710952bf5260dfecaaea7d515526f92ebb | /build/tmp/expandedArchives/forge-1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1-sources.jar_c582e790131b6dd3325b282fce9d2d3d/net/minecraft/client/renderer/entity/IronGolemRenderer.java | 9021150c9ad9ac25939293104676354ba323f3db | [
"Apache-2.0"
]
| permissive | TheDarkRob/Sgeorsge | 88e7e39571127ff3b14125620a6594beba509bd9 | 307a675cd3af5905504e34717e4f853b2943ba7b | refs/heads/master | 2022-11-25T06:26:50.730098 | 2020-08-03T15:42:23 | 2020-08-03T15:42:23 | 284,748,579 | 0 | 0 | Apache-2.0 | 2020-08-03T16:19:36 | 2020-08-03T16:19:35 | null | UTF-8 | Java | false | false | 1,807 | java | package net.minecraft.client.renderer.entity;
import com.mojang.blaze3d.matrix.MatrixStack;
import net.minecraft.client.renderer.Vector3f;
import net.minecraft.client.renderer.entity.layers.IronGolemCracksLayer;
import net.minecraft.client.renderer.entity.layers.IronGolenFlowerLayer;
import net.minecraft.client.renderer.entity.model.IronGolemModel;
import net.minecraft.entity.passive.IronGolemEntity;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
@OnlyIn(Dist.CLIENT)
public class IronGolemRenderer extends MobRenderer<IronGolemEntity, IronGolemModel<IronGolemEntity>> {
private static final ResourceLocation IRON_GOLEM_TEXTURES = new ResourceLocation("textures/entity/iron_golem/iron_golem.png");
public IronGolemRenderer(EntityRendererManager renderManagerIn) {
super(renderManagerIn, new IronGolemModel<>(), 0.7F);
this.addLayer(new IronGolemCracksLayer(this));
this.addLayer(new IronGolenFlowerLayer(this));
}
/**
* Returns the location of an entity's texture.
*/
public ResourceLocation getEntityTexture(IronGolemEntity entity) {
return IRON_GOLEM_TEXTURES;
}
protected void applyRotations(IronGolemEntity entityLiving, MatrixStack matrixStackIn, float ageInTicks, float rotationYaw, float partialTicks) {
super.applyRotations(entityLiving, matrixStackIn, ageInTicks, rotationYaw, partialTicks);
if (!((double)entityLiving.limbSwingAmount < 0.01D)) {
float f = 13.0F;
float f1 = entityLiving.limbSwing - entityLiving.limbSwingAmount * (1.0F - partialTicks) + 6.0F;
float f2 = (Math.abs(f1 % 13.0F - 6.5F) - 3.25F) / 3.25F;
matrixStackIn.rotate(Vector3f.ZP.rotationDegrees(6.5F * f2));
}
}
} | [
"[email protected]"
]
| |
473aa80fc5e5dea122ee4ed0a7841578f0b3a35f | d3679002d911a2b4e62e9270be387e7da099f81c | /src/p06/lecture/p4method/A06ParameterCast.java | 66eb1caf77f0fe01644fb2af43b2a00c14ff505c | []
| no_license | dailydevp/java20210325 | 3fb3315fbbba31b914959c32b51eaf4d12d52883 | 7c022fc6f194de3b5e876b2e74c61bbd2b33f702 | refs/heads/master | 2023-04-23T00:36:19.028568 | 2021-05-04T12:52:35 | 2021-05-04T12:52:35 | 351,269,342 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 267 | java | package p06.lecture.p4method;
public class A06ParameterCast {
public static void main(String[] args) {
int a = 5;
double b;
b = a;
a = (int) b;
MyClass6 o1 = new MyClass6();
o1.method1(a);
// o1.method1(b);
o1.method2(b);
o1.method2(a);
}
}
| [
"[email protected]"
]
| |
a2fe8089d1dc0a57efd021cbd12231e9e0cdbba8 | 61cc05a88d09534ac1250a331a689289984713a9 | /cmpp/CMPPAsynPerform.java | e886afcfde90dcd5770aac99ff4c0dbdc46dc466 | []
| no_license | githublaohu/lamp-commons | 4fb61fa29dc2233e92d3253677aa54271ac7206a | 0da33919d836ef2932c6ed6075484d6b47deb50d | refs/heads/master | 2022-11-10T14:39:17.616091 | 2020-06-27T02:33:42 | 2020-06-27T02:33:42 | 275,285,786 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,065 | java | package com.lamp.commons.lang.cmpp;
import java.util.ArrayList ;
import java.util.LinkedList ;
import java.util.List ;
import java.util.concurrent.Executors ;
import java.util.concurrent.ScheduledExecutorService ;
import java.util.concurrent.ThreadFactory ;
import java.util.concurrent.TimeUnit ;
import java.util.concurrent.atomic.AtomicBoolean ;
import java.util.concurrent.atomic.AtomicInteger ;
public class CMPPAsynPerform {
/**
* 用于唤醒线程
*/
private AtomicBoolean dormancyBoo = new AtomicBoolean();
/**
* 初始化锁
*/
private AtomicBoolean isInitCSS = new AtomicBoolean();
ScheduledExecutorService scheduledExecutorService = Executors.newSingleThreadScheduledExecutor(new ThreadFactory( ) {
@Override
public Thread newThread ( Runnable r ) {
return new Thread( r , "ConfigurationRefresh" ) ;
}
});
private ConfigurationRefresh configurationRefresh = new ConfigurationRefresh( );
public void init(){
long start = System.currentTimeMillis( );
long sleepTime = 1000 - start%1000;
logger.info( "scheduledExecutorService init configurationRefresh initialDelay {} startTime {}" ,sleepTime ,start);
scheduledExecutorService.scheduleAtFixedRate(configurationRefresh , sleepTime , 1000 , TimeUnit.MILLISECONDS);
}
public boolean perform( List< Notification > list ) {
CmppSenderSeparate css = getCmppSenderSeparate();
long startTime = System.currentTimeMillis( );
int cssSize = this.cssSize ,count = 0 , size = list.size( );
try {
insertBatch( list );
List< Notification > failure = new ArrayList<>( );
LinkedList<CmppMsg> cmppMsgList = getCmppMsgList( list );
AtomicInteger sendCount;
for( ; ; ){
sendCount = css.getConfig( ).getSendCount( );
count = sendCount.getAndAdd( -size );
//logger.info( "count : {} size {} sendCount : {} " , count , size , sendCount );
if( count >= size ){
send( cmppMsgList , css , cmppMsgList.size( ) , failure);
break;
}else if( count <= 0 ){
sendCount.getAndAdd( size );
setCmppSenderSeparate( css );
cssSize = sleep( startTime , cssSize );
css = getCmppSenderSeparate( );
}else {
size = size - count;
send( cmppMsgList , css , count , failure);
css = getAndSetCmppSenderSeparate( css );
cssSize--;
}
}
if( !failure.isEmpty( ) ){
notificationMapper.sendFailure( failure );
logger.warn( "the failure Notification is " , failure.toString( ));
}
return true;
} catch ( Exception e ) {
logger.error( e.getMessage( ) ,e );
}finally{
logger.info( "send time : {}" , System.currentTimeMillis( ) - startTime );
setCmppSenderSeparate( css );
}
return false;
}
private int sleep( long startTime , int cssSize ) throws InterruptedException{
if( cssSize <= 1 ){
dormancyBoo.compareAndSet( false , true );
logger.info( "enter the await , time is {} " , System.currentTimeMillis( ) );
dormancy( false );
logger.info( "leave the await , time is {}" , System.currentTimeMillis( ) );
return this.cssSize;
}
return cssSize;
}
private void send( LinkedList<CmppMsg> cmppMsgList , CmppSenderSeparate css , int count ,List< Notification > failure) throws Exception{
LinkedList<CmppMsg> newCmppMsgList = new LinkedList<>( );
int size = cmppMsgList.size( );
int newCount = count;
CmppMsg cmppMsg;
try{
if(logger.isDebugEnabled( )){
//logger.debug( "css sendCount : {} , spCode : {} , send count : {}" ,css.getConfig( ).getSendCount( ).get( ) , css.getConfig( ).getSpCode( ) , count );
}
for( ; ; ){
cmppMsg = cmppMsgList.remove( );
NOTIFICATION_ID_MAP.put( cmppMsg.getNotification( ).getId( ) , cmppMsg.getNotification( ) );
boolean isSucceed = css.send( cmppMsg );
if(logger.isDebugEnabled( )){
logger.debug( "sequenceId : {} , phone : {} , isSucceed : {} " , cmppMsg.getSequenceId( ) ,cmppMsg.getPhone( ) ,isSucceed);
}
if( !isSucceed ){
if( cmppMsg.getNotification( ).getSendCount( ) > 0){
logger.error( "send failure : {}" , cmppMsg.getNotification( ));
cmppMsg.getNotification( ).setStatus( 901 );
cmppMsg.getNotification( ).sendCount();
heapConsumersProcessor.add( cmppMsg.getNotification( ) );
failure.add( cmppMsg.getNotification( ) );
if(!newCmppMsgList.isEmpty( )){
addNotificationAsynEntity( newCmppMsgList , css );
newCmppMsgList = new LinkedList<>( );
}
NOTIFICATION_ID_MAP.remove( cmppMsg.getNotification( ).getId( ) );
}else{
logger.error( "To failure number : {}", cmppMsg.getNotification( ) );
}
}else{
newCmppMsgList.add( cmppMsg );
}
if( count-- == 1 ){
break;
}
}
}catch(Exception e){
logger.error( "Exception cmppMsgList size is {} count is{} newCount is{} " ,size ,count , newCount );
logger.error( e.getMessage( ) , e );
}finally{
addNotificationAsynEntity( newCmppMsgList , css );
}
}
private CmppSenderSeparate getCmppSenderSeparate(){
if( !isInitCSS.get( ) ){
synchronized( isInitCSS ){
List< CmppConfig > cmppConfigList = this.cmppConfigList;
for(CmppConfig cmppConfig : cmppConfigList){
CmppSenderSeparate css = new CmppSenderSeparate();
css.init( cmppConfig );
cssList.add( css );
cssGetDataList.add( css );
cssSize++;
logger.info( cmppConfig.toString( ) );
}
heapConsumersProcessor = ( HeapConsumersProcessor ) consumersFactory.getConsumersProcessor( "couponCodeReceive" );
Thread thread = new Thread( new AsysnRead() , "asysnRead");
thread.start( );
isInitCSS.set( true );
}
}
CmppSenderSeparate css = cssList.poll( );
css.heartbeatCheck( );
return css;
}
private void setCmppSenderSeparate(CmppSenderSeparate css){
cssList.add( css );
}
private CmppSenderSeparate getAndSetCmppSenderSeparate(CmppSenderSeparate css){
setCmppSenderSeparate( css );
return getCmppSenderSeparate();
}
private synchronized void dormancy(boolean boo){
if( boo ){
logger.info( " dormancy notifyAll ");
this.notifyAll( );
}else{
try {
this.wait( );
} catch ( InterruptedException e ) {
logger.error( e.getMessage( ) ,e );
}
}
}
class AsysnRead implements Runnable{
@Override
public void run( ) {
logger.info( "AsysnRead is run ...... toot toot toot toot.... start word " );
dataLoad();
}
void dataLoad(){
LinkedList< MsgResponse > msgResponseList = new LinkedList<>( );
LinkedList<Notification> success = new LinkedList< Notification >();
LinkedList<Notification> failure = new LinkedList< Notification >();
Notification notification;
while( true ){
try{
if( !isInitCSS.get( ) ){
Thread.sleep( 100 );
}
while(true){
for( CmppSenderSeparate css : cssGetDataList ){
if( css.isSendCalculate( )){
msgResponseList.addAll( css.get( ) );
}
}
if( !msgResponseList.isEmpty( ) ){
for(MsgResponse msgResponse : msgResponseList){
notification = NOTIFICATION_ID_MAP.remove( Long.valueOf( msgResponse.getSequenceId( )));
if( notification != null){
if( msgResponse.isSuccess( ) ){
success.add( notification );
}else{
if(notification.getSendCount( ) <= 0){
logger.error( "To failure number : {} " , notification );
continue;
}
logger.error( "To failure msgResponse : {}", msgResponse );
notification.sendCount( );
failure.add( notification );
heapConsumersProcessor.add( notification );
}
}else{
logger.error( "SMS send information not found sequenceId is : {}" , msgResponse.getSequenceId( ) );
}
}
if( !success.isEmpty( )){
notificationMapper.responseSuccessful( success );
success.clear( );
}
if( !failure.isEmpty( )){
notificationMapper.responseFailure( failure );
failure.clear( );
}
msgResponseList.clear( );
}else{
Thread.sleep( 100 );
}
}
}catch(Exception e){
logger.error( e.getMessage( ) , e );
}
}
}
private void identify(List< MsgResponse > msgResponseList ,LinkedList< CmppMsg > cmppMsgList , CmppSenderSeparate css ){
List<Object> success = new ArrayList< Object >();
List<Object> failure = new ArrayList< Object >();
Object notification;
MsgResponse msgResponse;
for(int i = 0 ; i < msgResponseList.size( ) ; i++){
msgResponse = msgResponseList.get( i );
notification = cmppMsgList.get( i ).getNotification( );
logger.debug( "msgResponse sequenceId is {} , notification is {} " , msgResponse.getSequenceId( ) , notification.getId( ) );
if( msgResponse.isSuccess( ) ){
success.add( notification );
}else{
if(notification.getSendCount( ) <= 0){
//logger.error( "css spId:{} To failure number : {} ",css.getConfig( ).getSpCode( ) , notification );
continue;
}
//logger.error( "css spId:{} To failure msgResponse : {}",css.getConfig( ).getSpCode( ), msgResponse );
notification.sendCount( );
failure.add( notification );
//heapConsumersProcessor.add( notification );
}
}
if( !success.isEmpty( )){
notificationMapper.responseSuccessful( success );
}
if( !failure.isEmpty( )){
notificationMapper.responseFailure( failure );
}
}
}
class ConfigurationRefresh implements Runnable{
@Override
public void run( ) {
for(CmppConfig cmppConfig : cmppConfigList){
int sendCount = cmppConfig.getSendCount( ).get( ) ;
if( sendCount != cmppConfig.getPoolSize( )){
cmppConfig.getSendCount( ).getAndSet( cmppConfig.getPoolSize( ) );
logger.info( "the refresh before cmppConfig {} after cmppConfig {} " ,sendCount, cmppConfig.getSendCount( ).get( ) );
}
}
if( dormancyBoo.compareAndSet( true , false ) ){
dormancy( true );
}
}
}
}
| [
"[email protected]"
]
| |
afa509889905d4019ef34e48a400ca27192fa529 | 0083018737bfc2626b5e3b63f1cd4de9fd1c7be7 | /src/main/java/nl/hyves/detector/OnePair.java | b8684e2751051195be2f90ec3b085cc856c9812b | []
| no_license | maxm165/psychic-poker | 18a451341d9ef162de9e63342bd76579db6ed98a | b357983a041bd91cf3b1d707694cfa1963f36dc0 | refs/heads/master | 2020-04-27T09:19:49.098836 | 2013-04-27T12:57:08 | 2013-04-27T12:57:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 494 | java | package nl.hyves.detector;
import java.util.List;
import nl.hyves.Card;
import nl.hyves.detector.util.CardUtils;
public class OnePair extends AbstractHandDetector {
public OnePair() {
super("one-pair");
}
@Override
protected List<Card> searchCombination(final List<Card> cards) {
for (List<Card> group : CardUtils.groupByRank(cards)) {
if (group.size() == 2) {
return group;
}
}
return null;
}
}
| [
"[email protected]"
]
| |
6931b17194d07dbf7226a2cd085ce6e116fdfc7a | 3e4b029f410369c824b5391cb53942d7df246030 | /backend/src/main/java/net/es/oscars/topo/beans/TopoException.java | 2a53509660156db687b734c8826c46d400085df9 | [
"MIT"
]
| permissive | esnet/oscars | cf693896ba34206ad33fbdc34ef4d3237e12a508 | 45ed191d95644bc2760a995975c7adbd98c01757 | refs/heads/master | 2023-08-14T06:04:21.032116 | 2023-07-27T15:44:10 | 2023-07-27T15:44:10 | 52,855,896 | 3 | 1 | MIT | 2023-08-22T16:35:28 | 2016-03-01T07:07:11 | Java | UTF-8 | Java | false | false | 149 | java | package net.es.oscars.topo.beans;
public class TopoException extends Exception {
public TopoException(String msg) {
super(msg);
}
}
| [
"h8XntUEBNae6"
]
| h8XntUEBNae6 |
48d29fac4ac6ef7cf9ef5a09f87045f39775e717 | 0eb2e041702bbbc7691e606820f97c1cf32bf5ab | /src/print/homework1.java | 21219ae3266825f8c6bff1d1d6a96f2ae13c6a98 | []
| no_license | albertwufamily/yusprj_git | 51368c36f39f9723aba1b23e6275404ea0dd0263 | c3afbc2dcf8ec5b918eab8aad945403cf75b26de | refs/heads/master | 2020-03-12T08:37:43.574073 | 2019-02-20T03:32:36 | 2019-02-20T03:32:36 | 130,531,902 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 509 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package print;
/**
*
* @author lili
*/
public class homework1 {
public static void main (String [] args)
{
System.out.println("I don't have a pet, my mothers maiden name is"+
"zhu, my birthday is febuary 27th, my sister's name is rosie.");
}
}
| [
"[email protected]"
]
| |
23041eec3630ad070739541c0aae5681137f4d11 | 442b00ba09789b546125b42a5fb58f597e9a2395 | /src/main/java/vigna/fastutil/BidirectionalIterator.java | 3901851ba00bcd88807e20753f51cbf292aaf973 | [
"Apache-2.0"
]
| permissive | tommyettinger/doughyo | 305737ffb63534a7393fd08e3e3db5c250883bb1 | e0f8fec76873aee223d6ae354665da9cccb9104b | refs/heads/master | 2021-01-20T18:44:00.817894 | 2016-06-26T09:23:06 | 2016-06-26T09:23:06 | 60,392,230 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,685 | java | package vigna.fastutil;
/*
* Copyright (C) 2002-2015 Sebastiano Vigna
*
* 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.
*/
import java.util.Iterator;
import java.util.ListIterator;
/** A bidirectional {@link Iterator}.
*
* <P>This kind of iterator is essentially a {@link ListIterator} that
* does not support {@link ListIterator#previousIndex()} and {@link
* ListIterator#nextIndex()}. It is useful for those maps that can easily
* provide bidirectional iteration, but provide no index.
*
* <P>Note that iterators returned by <code>fastutil</code> classes are more
* specific, and support skipping. This class serves the purpose of organising
* in a cleaner way the relationships between various iterators.
*
* @see Iterator
* @see ListIterator
*/
public interface BidirectionalIterator<K> extends Iterator<K> {
/** Returns the previous element from the collection.
*
* @return the previous element from the collection.
* @see ListIterator#previous()
*/
K previous();
/** Returns whether there is a previous element.
*
* @return whether there is a previous element.
* @see ListIterator#hasPrevious()
*/
boolean hasPrevious();
}
| [
"[email protected]"
]
| |
50e47476b543ef18699f48d2f346efe58dbc43f9 | bfb5d91643c0cf1246e92d40fe3b18330e37ea73 | /app/src/main/java/com/waperr/aalaundry/config/GPSTracker.java | 403ce82a15bdc6b832f6846b669c3adc5fb039be | []
| no_license | pahlevikun/aalondri | 3a62e467fe9e66fe2cd419215f59995eb0dbe13e | 0adeefe5b2ecc18435cbfcf575e932a8951dd76a | refs/heads/master | 2021-03-22T04:33:25.390352 | 2017-08-24T14:55:36 | 2017-08-24T14:55:36 | 114,502,178 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,639 | java | package com.waperr.aalaundry.config;
/**
* Created by farhan on 8/17/16.
*/
import android.Manifest;
import android.app.AlertDialog;
import android.app.Service;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.os.IBinder;
import android.provider.Settings;
import android.support.v4.app.ActivityCompat;
public class GPSTracker extends Service implements LocationListener {
private final Context mContext;
// flag for GPS status
boolean isGPSEnabled = false;
// flag for network status
boolean isNetworkEnabled = false;
// flag for GPS status
boolean canGetLocation = false;
Location location; // location
double latitude; // latitude
double longitude; // longitude
// The minimum distance to change Updates in meters
private static final long MIN_DISTANCE_CHANGE_FOR_UPDATES = 10; // 10 meters
// The minimum time between updates in milliseconds
private static final long MIN_TIME_BW_UPDATES = 1000 * 60 * 1; // 1 minute
// Declaring a Location Manager
protected LocationManager locationManager;
public GPSTracker(Context context) {
this.mContext = context;
getLocation();
}
public Location getLocation() {
try {
locationManager = (LocationManager) mContext
.getSystemService(LOCATION_SERVICE);
// getting GPS status
isGPSEnabled = locationManager
.isProviderEnabled(LocationManager.GPS_PROVIDER);
// getting network status
isNetworkEnabled = locationManager
.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
if (!isGPSEnabled && !isNetworkEnabled) {
// no network provider is enabled
} else {
this.canGetLocation = true;
if (isNetworkEnabled) {
locationManager.requestLocationUpdates(
LocationManager.NETWORK_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
// Log.d("Network", "Network");
if (locationManager != null) {
location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}
// if GPS Enabled get lat/long using GPS Services
if (isGPSEnabled) {
if (location == null) {
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
// Log.d("GPS Enabled", "GPS Enabled");
if (locationManager != null) {
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
// TODO: Consider calling
// ActivityCompat#requestPermissions
// here to request the missing permissions, and then overriding
// public void onRequestPermissionsResult(int requestCode, String[] permissions,
// int[] grantResults)
// to handle the case where the user grants the permission. See the documentation
// for ActivityCompat#requestPermissions for more details.
//return TODO;
}
location = locationManager
.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}
}
}
} catch (Exception e) {
}
return location;
}
/**
* Stop using GPS listener Calling this function will stop using GPS in your
* app.
* */
public void stopUsingGPS() {
if (locationManager != null) {
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
// TODO: Consider calling
// ActivityCompat#requestPermissions
// here to request the missing permissions, and then overriding
// public void onRequestPermissionsResult(int requestCode, String[] permissions,
// int[] grantResults)
// to handle the case where the user grants the permission. See the documentation
// for ActivityCompat#requestPermissions for more details.
return;
}
locationManager.removeUpdates(GPSTracker.this);
}
}
/**
* Function to get latitude
* */
public double getLatitude() {
if (location != null) {
latitude = location.getLatitude();
}
// return latitude
return latitude;
}
/**
* Function to get longitude
* */
public double getLongitude() {
if (location != null) {
longitude = location.getLongitude();
}
// return longitude
return longitude;
}
/**
* Function to check GPS/wifi enabled
*
* @return boolean
* */
public boolean canGetLocation() {
return this.canGetLocation;
}
/**
* Function to show settings alert dialog On pressing Settings button will
* lauch Settings Options
* */
public void showSettingsAlert() {
AlertDialog.Builder alertDialog = new AlertDialog.Builder(mContext);
// Setting DialogHelp Title
alertDialog.setTitle("GPS is settings");
// Setting DialogHelp Message
alertDialog
.setMessage("GPS is not enabled. Do you want to go to settings menu?");
// On pressing Settings button
alertDialog.setPositiveButton("Settings",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Intent intent = new Intent(
Settings.ACTION_LOCATION_SOURCE_SETTINGS);
mContext.startActivity(intent);
}
});
// on pressing cancel button
alertDialog.setNegativeButton("Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
// Showing Alert Message
alertDialog.show();
}
@Override
public void onLocationChanged(Location location) {
try {
float bestAccuracy = -1f;
if (location.getAccuracy() != 0.0f && (location.getAccuracy() < bestAccuracy) || bestAccuracy == -1f) {
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
// TODO: Consider calling
// ActivityCompat#requestPermissions
// here to request the missing permissions, and then overriding
// public void onRequestPermissionsResult(int requestCode, String[] permissions,
// int[] grantResults)
// to handle the case where the 01user grants the permission. See the documentation
// for ActivityCompat#requestPermissions for more details.
// return ;
}
locationManager.removeUpdates(this);
}
bestAccuracy = location.getAccuracy();
} catch (NullPointerException e) {
System.out.print("Caught the NullPointerException");
}
}
@Override
public void onProviderDisabled(String provider) {
}
@Override
public void onProviderEnabled(String provider) {
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
@Override
public IBinder onBind(Intent arg0) {
return null;
}
public float getAccurecy()
{
return location.getAccuracy();
}
} | [
"[email protected]"
]
| |
24f5a64c1858fbf327d7de12d9ba006cf2a2df47 | 7308a9290eb8b922af69d7e58e341d133976901b | /src/main/java/Transposer.java | b4d564ece10445d293c2b3abb0a17bb27148498f | []
| no_license | archer-man/transpose | a3a05420b496435e14fb00dc77eb68135ac6e71f | 0ca84317790fa513306387775477baf6c5bbe0b3 | refs/heads/master | 2022-12-22T01:00:19.363128 | 2020-09-28T17:37:28 | 2020-09-28T17:37:28 | 296,308,783 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,215 | java | import java.util.ArrayList;
import java.io.*;
import java.util.Arrays;
public class Transposer {
private int wordSymbolLimit;
private boolean cropTheWord;
private final boolean rightSideAlignment;
public Transposer(int wordSymbolLimit, boolean cropTheWord, boolean rightSideAlignment) {
this.wordSymbolLimit = wordSymbolLimit;
this.cropTheWord = cropTheWord;
this.rightSideAlignment = rightSideAlignment;
}
private ArrayList<String> alterString(ArrayList<String> list, boolean limitWasZero) {
try {
if (wordSymbolLimit != 0 && !limitWasZero) {
for (int i = 0; i < list.size(); i++) {
if (list.get(i).length() >= wordSymbolLimit && cropTheWord) {
if (!rightSideAlignment) {
list.set(i, list.get(i).substring(0, wordSymbolLimit));
} else {
list.set(i, list.get(i).substring(list.get(i).length() - wordSymbolLimit));
}
} else if (list.get(i).length() <= wordSymbolLimit) {
if (!rightSideAlignment) {
list.set(i, String.format("%1$-" + wordSymbolLimit + "s", list.get(i)));
} else {
list.set(i, String.format("%1$" + wordSymbolLimit + "s", list.get(i)));
}
} else {
throw new RuntimeException(list.get(i) + " element exceeds specified symbol limit. Add -t launch argument to trim words.");
}
}
} else {
int maxStringLength = 1;
for (int b = 0; b < list.size(); b++) {
if (list.get(b).length() > maxStringLength) {
maxStringLength = list.get(b).length();
}
wordSymbolLimit = maxStringLength;
for (int i = 0; i < list.size(); i++) {
if (list.get(i).length() < wordSymbolLimit) {
list.set(i, String.format("%1$-" + wordSymbolLimit + "s", list.get(i)));
}
}
}
}
} catch (Exception e) {
System.err.println(e.getMessage());
System.exit(1);
}
return list;
}
public void transpose(BufferedReader in, BufferedWriter out) throws IOException {
ArrayList<ArrayList<String>> originalMatrix = new ArrayList<>();
ArrayList<ArrayList<String>> transposedMatrix = new ArrayList<>();
boolean limitWasZero = false;
if (wordSymbolLimit == 0) {
limitWasZero = true;
}
try {
String line;
int i = 0;
while ((line = in.readLine()) != null) {
if (!line.trim().isEmpty()) {
originalMatrix.add(new ArrayList<String>());
ArrayList<String> word = new ArrayList<String>(Arrays.asList(line.split("\\s+")));
originalMatrix.set(i, word);
i++;
} else {
break;
}
}
for (int h = 0; h < originalMatrix.size(); h++) {
originalMatrix.set(h, alterString(originalMatrix.get(h), limitWasZero));
}
int rowNumber = originalMatrix.size();
int columnNumber = 0;
for (int m = 0; m < rowNumber; m++) {
int rowLength = originalMatrix.get(m).size();
if (rowLength > columnNumber) {
columnNumber = rowLength;
}
}
for (int r = 0; r < rowNumber; r++) {
ArrayList<String> oldRowElements = originalMatrix.get(r);
for (int c = 0; c < columnNumber; c++) {
ArrayList<String> transposedMatrixRow = new ArrayList<>();
if (r != 0) {
try {
transposedMatrixRow = transposedMatrix.get(c);
} catch (IndexOutOfBoundsException e) {
transposedMatrixRow.add("");
}
}
try {
transposedMatrixRow.add(oldRowElements.get(c));
} catch (IndexOutOfBoundsException e) {
if (wordSymbolLimit != 0 && !limitWasZero) {
transposedMatrixRow.add(String.format("%1$-" + wordSymbolLimit + "s", ""));
} else if (wordSymbolLimit != 0) {
wordSymbolLimit = 1;
for (int k = 0; k < oldRowElements.size(); k++) {
if (oldRowElements.get(k).length() > wordSymbolLimit) {
wordSymbolLimit = oldRowElements.get(k).length();
}
}
transposedMatrixRow.add(String.format("%1$-" + wordSymbolLimit + "s", ""));
}
}
try {
transposedMatrix.set(c, transposedMatrixRow);
} catch (IndexOutOfBoundsException e) {
transposedMatrix.add(transposedMatrixRow);
}
}
}
} catch (IOException e) {
e.printStackTrace();
}
for (int i = 0; i < transposedMatrix.size(); i++) {
out.write(String.join(" ", transposedMatrix.get(i)));
if (transposedMatrix.indexOf(transposedMatrix.get(i)) != transposedMatrix.size() - 1) {
out.newLine();
}
}
}
public void transpose(InputStreamReader inputStream, OutputStreamWriter outputStream) throws IOException {
try (BufferedReader reader = new BufferedReader(inputStream)) {
try (BufferedWriter writer = new BufferedWriter(outputStream)) {
transpose(reader, writer);
}
}
}
} | [
"[email protected]"
]
| |
19248419e6ae8cbf68634135988cc85dcdb1534b | f22c68988520b4ef23360c4537ebcbc356b4aa10 | /src/main/java/com/orangeHRM/pages/LeavePage.java | 941090e25fc7a060d289775c8fe5f963a1847740 | []
| no_license | xor-shruti/automationFrameworkJava | d461c9762686036756eb05063cc9bf5e8ab45731 | 29b2d3222c078175234e8c8ec563ed4fe71c54e0 | refs/heads/master | 2023-01-29T19:21:22.903755 | 2020-11-23T23:15:03 | 2020-11-23T23:15:03 | 314,601,795 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,594 | java | package com.orangeHRM.pages;
import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.How;
import org.openqa.selenium.support.PageFactory;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.Select;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.testng.Assert;
import io.qameta.allure.Step;
public class LeavePage {
WebDriver driver = null;
@FindBy(how=How.XPATH,using="//input[contains(@id, 'empName')]")
WebElement Emp_Name;
@FindBy(how=How.XPATH, using = "//a[contains(@id,'leave') and @class = 'firstLevelMenu']")
WebElement Leave_Menu;
@FindBy(xpath = "//a[text() = 'Entitlements']")
WebElement Entitlements_Option;
@FindBy(how=How.XPATH,using = "//a[text() = 'Entitlements']//following::li")
List<WebElement> select_entitlement;
@FindBy(xpath = "//input[@type='checkbox' and contains(@id,'bulk_assign')]")
WebElement Bulk_assign_checkbox;
@FindBy(how=How.NAME,using = "entitlements[filters][location]")
WebElement Location_Dropdown;
@FindBy(how=How.NAME,using = "entitlements[filters][subunit]")
WebElement SubUnit_Dropdown;
@FindBy(how=How.XPATH,using = "//input[@id='entitlements_entitlement']")
WebElement Entitlement_input;
@FindBy(xpath = "//input[contains(@id,'Save')]")
WebElement Save_Entitlement;
@FindBy(how=How.XPATH,using = "//*[@id= 'dialogUpdateEntitlementConfirmBtn']")
WebElement Confirm_Button;
@FindBy(xpath = "//ol[@id = 'employee_entitlement_update']")
WebElement employee_entitlement_update;
@FindBy(xpath = "//ol[@id = 'employee_entitlement_update']//following::input[@value = 'Confirm']")
WebElement employee_entitlement_update_confirm;
@FindBy(xpath = "//table[@id='resultTable']/tbody/tr/td")
List<WebElement> Result_Table;
public LeavePage(WebDriver driver){
this.driver = driver;
PageFactory.initElements(driver, this);
}
@Step("Navigate to Add Leave Entitlement")
public void navigate_to_add_entitlement()
{
Actions builder = new Actions(driver);
WebDriverWait wait=new WebDriverWait(driver, 20);
wait.until(ExpectedConditions.visibilityOf(Leave_Menu));
builder.moveToElement(Leave_Menu).build().perform();
wait.until(ExpectedConditions.visibilityOf(Entitlements_Option));
builder.moveToElement(Entitlements_Option).build().perform();
List <WebElement> entitlement_options = select_entitlement;
for (WebElement ele:entitlement_options)
{
try
{
if(ele.getText().equals("Add Entitlements"))
ele.click();
break;
}
catch(Exception e)
{
System.out.println("Unable to select Add Entitlements option.Please check manually!!");
}
}
Assert.assertTrue(Save_Entitlement.isDisplayed());
}
@Step("Add Employee Name for Leave Entitlement")
public void add_employee_name(String emp_name) throws Exception
{
Boolean isOptionSelected = null;
Emp_Name.sendKeys(emp_name);
String optionToSelect = emp_name;
List<WebElement> options = driver.findElements(By.className("ac_even"));
for (WebElement webElement : options) {
if (webElement.getText().equalsIgnoreCase(optionToSelect)) {
webElement.click();
isOptionSelected = Boolean.TRUE;
}
}
if (isOptionSelected) {
System.out.println(optionToSelect + " has been selected");
}
else {
System.out.println(optionToSelect + " could not be selected");
}
}
@Step("Select Leave Type for Leave Entitlement")
public void select_leave_type(String leave_type) throws Exception
{
Select Leave_Type = new Select(driver.findElement(By.id("entitlements_leave_type")));
Leave_Type.selectByVisibleText(leave_type);
}
@Step("Select Leave Type for Leave Entitlement")
public void add_entitlement(String entitlement) throws Exception{
Entitlement_input.sendKeys(entitlement);
Save_Entitlement.click();
if(employee_entitlement_update.isDisplayed()){
employee_entitlement_update_confirm.click();
}
}
@Step("Verify Leave Entitlement")
public void verify_entitlement_submitted()
{
System.out.println("In Verify Leave Entilement Method");
List <WebElement> Added_Entitlement = Result_Table;
for(WebElement ele : Added_Entitlement)
System.out.println("Values in the result table are:" + ele.getText());
}
}
| [
"[email protected]"
]
| |
8bc1a9de61d93d7eb7f42c5c4bab049fd945e692 | 833772a60c7a47aad7607b3b639d60d33d8625de | /thr/webapp/src/main/java/com/cgi/seminar/web/rest/dto/package-info.java | dafb5f2bd6797ade9432036c84c36654e5e4d49f | [
"MIT"
]
| permissive | cgi-techseminar-ee/messagequeue-sample-project-evergreen-medical | 400534f2ce0e1fbe05e1f7d04c6cd4d89f5168ca | 8fd2df875c8bf1cdb6b8eb376b2d4e28f4a550d7 | refs/heads/master | 2021-01-10T13:34:51.048885 | 2015-10-29T18:33:39 | 2015-10-29T18:33:39 | 45,197,397 | 0 | 0 | null | 2015-10-30T12:45:39 | 2015-10-29T16:54:20 | Java | UTF-8 | Java | false | false | 108 | java | /**
* Data Transfer Objects used by Spring MVC REST controllers.
*/
package com.cgi.seminar.web.rest.dto;
| [
"[email protected]"
]
| |
3e8440c397dcc7fb254db23aab7b04b74ec9b46e | c7bbd9d7d0ea1e1496813eb4e3e4db6cc1908952 | /app/src/main/java/com/example/esteban/a08_list_view_with_custom_adapter/Proveedor_de_datos_peliculas.java | bb7edc1e1b0a0c8a195fac1029269d4055b41b89 | []
| no_license | estebanbri/08-List-View-with-Custom-Adapter | 462ca5da18c4e008e75ec5e99534023910dd8181 | ad26e0a0f6be4c5426d7a5904be6df431dabc62f | refs/heads/master | 2021-01-19T04:02:32.503960 | 2017-04-05T20:15:31 | 2017-04-05T20:15:31 | 87,348,624 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,113 | java | package com.example.esteban.a08_list_view_with_custom_adapter;
/**
* Created by esteban on 05/04/17.
*/
public class Proveedor_de_datos_peliculas {
private int poster_pelicula;
private String titulo_pelicula;
private String raiting_pelicula;
public Proveedor_de_datos_peliculas(int poster_pelicula, String titulo_pelicula, String raiting_pelicula) {
this.poster_pelicula = poster_pelicula;
this.titulo_pelicula = titulo_pelicula;
this.raiting_pelicula = raiting_pelicula;
}
public int getPoster_pelicula() {
return poster_pelicula;
}
public void setPoster_pelicula(int poster_pelicula) {
this.poster_pelicula = poster_pelicula;
}
public String getTitulo_pelicula() {
return titulo_pelicula;
}
public void setTitulo_pelicula(String titulo_pelicula) {
this.titulo_pelicula = titulo_pelicula;
}
public String getRaiting_pelicula() {
return raiting_pelicula;
}
public void setRaiting_pelicula(String raiting_pelicula) {
this.raiting_pelicula = raiting_pelicula;
}
}
| [
"[email protected]"
]
| |
8ef7aea63d4f859c0febd855505ae9d64ceed403 | a604b6f3ab00ff9bee196a8fc709a9f81a91e56d | /app/src/main/java/com/minmai/wallet/common/uitl/PhotoUtils.java | 57c8b9f49588dca262be163a0a4c3146cf53b8ce | []
| no_license | androidck/Wallet | 4ad14aca7e39082899bd90b61a7419082587ff57 | f7855deede6ae03240d4d3c62ff6a2b60e4ab82a | refs/heads/master | 2020-04-18T06:37:38.266626 | 2019-03-18T01:08:12 | 2019-03-18T01:08:12 | 167,329,355 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,060 | java | package com.minmai.wallet.common.uitl;
import android.annotation.SuppressLint;
import android.content.ContentUris;
import android.content.Context;
import android.content.Intent;
import android.database.Cursor;
import android.graphics.Bitmap;
import android.net.Uri;
import android.os.Build;
import android.os.Environment;
import android.provider.DocumentsContract;
import android.provider.MediaStore;
import android.support.v4.app.Fragment;
/**
* @author zhengzhong on 2016/8/6 16:16
* Email [email protected]
*/
public class PhotoUtils {
private static final String TAG = "PhotoUtils";
/**
* @param fragment 当前fragment
* @param imageUri 拍照后照片存储路径
* @param requestCode 调用系统相机请求码
*/
public static void takePicture(Fragment fragment, Uri imageUri, int requestCode) {
//调用系统相机
Intent intentCamera = new Intent();
intentCamera.setAction(MediaStore.ACTION_IMAGE_CAPTURE);
//将拍照结果保存至photo_file的Uri中,不保留在相册中
intentCamera.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);
fragment.startActivityForResult(intentCamera, requestCode);
}
/**
* @param fragment 当前fragment
* @param requestCode 打开相册的请求码
*/
public static void openPic(Fragment fragment, int requestCode) {
Intent photoPickerIntent = new Intent(Intent.ACTION_GET_CONTENT);
photoPickerIntent.setType("image/*");
fragment.startActivityForResult(photoPickerIntent, requestCode);
}
/**
* @param fragment 当前fragment
* @param orgUri 剪裁原图的Uri
* @param aspectX X方向的比例
* @param aspectY Y方向的比例
* @param width 剪裁图片的宽度
* @param height 剪裁图片高度
* @param requestCode 剪裁图片的请求码
*/
public static void cropImageUri(Fragment fragment, Uri orgUri, int aspectX, int aspectY, int width, int height, int requestCode) {
Intent intent = new Intent("com.android.camera.action.CROP");
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
}
intent.setDataAndType(orgUri, "image/*");
//发送裁剪信号
intent.putExtra("crop", "true");
// intent.putExtra("aspectX", aspectX);
// intent.putExtra("aspectY", aspectY);
intent.putExtra("outputX", width);
intent.putExtra("outputY", height);
intent.putExtra("scale", true);
//1-false用uri返回图片
//2-true直接用bitmap返回图片(此种只适用于小图片,返回图片过大会报错)
intent.putExtra("return-data", false);
intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());
intent.putExtra("noFaceDetection", true);
intent.putExtra("return-data", true);
fragment.startActivityForResult(intent, requestCode);
}
/**
* 读取uri所在的图片
*
* @param uri 图片对应的Uri
* @param mContext 上下文对象
* @return 获取图像的Bitmap
*/
public static Bitmap getBitmapFromUri(Uri uri, Context mContext) {
try {
Bitmap bitmap = MediaStore.Images.Media.getBitmap(mContext.getContentResolver(), uri);
return bitmap;
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
/**
* @param context 上下文对象
* @param uri 当前相册照片的Uri
* @return 解析后的Uri对应的String
*/
@SuppressLint("NewApi")
public static String getPath(final Context context, final Uri uri) {
final boolean isKitKat = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT;
String pathHead = "file:///";
// DocumentProvider
if (isKitKat && DocumentsContract.isDocumentUri(context, uri)) {
// ExternalStorageProvider
if (isExternalStorageDocument(uri)) {
final String docId = DocumentsContract.getDocumentId(uri);
final String[] split = docId.split(":");
final String type = split[0];
if ("primary".equalsIgnoreCase(type)) {
return pathHead + Environment.getExternalStorageDirectory() + "/" + split[1];
}
}
// DownloadsProvider
else if (isDownloadsDocument(uri)) {
final String id = DocumentsContract.getDocumentId(uri);
final Uri contentUri = ContentUris.withAppendedId(Uri.parse("content://downloads/public_downloads"), Long.valueOf(id));
return pathHead + getDataColumn(context, contentUri, null, null);
}
// MediaProvider
else if (isMediaDocument(uri)) {
final String docId = DocumentsContract.getDocumentId(uri);
final String[] split = docId.split(":");
final String type = split[0];
Uri contentUri = null;
if ("image".equals(type)) {
contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;
} else if ("video".equals(type)) {
contentUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI;
} else if ("audio".equals(type)) {
contentUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
}
final String selection = "_id=?";
final String[] selectionArgs = new String[]{split[1]};
return pathHead + getDataColumn(context, contentUri, selection, selectionArgs);
}
}
// MediaStore (and general)
else if ("content".equalsIgnoreCase(uri.getScheme())) {
return pathHead + getDataColumn(context, uri, null, null);
}
// File
else if ("file".equalsIgnoreCase(uri.getScheme())) {
return pathHead + uri.getPath();
}
return null;
}
/**
* Get the value of the data column for this Uri. This is useful for
* MediaStore Uris, and other file-based ContentProviders.
*
* @param context The context.
* @param uri The Uri to query.
* @param selection (Optional) Filter used in the query.
* @param selectionArgs (Optional) Selection arguments used in the query.
* @return The value of the _data column, which is typically a file path.
*/
private static String getDataColumn(Context context, Uri uri, String selection, String[] selectionArgs) {
Cursor cursor = null;
final String column = "_data";
final String[] projection = {column};
try {
cursor = context.getContentResolver().query(uri, projection, selection, selectionArgs, null);
if (cursor != null && cursor.moveToFirst()) {
final int column_index = cursor.getColumnIndexOrThrow(column);
return cursor.getString(column_index);
}
} finally {
if (cursor != null)
cursor.close();
}
return null;
}
/**
* @param uri The Uri to check.
* @return Whether the Uri authority is ExternalStorageProvider.
*/
private static boolean isExternalStorageDocument(Uri uri) {
return "com.android.externalstorage.documents".equals(uri.getAuthority());
}
/**
* @param uri The Uri to check.
* @return Whether the Uri authority is DownloadsProvider.
*/
private static boolean isDownloadsDocument(Uri uri) {
return "com.android.providers.downloads.documents".equals(uri.getAuthority());
}
/**
* @param uri The Uri to check.
* @return Whether the Uri authority is MediaProvider.
*/
private static boolean isMediaDocument(Uri uri) {
return "com.android.providers.media.documents".equals(uri.getAuthority());
}
}
| [
"Wdlzxc123"
]
| Wdlzxc123 |
d1f175e10f2d306ee7b13b28d598750350341ffa | 4fe2c53331821145967b4c4f005f571f2652ae36 | /ucrop/src/main/java/com/yalantis/ucrop/UCrop.java | bd4f1988ff9613b8d14c19e8f584e148b16994d6 | []
| no_license | woyl/iyouVipAndroid | 9fbb7145c61e7bba3a4e4a891058b51df1d8fee6 | 8e8b7746dd828e2438e35ad221a1b2af8eb66ad3 | refs/heads/master | 2022-11-24T23:16:57.952701 | 2020-07-30T06:15:42 | 2020-07-30T06:15:42 | 283,685,369 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 23,457 | java | package com.yalantis.ucrop;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.net.Uri;
import android.os.Bundle;
import android.os.Parcelable;
import androidx.annotation.AnimRes;
import androidx.annotation.ColorInt;
import androidx.annotation.DrawableRes;
import androidx.annotation.FloatRange;
import androidx.annotation.IntRange;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import com.yalantis.ucrop.model.AspectRatio;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Locale;
/**
* Created by Oleksii Shliama (https://github.com/shliama).
* <p/>
* Builder class to ease Intent setup.
*/
public class UCrop {
public static final int REQUEST_CROP = 69;
public static final int RESULT_ERROR = 96;
// private static final String EXTRA_PREFIX = BuildConfig.APPLICATION_ID;
private static final String EXTRA_PREFIX = BuildConfig.LIBRARY_PACKAGE_NAME;
public static final String EXTRA_INPUT_URI = EXTRA_PREFIX + ".InputUri";
public static final String EXTRA_OUTPUT_URI = EXTRA_PREFIX + ".OutputUri";
public static final String EXTRA_OUTPUT_CROP_ASPECT_RATIO = EXTRA_PREFIX + ".CropAspectRatio";
public static final String EXTRA_OUTPUT_IMAGE_WIDTH = EXTRA_PREFIX + ".ImageWidth";
public static final String EXTRA_OUTPUT_IMAGE_HEIGHT = EXTRA_PREFIX + ".ImageHeight";
public static final String EXTRA_OUTPUT_OFFSET_X = EXTRA_PREFIX + ".OffsetX";
public static final String EXTRA_OUTPUT_OFFSET_Y = EXTRA_PREFIX + ".OffsetY";
public static final String EXTRA_ERROR = EXTRA_PREFIX + ".Error";
public static final String EXTRA_ASPECT_RATIO_X = EXTRA_PREFIX + ".AspectRatioX";
public static final String EXTRA_ASPECT_RATIO_Y = EXTRA_PREFIX + ".AspectRatioY";
public static final String EXTRA_MAX_SIZE_X = EXTRA_PREFIX + ".MaxSizeX";
public static final String EXTRA_MAX_SIZE_Y = EXTRA_PREFIX + ".MaxSizeY";
public static final String EXTRA_WINDOW_EXIT_ANIMATION = EXTRA_PREFIX + ".WindowAnimation";
public static final String EXTRA_NAV_BAR_COLOR = EXTRA_PREFIX + ".navBarColor";
private Intent mCropIntent;
private Bundle mCropOptionsBundle;
/**
* This method creates new Intent builder and sets both source and destination image URIs.
*
* @param source Uri for image to crop
* @param destination Uri for saving the cropped image
*/
public static UCrop of(@NonNull Uri source, @NonNull Uri destination) {
return new UCrop(source, destination);
}
private UCrop(@NonNull Uri source, @NonNull Uri destination) {
mCropIntent = new Intent();
mCropOptionsBundle = new Bundle();
mCropOptionsBundle.putParcelable(EXTRA_INPUT_URI, source);
mCropOptionsBundle.putParcelable(EXTRA_OUTPUT_URI, destination);
}
/**
* Set an aspect ratio for crop bounds.
* User won't see the menu with other ratios options.
*
* @param x aspect ratio X
* @param y aspect ratio Y
*/
public UCrop withAspectRatio(float x, float y) {
mCropOptionsBundle.putFloat(EXTRA_ASPECT_RATIO_X, x);
mCropOptionsBundle.putFloat(EXTRA_ASPECT_RATIO_Y, y);
return this;
}
/**
* Set an aspect ratio for crop bounds that is evaluated from source image width and height.
* User won't see the menu with other ratios options.
*/
public UCrop useSourceImageAspectRatio() {
mCropOptionsBundle.putFloat(EXTRA_ASPECT_RATIO_X, 0);
mCropOptionsBundle.putFloat(EXTRA_ASPECT_RATIO_Y, 0);
return this;
}
/**
* Set maximum size for result cropped image.
*
* @param width max cropped image width
* @param height max cropped image height
*/
public UCrop withMaxResultSize(@IntRange(from = 100) int width, @IntRange(from = 100) int height) {
mCropOptionsBundle.putInt(EXTRA_MAX_SIZE_X, width);
mCropOptionsBundle.putInt(EXTRA_MAX_SIZE_Y, height);
return this;
}
public UCrop withOptions(@NonNull Options options) {
mCropOptionsBundle.putAll(options.getOptionBundle());
return this;
}
/**
* Send the crop Intent from animation an Activity
*
* @param activity Activity to receive result
*/
public void startAnimation(@NonNull Activity activity, @AnimRes int activityCropEnterAnimation) {
if (activityCropEnterAnimation != 0) {
start(activity, REQUEST_CROP, activityCropEnterAnimation);
} else {
start(activity, REQUEST_CROP);
}
}
/**
* Send the crop Intent from an Activity with a custom request code or animation
*
* @param activity Activity to receive result
* @param requestCode requestCode for result
*/
public void start(@NonNull Activity activity, int requestCode, @AnimRes int activityCropEnterAnimation) {
activity.startActivityForResult(getIntent(activity), requestCode);
activity.overridePendingTransition(activityCropEnterAnimation, R.anim.ucrop_anim_fade_in);
}
/**
* Send the crop Intent from an Activity
*
* @param activity Activity to receive result
*/
public void start(@NonNull Activity activity) {
start(activity, REQUEST_CROP);
}
/**
* Send the crop Intent from an Activity with a custom request code
*
* @param activity Activity to receive result
* @param requestCode requestCode for result
*/
public void start(@NonNull Activity activity, int requestCode) {
activity.startActivityForResult(getIntent(activity), requestCode);
}
/**
* Send the crop Intent from a Fragment
*
* @param fragment Fragment to receive result
*/
public void start(@NonNull Context context, @NonNull Fragment fragment) {
start(context, fragment, REQUEST_CROP);
}
/**
* Send the crop Intent with a custom request code
*
* @param fragment Fragment to receive result
* @param requestCode requestCode for result
*/
public void start(@NonNull Context context, @NonNull Fragment fragment, int requestCode) {
fragment.startActivityForResult(getIntent(context), requestCode);
}
/**
* Get Intent to start {@link UCropActivity}
*
* @return Intent for {@link UCropActivity}
*/
public Intent getIntent(@NonNull Context context) {
mCropIntent.setClass(context, UCropActivity.class);
mCropIntent.putExtras(mCropOptionsBundle);
return mCropIntent;
}
/**
* Retrieve cropped image Uri from the result Intent
*
* @param intent crop result intent
*/
@Nullable
public static Uri getOutput(@NonNull Intent intent) {
return intent.getParcelableExtra(EXTRA_OUTPUT_URI);
}
/**
* Retrieve the width of the cropped image
*
* @param intent crop result intent
*/
public static int getOutputImageWidth(@NonNull Intent intent) {
return intent.getIntExtra(EXTRA_OUTPUT_IMAGE_WIDTH, -1);
}
/**
* Retrieve the height of the cropped image
*
* @param intent crop result intent
*/
public static int getOutputImageHeight(@NonNull Intent intent) {
return intent.getIntExtra(EXTRA_OUTPUT_IMAGE_HEIGHT, -1);
}
/**
* Retrieve cropped image aspect ratio from the result Intent
*
* @param intent crop result intent
* @return aspect ratio as a floating point value (x:y) - so it will be 1 for 1:1 or 4/3 for 4:3
*/
public static float getOutputCropAspectRatio(@NonNull Intent intent) {
return intent.getParcelableExtra(EXTRA_OUTPUT_CROP_ASPECT_RATIO);
}
/**
* Method retrieves error from the result intent.
*
* @param result crop result Intent
* @return Throwable that could happen while image processing
*/
@Nullable
public static Throwable getError(@NonNull Intent result) {
return (Throwable) result.getSerializableExtra(EXTRA_ERROR);
}
/**
* Class that helps to setup advanced configs that are not commonly used.
* Use it with method {@link #withOptions(Options)}
*/
public static class Options {
public static final String EXTRA_COMPRESSION_FORMAT_NAME = EXTRA_PREFIX + ".CompressionFormatName";
public static final String EXTRA_COMPRESSION_QUALITY = EXTRA_PREFIX + ".CompressionQuality";
public static final String EXTRA_ALLOWED_GESTURES = EXTRA_PREFIX + ".AllowedGestures";
public static final String EXTRA_MAX_BITMAP_SIZE = EXTRA_PREFIX + ".MaxBitmapSize";
public static final String EXTRA_MAX_SCALE_MULTIPLIER = EXTRA_PREFIX + ".MaxScaleMultiplier";
public static final String EXTRA_IMAGE_TO_CROP_BOUNDS_ANIM_DURATION = EXTRA_PREFIX + ".ImageToCropBoundsAnimDuration";
public static final String EXTRA_DIMMED_LAYER_COLOR = EXTRA_PREFIX + ".DimmedLayerColor";
public static final String EXTRA_CIRCLE_DIMMED_LAYER = EXTRA_PREFIX + ".CircleDimmedLayer";
public static final String EXTRA_SHOW_CROP_FRAME = EXTRA_PREFIX + ".ShowCropFrame";
public static final String EXTRA_CROP_FRAME_COLOR = EXTRA_PREFIX + ".CropFrameColor";
public static final String EXTRA_CROP_FRAME_STROKE_WIDTH = EXTRA_PREFIX + ".CropFrameStrokeWidth";
public static final String EXTRA_SHOW_CROP_GRID = EXTRA_PREFIX + ".ShowCropGrid";
public static final String EXTRA_CROP_GRID_ROW_COUNT = EXTRA_PREFIX + ".CropGridRowCount";
public static final String EXTRA_CROP_GRID_COLUMN_COUNT = EXTRA_PREFIX + ".CropGridColumnCount";
public static final String EXTRA_CROP_GRID_COLOR = EXTRA_PREFIX + ".CropGridColor";
public static final String EXTRA_CROP_GRID_STROKE_WIDTH = EXTRA_PREFIX + ".CropGridStrokeWidth";
public static final String EXTRA_TOOL_BAR_COLOR = EXTRA_PREFIX + ".ToolbarColor";
public static final String EXTRA_STATUS_BAR_COLOR = EXTRA_PREFIX + ".StatusBarColor";
public static final String EXTRA_UCROP_COLOR_WIDGET_ACTIVE = EXTRA_PREFIX + ".UcropColorWidgetActive";
public static final String EXTRA_UCROP_WIDGET_COLOR_TOOLBAR = EXTRA_PREFIX + ".UcropToolbarWidgetColor";
public static final String EXTRA_UCROP_TITLE_TEXT_TOOLBAR = EXTRA_PREFIX + ".UcropToolbarTitleText";
public static final String EXTRA_UCROP_WIDGET_CANCEL_DRAWABLE = EXTRA_PREFIX + ".UcropToolbarCancelDrawable";
public static final String EXTRA_UCROP_WIDGET_CROP_DRAWABLE = EXTRA_PREFIX + ".UcropToolbarCropDrawable";
public static final String EXTRA_UCROP_WIDGET_CROP_OPEN_WHITE_STATUSBAR = EXTRA_PREFIX + ".openWhiteStatusBar";
public static final String EXTRA_UCROP_LOGO_COLOR = EXTRA_PREFIX + ".UcropLogoColor";
public static final String EXTRA_HIDE_BOTTOM_CONTROLS = EXTRA_PREFIX + ".HideBottomControls";
public static final String EXTRA_FREE_STYLE_CROP = EXTRA_PREFIX + ".FreeStyleCrop";
public static final String EXTRA_CUT_CROP = EXTRA_PREFIX + ".cuts";
public static final String EXTRA_FREE_STATUS_FONT = EXTRA_PREFIX + ".StatusFont";
public static final String EXTRA_ASPECT_RATIO_SELECTED_BY_DEFAULT = EXTRA_PREFIX + ".AspectRatioSelectedByDefault";
public static final String EXTRA_ASPECT_RATIO_OPTIONS = EXTRA_PREFIX + ".AspectRatioOptions";
public static final String EXTRA_UCROP_ROOT_VIEW_BACKGROUND_COLOR = EXTRA_PREFIX + ".UcropRootViewBackgroundColor";
public static final String EXTRA_ROTATE = EXTRA_PREFIX + ".rotate";
public static final String EXTRA_SCALE = EXTRA_PREFIX + ".scale";
public static final String EXTRA_DRAG_CROP_FRAME = EXTRA_PREFIX + ".DragCropFrame";
private final Bundle mOptionBundle;
public Options() {
mOptionBundle = new Bundle();
}
@NonNull
public Bundle getOptionBundle() {
return mOptionBundle;
}
/**
* Set one of {@link Bitmap.CompressFormat} that will be used to save resulting Bitmap.
*/
public void setCompressionFormat(@NonNull Bitmap.CompressFormat format) {
mOptionBundle.putString(EXTRA_COMPRESSION_FORMAT_NAME, format.name());
}
/**
* Set compression quality [0-100] that will be used to save resulting Bitmap.
*/
public void setCompressionQuality(@IntRange(from = 0) int compressQuality) {
mOptionBundle.putInt(EXTRA_COMPRESSION_QUALITY, compressQuality);
}
/**
* Choose what set of gestures will be enabled on each tab - if any.
*/
public void setAllowedGestures(@UCropActivity.GestureTypes int tabScale,
@UCropActivity.GestureTypes int tabRotate,
@UCropActivity.GestureTypes int tabAspectRatio) {
mOptionBundle.putIntArray(EXTRA_ALLOWED_GESTURES, new int[]{tabScale, tabRotate, tabAspectRatio});
}
/**
* This method sets multiplier that is used to calculate max image scale from min image scale.
*
* @param maxScaleMultiplier - (minScale * maxScaleMultiplier) = maxScale
*/
public void setMaxScaleMultiplier(@FloatRange(from = 1.0, fromInclusive = false) float maxScaleMultiplier) {
mOptionBundle.putFloat(EXTRA_MAX_SCALE_MULTIPLIER, maxScaleMultiplier);
}
/**
* This method sets animation duration for image to wrap the crop bounds
*
* @param durationMillis - duration in milliseconds
*/
public void setImageToCropBoundsAnimDuration(@IntRange(from = 100) int durationMillis) {
mOptionBundle.putInt(EXTRA_IMAGE_TO_CROP_BOUNDS_ANIM_DURATION, durationMillis);
}
/**
* Setter for max size for both width and height of bitmap that will be decoded from an input Uri and used in the view.
*
* @param maxBitmapSize - size in pixels
*/
public void setMaxBitmapSize(@IntRange(from = 100) int maxBitmapSize) {
mOptionBundle.putInt(EXTRA_MAX_BITMAP_SIZE, maxBitmapSize);
}
/**
* @param color - desired color of dimmed area around the crop bounds
*/
public void setDimmedLayerColor(@ColorInt int color) {
mOptionBundle.putInt(EXTRA_DIMMED_LAYER_COLOR, color);
}
/**
* @param isCircle - set it to true if you want dimmed layer to have an circle inside
*/
public void setCircleDimmedLayer(boolean isCircle) {
mOptionBundle.putBoolean(EXTRA_CIRCLE_DIMMED_LAYER, isCircle);
}
/**
* @param show - set to true if you want to see a crop frame rectangle on top of an image
*/
public void setShowCropFrame(boolean show) {
mOptionBundle.putBoolean(EXTRA_SHOW_CROP_FRAME, show);
}
/**
* @param color - desired color of crop frame
*/
public void setCropFrameColor(@ColorInt int color) {
mOptionBundle.putInt(EXTRA_CROP_FRAME_COLOR, color);
}
/**
* @param width - desired width of crop frame line in pixels
*/
public void setCropFrameStrokeWidth(@IntRange(from = 0) int width) {
mOptionBundle.putInt(EXTRA_CROP_FRAME_STROKE_WIDTH, width);
}
/**
* @param show - set to true if you want to see a crop grid/guidelines on top of an image
*/
public void setShowCropGrid(boolean show) {
mOptionBundle.putBoolean(EXTRA_SHOW_CROP_GRID, show);
}
/**
* @param isDragFrame - 是否可拖动裁剪框
*/
public void setDragFrameEnabled(boolean isDragFrame) {
mOptionBundle.putBoolean(EXTRA_DRAG_CROP_FRAME, isDragFrame);
}
public void setScaleEnabled(boolean scaleEnabled) {
mOptionBundle.putBoolean(EXTRA_SCALE, scaleEnabled);
}
public void setRotateEnabled(boolean rotateEnabled) {
mOptionBundle.putBoolean(EXTRA_ROTATE, rotateEnabled);
}
/**
* @param count - crop grid rows count.
*/
public void setCropGridRowCount(@IntRange(from = 0) int count) {
mOptionBundle.putInt(EXTRA_CROP_GRID_ROW_COUNT, count);
}
/**
* @param count - crop grid columns count.
*/
public void setCropGridColumnCount(@IntRange(from = 0) int count) {
mOptionBundle.putInt(EXTRA_CROP_GRID_COLUMN_COUNT, count);
}
/**
* @param color - desired color of crop grid/guidelines
*/
public void setCropGridColor(@ColorInt int color) {
mOptionBundle.putInt(EXTRA_CROP_GRID_COLOR, color);
}
/**
* @param width - desired width of crop grid lines in pixels
*/
public void setCropGridStrokeWidth(@IntRange(from = 0) int width) {
mOptionBundle.putInt(EXTRA_CROP_GRID_STROKE_WIDTH, width);
}
/**
* @param color - desired resolved color of the toolbar
*/
public void setToolbarColor(@ColorInt int color) {
mOptionBundle.putInt(EXTRA_TOOL_BAR_COLOR, color);
}
/**
* @param color - desired resolved color of the statusbar
*/
public void setStatusBarColor(@ColorInt int color) {
mOptionBundle.putInt(EXTRA_STATUS_BAR_COLOR, color);
}
/**
* @param color - desired resolved color of the active and selected widget (default is orange) and progress wheel middle line
*/
public void setActiveWidgetColor(@ColorInt int color) {
mOptionBundle.putInt(EXTRA_UCROP_COLOR_WIDGET_ACTIVE, color);
}
/**
* @param color - desired resolved color of Toolbar text and buttons (default is darker orange)
*/
public void setToolbarWidgetColor(@ColorInt int color) {
mOptionBundle.putInt(EXTRA_UCROP_WIDGET_COLOR_TOOLBAR, color);
}
/**
* @param openWhiteStatusBar - Change the status bar font color
*/
public void isOpenWhiteStatusBar(boolean openWhiteStatusBar) {
mOptionBundle.putBoolean(EXTRA_UCROP_WIDGET_CROP_OPEN_WHITE_STATUSBAR, openWhiteStatusBar);
}
/**
* @param text - desired text for Toolbar title
*/
public void setToolbarTitle(@Nullable String text) {
mOptionBundle.putString(EXTRA_UCROP_TITLE_TEXT_TOOLBAR, text);
}
/**
* @param drawable - desired drawable for the Toolbar left cancel icon
*/
public void setToolbarCancelDrawable(@DrawableRes int drawable) {
mOptionBundle.putInt(EXTRA_UCROP_WIDGET_CANCEL_DRAWABLE, drawable);
}
/**
* @param drawable - desired drawable for the Toolbar right crop icon
*/
public void setToolbarCropDrawable(@DrawableRes int drawable) {
mOptionBundle.putInt(EXTRA_UCROP_WIDGET_CROP_DRAWABLE, drawable);
}
/**
* @param color - desired resolved color of logo fill (default is darker grey)
*/
public void setLogoColor(@ColorInt int color) {
mOptionBundle.putInt(EXTRA_UCROP_LOGO_COLOR, color);
}
/**
* @param hide - set to true to hide the bottom controls (shown by default)
*/
public void setHideBottomControls(boolean hide) {
mOptionBundle.putBoolean(EXTRA_HIDE_BOTTOM_CONTROLS, hide);
}
/**
* @param -set cuts path
*/
public void setCutListData(ArrayList<String> list) {
mOptionBundle.putStringArrayList(EXTRA_CUT_CROP, list);
}
/**
* @param enabled - set to true to let user resize crop bounds (disabled by default)
*/
public void setFreeStyleCropEnabled(boolean enabled) {
mOptionBundle.putBoolean(EXTRA_FREE_STYLE_CROP, enabled);
}
/**
* @param statusFont - Set status bar black
*/
public void setStatusFont(boolean statusFont) {
mOptionBundle.putBoolean(EXTRA_FREE_STATUS_FONT, statusFont);
}
/**
* Pass an ordered list of desired aspect ratios that should be available for a user.
*
* @param selectedByDefault - index of aspect ratio option that is selected by default (starts with 0).
* @param aspectRatio - list of aspect ratio options that are available to user
*/
public void setAspectRatioOptions(int selectedByDefault, AspectRatio... aspectRatio) {
if (selectedByDefault > aspectRatio.length) {
throw new IllegalArgumentException(String.format(Locale.US,
"Index [selectedByDefault = %d] cannot be higher than aspect ratio options count [count = %d].",
selectedByDefault, aspectRatio.length));
}
mOptionBundle.putInt(EXTRA_ASPECT_RATIO_SELECTED_BY_DEFAULT, selectedByDefault);
mOptionBundle.putParcelableArrayList(EXTRA_ASPECT_RATIO_OPTIONS, new ArrayList<Parcelable>(Arrays.asList(aspectRatio)));
}
/**
* @param color - desired background color that should be applied to the root view
*/
public void setRootViewBackgroundColor(@ColorInt int color) {
mOptionBundle.putInt(EXTRA_UCROP_ROOT_VIEW_BACKGROUND_COLOR, color);
}
/**
* Set an aspect ratio for crop bounds.
* User won't see the menu with other ratios options.
*
* @param x aspect ratio X
* @param y aspect ratio Y
*/
public void withAspectRatio(float x, float y) {
mOptionBundle.putFloat(EXTRA_ASPECT_RATIO_X, x);
mOptionBundle.putFloat(EXTRA_ASPECT_RATIO_Y, y);
}
/**
* Set an aspect ratio for crop bounds that is evaluated from source image width and height.
* User won't see the menu with other ratios options.
*/
public void useSourceImageAspectRatio() {
mOptionBundle.putFloat(EXTRA_ASPECT_RATIO_X, 0);
mOptionBundle.putFloat(EXTRA_ASPECT_RATIO_Y, 0);
}
/**
* Set maximum size for result cropped image.
*
* @param width max cropped image width
* @param height max cropped image height
*/
public void withMaxResultSize(int width, int height) {
mOptionBundle.putInt(EXTRA_MAX_SIZE_X, width);
mOptionBundle.putInt(EXTRA_MAX_SIZE_Y, height);
}
/**
* @param activityCropExitAnimation activity exit animation
*/
public void setCropExitAnimation(@AnimRes int activityCropExitAnimation) {
mOptionBundle.putInt(EXTRA_WINDOW_EXIT_ANIMATION, activityCropExitAnimation);
}
/**
* @param navBarColor set NavBar Color
*/
public void setNavBarColor(@ColorInt int navBarColor) {
mOptionBundle.putInt(EXTRA_NAV_BAR_COLOR, navBarColor);
}
}
}
| [
"[email protected]"
]
| |
38835e2ba74ec40814767916d9a306cae25ba22d | 7b73cb4e9873a6ba3f7b2ae5f6f39b3909ea1bb2 | /javaworkspace/class/박 은/report0419/src/qiz2/qiz2.java | 2ff8fb27d3d065fc25b768decfc7a6a2a564b3c6 | []
| no_license | kofelo123/hkitSource | e741dd8ac55ea729f616b7c388a5cb7913a0920c | 4ee71733cea1d434ef6645735a85ad2fc05b350c | refs/heads/master | 2021-01-20T02:31:02.151651 | 2017-06-01T08:13:37 | 2017-06-01T08:13:37 | 89,418,293 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 216 | java | package qiz2;
public class qiz2 {
public static void main(String[] args) {
int a=100;
int total=0;
do{
a--;
if(a%2==1){
total= total+a;
}else
System.out.println(total);
}while(a>0);
}
}
| [
"[email protected]"
]
| |
a563a1e194f2857595bfce2371517cfc063d5225 | d892283dffbd03c6c50a43d0a84963a885b692d6 | /src/main/java/com/opencode/app/model/Game.java | d93782bf132720cf53e258bc5d36da8d699444e3 | [
"Apache-2.0"
]
| permissive | vkiz/bulls-cows | 7277a8ce8e278f0dceec5945ccb21b5aefcd4ccb | 5807ca2c575e522045587f2d004a251fc2c3f92f | refs/heads/master | 2021-05-15T10:43:46.977985 | 2017-11-21T14:14:34 | 2017-11-21T14:14:34 | 108,195,303 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,479 | java | /*
* Copyright (C) 2017 Open Code.
*
* 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.opencode.app.model;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
/**
* Класс реализует логику игры "Быки и коровы".
* Здесь генерируется четырёхзначное число, цифры которого не повторяются. Задача игрока - угадать загаданное число
* за как можно меньшее количество попыток. Игрок вводит вариант числа, а приложение сообщает сколько цифр
* угадано точно (бык) и сколько цифр угадано без учёта позиции (корова).
*
* @version 1.0
* @author Vladimir Kizelbashev
*/
public class Game {
private User user; // пользователь игры
private String secret; // строка загаданного числа
private boolean guessed; // признак того, что число угадано
private List<GameMove> moves; // список ходов игры
/**
* Конструктор класса {@link Game}.
*/
public Game() {
startNew();
}
/**
* Метод запускает новую игру.
* Он инициализирует поля класса {@link Game} и генерирует "загадываемое" четырёхзначное число.
* Результат хранится в виде строки в поле {@link Game#secret}.
*/
public void startNew() {
guessed = false;
moves = new ArrayList<GameMove>();
Random random = new Random();
int rnd;
while (!isNumberMatch(rnd = random.nextInt(9900) + 100));
secret = String.format("%04d", rnd);
}
/**
* Метод проверяет число на соответствие условию игры.
* Число преобразуется в строку из четырёх символов и
* выполняется проверка строки с помощью регулярного выражения.
* @param num Число
* @return {@code true} - если число соответствует условию,
* {@code false} - если не соответствует
*/
public boolean isNumberMatch(int num) {
String str = String.format("%04d", num);
// если строка - только четыре неповторяющиеся цифры
if (str.length() == 4 && str.matches("(?!.*(.).*\\1)\\d{4}")) {
return true;
}
return false;
}
/**
* Метод проверяет введённое пользователем число.
* Если число совпадает с загаданным, то значение поля {@link Game#guessed} становится равным {@code true}.
* @param guess Строка введённого пользователем числа
* @return Количество точно угаданных цифр (быков).
* Возвращаемое значение используется при вызове модульных тестов.
*/
public int checkGuess(String guess) {
int bulls = 0;
int cows = 0;
if (guess.length() == 4 &&
guess.matches("(?!.*(.).*\\1)\\d{4}")) {
for (int i = 0; i < 4; i++) {
if (guess.charAt(i) == secret.charAt(i)) {
bulls++;
} else if (secret.contains(String.valueOf(guess.charAt(i)))) {
cows++;
}
}
if (bulls == 4) {
guessed = true;
}
// Добавление хода игры в список ходов
// для вывода последовательности на страницу
GameMove move = new GameMove();
move.setNumber(guess);
move.setBulls(String.valueOf(bulls));
move.setCows(String.valueOf(cows));
moves.add(move);
}
return bulls;
}
/**
* Метод возвращает строку загаданного четырёхзначного числа.
* @return Строка загаданного числа
*/
public String getSecretNumber() {
return secret;
}
/**
* Метод устанавливает строку загаданного четырёхзначного числа.
* Используется при вызове модульных тестов.
*/
public void setSecretNumber(String secret) {
this.secret = secret;
}
/**
* Метод возвращает флаг (статус) того, угадано число или нет.
* @return {@code true} - если число угадано, {@code false} - если нет
*/
public boolean isNumberGuessed() {
return guessed;
}
/**
* Метод возвращает список ходов игры.
* Этот список в последующем выводится на страницу клиенту.
* @return Список ходов игры
*/
public List<GameMove> getMoves() {
return moves;
}
/**
* Метод возвращает пользователя игры.
* @return Пользователь игры
*/
public User getUser() {
return user;
}
/**
* Метод устанавливает пользователя игры.
* @param user Пользователь игры
*/
public void setUser(User user) {
this.user = user;
}
}
| [
"[email protected]"
]
| |
143f30ce5c4cd1df81d1cba95ab0d73a7f5fcffd | 53c677a491aa66cffcde2d3a6d733cea403e0bdb | /pwm/servlet/src/password/pwm/http/servlet/ConfigEditorServlet.java | 49be6f8b576a1fa6743d63459447148b3c7d4f4f | []
| no_license | fbordina/pwm | b49123de7b7fcc5c4d6248de48fde1bef32e7fc6 | 0a660d8f169a7dbe6c46c76f48912be9582ac734 | refs/heads/master | 2020-05-16T11:40:26.287120 | 2015-07-16T11:01:43 | 2015-07-16T11:01:43 | 39,341,067 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 51,383 | java | /*
* Password Management Servlets (PWM)
* http://code.google.com/p/pwm/
*
* Copyright (c) 2006-2009 Novell, Inc.
* Copyright (c) 2009-2015 The PWM Project
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package password.pwm.http.servlet;
import com.novell.ldapchai.exception.ChaiUnavailableException;
import password.pwm.AppProperty;
import password.pwm.PwmApplication;
import password.pwm.PwmConstants;
import password.pwm.Validator;
import password.pwm.bean.SmsItemBean;
import password.pwm.bean.UserIdentity;
import password.pwm.config.*;
import password.pwm.config.value.FileValue;
import password.pwm.config.value.ValueFactory;
import password.pwm.config.value.X509CertificateValue;
import password.pwm.error.*;
import password.pwm.health.*;
import password.pwm.http.HttpMethod;
import password.pwm.http.PwmRequest;
import password.pwm.http.PwmSession;
import password.pwm.http.bean.ConfigManagerBean;
import password.pwm.i18n.Config;
import password.pwm.i18n.LocaleHelper;
import password.pwm.i18n.Message;
import password.pwm.i18n.PwmLocaleBundle;
import password.pwm.util.JsonUtil;
import password.pwm.util.StringUtil;
import password.pwm.util.TimeDuration;
import password.pwm.util.logging.PwmLogger;
import password.pwm.util.macro.MacroMachine;
import password.pwm.util.queue.SmsQueueManager;
import password.pwm.ws.server.RestResultBean;
import password.pwm.ws.server.rest.bean.HealthData;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import java.io.IOException;
import java.io.Serializable;
import java.util.*;
@WebServlet(
name = "ConfigEditorServlet",
urlPatterns = {
PwmConstants.URL_PREFIX_PRIVATE + "/config/ConfigEditor",
PwmConstants.URL_PREFIX_PRIVATE + "/config/ConfigEditor/*",
}
)
public class ConfigEditorServlet extends AbstractPwmServlet {
// ------------------------------ FIELDS ------------------------------
private static final PwmLogger LOGGER = PwmLogger.forClass(ConfigEditorServlet.class);
public enum ConfigEditorAction implements AbstractPwmServlet.ProcessAction {
readSetting(HttpMethod.POST),
writeSetting(HttpMethod.POST),
resetSetting(HttpMethod.POST),
ldapHealthCheck(HttpMethod.POST),
databaseHealthCheck(HttpMethod.POST),
smsHealthCheck(HttpMethod.POST),
finishEditing(HttpMethod.POST),
executeSettingFunction(HttpMethod.POST),
setConfigurationPassword(HttpMethod.POST),
readChangeLog(HttpMethod.POST),
search(HttpMethod.POST),
cancelEditing(HttpMethod.POST),
uploadFile(HttpMethod.POST),
setOption(HttpMethod.POST),
menuTreeData(HttpMethod.POST),
settingData(HttpMethod.GET),
testMacro(HttpMethod.POST),
;
private final HttpMethod method;
ConfigEditorAction(HttpMethod method) {
this.method = method;
}
public Collection<HttpMethod> permittedMethods() {
return Collections.singletonList(method);
}
}
public static class SettingInfo implements Serializable {
public String key;
public String label;
public String description;
public PwmSettingCategory category;
public PwmSettingSyntax syntax;
public boolean hidden;
public boolean required;
public Map<String, String> options;
public String pattern;
public String placeholder;
public int level;
}
public static class CategoryInfo implements Serializable {
public int level;
public String key;
public String description;
public String label;
public PwmSettingSyntax syntax;
public String parent;
public boolean hidden;
}
public static class LocaleInfo implements Serializable {
public String description;
public String key;
public boolean adminOnly;
}
public static class TemplateInfo implements Serializable {
public String description;
public String key;
public boolean hidden;
}
protected ConfigEditorAction readProcessAction(final PwmRequest request)
throws PwmUnrecoverableException {
try {
return ConfigEditorAction.valueOf(request.readParameterAsString(PwmConstants.PARAM_ACTION_REQUEST));
} catch (IllegalArgumentException e) {
return null;
}
}
// -------------------------- OTHER METHODS --------------------------
protected void processAction(final PwmRequest pwmRequest)
throws ServletException, IOException, ChaiUnavailableException, PwmUnrecoverableException {
final PwmSession pwmSession = pwmRequest.getPwmSession();
final ConfigManagerBean configManagerBean = pwmSession.getConfigManagerBean();
ConfigManagerServlet.checkAuthentication(pwmRequest, configManagerBean);
if (configManagerBean.getStoredConfiguration() == null) {
final StoredConfiguration loadedConfig = ConfigManagerServlet.readCurrentConfiguration(pwmRequest);
configManagerBean.setConfiguration(loadedConfig);
}
pwmSession.setSessionTimeout(
pwmRequest.getHttpServletRequest().getSession(),
Integer.parseInt(pwmRequest.getConfig().readAppProperty(AppProperty.CONFIG_EDITOR_IDLE_TIMEOUT)));
final ConfigEditorAction action = readProcessAction(pwmRequest);
if (action != null) {
Validator.validatePwmFormID(pwmRequest);
switch (action) {
case readSetting:
restReadSetting(pwmRequest, configManagerBean);
return;
case writeSetting:
restWriteSetting(pwmRequest, configManagerBean);
return;
case resetSetting:
restResetSetting(pwmRequest, configManagerBean);
return;
case ldapHealthCheck:
restLdapHealthCheck(pwmRequest, configManagerBean);
return;
case databaseHealthCheck:
restDatabaseHealthCheck(pwmRequest, configManagerBean);
return;
case smsHealthCheck:
restSmsHealthCheck(pwmRequest, configManagerBean);
return;
case finishEditing:
restFinishEditing(pwmRequest, configManagerBean);
return;
case executeSettingFunction:
restExecuteSettingFunction(pwmRequest, configManagerBean);
return;
case setConfigurationPassword:
restSetConfigurationPassword(pwmRequest, configManagerBean);
return;
case readChangeLog:
restReadChangeLog(pwmRequest, configManagerBean);
return;
case search:
restSearchSettings(pwmRequest, configManagerBean);
return;
case cancelEditing:
restCancelEditing(pwmRequest, configManagerBean);
return;
case uploadFile:
doUploadFile(pwmRequest, configManagerBean);
return;
case setOption:
setOptions(pwmRequest, configManagerBean);
return;
case menuTreeData:
restMenuTreeData(pwmRequest, configManagerBean);
return;
case settingData:
restConfigSettingData(pwmRequest);
return;
case testMacro:
restTestMacro(pwmRequest);
return;
}
}
if (!pwmRequest.getPwmResponse().isCommitted()) {
pwmRequest.forwardToJsp(PwmConstants.JSP_URL.CONFIG_MANAGER_EDITOR);
}
}
private void restExecuteSettingFunction(
final PwmRequest pwmRequest,
final ConfigManagerBean configManagerBean
)
throws IOException, PwmUnrecoverableException {
final String bodyString = pwmRequest.readRequestBodyAsString();
final Map<String, String> requestMap = JsonUtil.deserializeStringMap(bodyString);
final PwmSetting pwmSetting = PwmSetting.forKey(requestMap.get("setting"));
final String functionName = requestMap.get("function");
final String profileID = pwmSetting.getCategory().hasProfiles() ? pwmRequest.readParameterAsString("profile") : null;
try {
Class implementingClass = Class.forName(functionName);
SettingUIFunction function = (SettingUIFunction) implementingClass.newInstance();
final Serializable result = function.provideFunction(pwmRequest, configManagerBean.getStoredConfiguration(), pwmSetting, profileID);
RestResultBean restResultBean = new RestResultBean();
restResultBean.setSuccessMessage(Message.Success_Unknown.getLocalizedMessage(pwmRequest.getLocale(),pwmRequest.getConfig()));
restResultBean.setData(result);
pwmRequest.outputJsonResult(restResultBean);
} catch (Exception e) {
final RestResultBean restResultBean;
if (e instanceof PwmException) {
restResultBean = RestResultBean.fromError(((PwmException) e).getErrorInformation(), pwmRequest, true);
} else {
restResultBean = new RestResultBean();
restResultBean.setError(true);
restResultBean.setErrorDetail(e.getMessage());
restResultBean.setErrorMessage("error performing user search: " + e.getMessage());
}
pwmRequest.outputJsonResult(restResultBean);
}
}
private void restReadSetting(
final PwmRequest pwmRequest,
final ConfigManagerBean configManagerBean
)
throws IOException, PwmUnrecoverableException
{
final StoredConfiguration storedConfig = configManagerBean.getStoredConfiguration();
final String key = pwmRequest.readParameterAsString("key");
final Object returnValue;
final LinkedHashMap<String, Object> returnMap = new LinkedHashMap<>();
final PwmSetting theSetting = PwmSetting.forKey(key);
if (key.startsWith("localeBundle")) {
final StringTokenizer st = new StringTokenizer(key, "-");
st.nextToken();
final PwmLocaleBundle bundleName = PwmLocaleBundle.valueOf(st.nextToken());
final String keyName = st.nextToken();
final Map<String, String> bundleMap = storedConfig.readLocaleBundleMap(bundleName.getTheClass().getName(), keyName);
if (bundleMap == null || bundleMap.isEmpty()) {
final Map<String, String> defaultValueMap = new LinkedHashMap<>();
final String defaultLocaleValue = ResourceBundle.getBundle(bundleName.getTheClass().getName(), PwmConstants.DEFAULT_LOCALE).getString(keyName);
for (final Locale locale : pwmRequest.getConfig().getKnownLocales()) {
final ResourceBundle localeBundle = ResourceBundle.getBundle(bundleName.getTheClass().getName(), locale);
if (locale.toString().equalsIgnoreCase(PwmConstants.DEFAULT_LOCALE.toString())) {
defaultValueMap.put("", defaultLocaleValue);
} else {
final String valueStr = localeBundle.getString(keyName);
if (!defaultLocaleValue.equals(valueStr)) {
final String localeStr = locale.toString();
defaultValueMap.put(localeStr, localeBundle.getString(keyName));
}
}
}
returnValue = defaultValueMap;
returnMap.put("isDefault", true);
} else {
returnValue = bundleMap;
returnMap.put("isDefault", false);
}
returnMap.put("key", key);
} else if (theSetting == null) {
final String errorStr = "readSettingAsString request for unknown key: " + key;
LOGGER.warn(errorStr);
pwmRequest.outputJsonResult(RestResultBean.fromError(new ErrorInformation(PwmError.ERROR_UNKNOWN, errorStr)));
return;
} else {
final String profile = theSetting.getCategory().hasProfiles() ? pwmRequest.readParameterAsString("profile") : null;
switch (theSetting.getSyntax()) {
case PASSWORD:
returnValue = Collections.singletonMap("isDefault", storedConfig.isDefaultValue(theSetting, profile));
break;
case X509CERT:
returnValue = ((X509CertificateValue) storedConfig.readSetting(theSetting, profile)).toInfoMap(true);
break;
case FILE:
returnValue = ((FileValue) storedConfig.readSetting(theSetting, profile)).toInfoMap();
break;
default:
returnValue = storedConfig.readSetting(theSetting, profile).toNativeObject();
}
returnMap.put("isDefault", storedConfig.isDefaultValue(theSetting, profile));
if (theSetting.getSyntax() == PwmSettingSyntax.SELECT) {
returnMap.put("options", theSetting.getOptions());
}
{
final StoredConfiguration.SettingMetaData settingMetaData = storedConfig.readSettingMetadata(theSetting, profile);
if (settingMetaData != null) {
if (settingMetaData.getModifyDate() != null) {
returnMap.put("modifyTime", settingMetaData.getModifyDate());
}
if (settingMetaData.getUserIdentity() != null) {
returnMap.put("modifyUser", settingMetaData.getUserIdentity());
}
}
}
returnMap.put("key", key);
returnMap.put("category", theSetting.getCategory().toString());
returnMap.put("syntax", theSetting.getSyntax().toString());
}
returnMap.put("value", returnValue);
pwmRequest.outputJsonResult(new RestResultBean(returnMap));
}
private void restWriteSetting(
final PwmRequest pwmRequest,
final ConfigManagerBean configManagerBean
)
throws IOException, PwmUnrecoverableException {
final StoredConfiguration storedConfig = configManagerBean.getStoredConfiguration();
final String key = pwmRequest.readParameterAsString("key");
final String bodyString = pwmRequest.readRequestBodyAsString();
final PwmSetting setting = PwmSetting.forKey(key);
final LinkedHashMap<String, Object> returnMap = new LinkedHashMap<>();
final UserIdentity loggedInUser = pwmRequest.getPwmSession().getSessionStateBean().isAuthenticated()
? pwmRequest.getPwmSession().getUserInfoBean().getUserIdentity()
: null;
if (key.startsWith("localeBundle")) {
final StringTokenizer st = new StringTokenizer(key, "-");
st.nextToken();
final PwmLocaleBundle bundleName = PwmLocaleBundle.valueOf(st.nextToken());
final String keyName = st.nextToken();
final Map<String, String> valueMap = JsonUtil.deserializeStringMap(bodyString);
final Map<String, String> outputMap = new LinkedHashMap<>(valueMap);
storedConfig.writeLocaleBundleMap(bundleName.getTheClass().getName(), keyName, outputMap);
returnMap.put("isDefault", outputMap.isEmpty());
returnMap.put("key", key);
} else {
final String profileID = setting.getCategory().hasProfiles() ? pwmRequest.readParameterAsString("profile") : null;
try {
final StoredValue storedValue = ValueFactory.fromJson(setting, bodyString);
final List<String> errorMsgs = storedValue.validateValue(setting);
if (errorMsgs != null && !errorMsgs.isEmpty()) {
returnMap.put("errorMessage", setting.getLabel(pwmRequest.getLocale()) + ": " + errorMsgs.get(0));
}
storedConfig.writeSetting(setting, profileID, storedValue, loggedInUser);
} catch (Exception e) {
final String errorMsg = "error writing default value for setting " + setting.toString() + ", error: " + e.getMessage();
LOGGER.error(errorMsg, e);
throw new IllegalStateException(errorMsg, e);
}
returnMap.put("key", key);
returnMap.put("category", setting.getCategory().toString());
returnMap.put("syntax", setting.getSyntax().toString());
returnMap.put("isDefault", storedConfig.isDefaultValue(setting, profileID));
}
pwmRequest.outputJsonResult(new RestResultBean(returnMap));
}
private void restResetSetting(
final PwmRequest pwmRequest,
final ConfigManagerBean configManagerBean
)
throws IOException, PwmUnrecoverableException {
final StoredConfiguration storedConfig = configManagerBean.getStoredConfiguration();
final UserIdentity loggedInUser = pwmRequest.getUserInfoIfLoggedIn();
final String key = pwmRequest.readParameterAsString("key");
final PwmSetting setting = PwmSetting.forKey(key);
if (key.startsWith("localeBundle")) {
final StringTokenizer st = new StringTokenizer(key, "-");
st.nextToken();
final PwmLocaleBundle bundleName = PwmLocaleBundle.valueOf(st.nextToken());
final String keyName = st.nextToken();
storedConfig.resetLocaleBundleMap(bundleName.getTheClass().getName(), keyName);
} else {
final String profileID = setting.getCategory().hasProfiles() ? pwmRequest.readParameterAsString("profile") : null;
storedConfig.resetSetting(setting, profileID, loggedInUser);
}
pwmRequest.outputJsonResult(RestResultBean.forSuccessMessage(pwmRequest, Message.Success_Unknown));
}
private void restSetConfigurationPassword(
final PwmRequest pwmRequest,
final ConfigManagerBean configManagerBean
)
throws IOException, ServletException, PwmUnrecoverableException {
try {
final Map<String, String> postData = pwmRequest.readBodyAsJsonStringMap();
final String password = postData.get("password");
configManagerBean.getStoredConfiguration().setPassword(password);
configManagerBean.setPasswordVerified(true);
LOGGER.debug(pwmRequest, "config password updated");
final RestResultBean restResultBean = RestResultBean.forSuccessMessage(pwmRequest, Message.Success_Unknown);
pwmRequest.outputJsonResult(restResultBean);
} catch (PwmOperationalException e) {
final RestResultBean restResultBean = RestResultBean.fromError(e.getErrorInformation(), pwmRequest);
pwmRequest.outputJsonResult(restResultBean);
}
}
private void restFinishEditing(final PwmRequest pwmRequest, final ConfigManagerBean configManagerBean)
throws IOException, ServletException, PwmUnrecoverableException {
final PwmSession pwmSession = pwmRequest.getPwmSession();
RestResultBean restResultBean = new RestResultBean();
final HashMap<String, String> resultData = new HashMap<>();
restResultBean.setData(resultData);
final List<String> validationErrors = configManagerBean.getStoredConfiguration().validateValues();
if (!validationErrors.isEmpty()) {
final String errorString = validationErrors.get(0);
final ErrorInformation errorInfo = new ErrorInformation(PwmError.CONFIG_FORMAT_ERROR, errorString, new String[]{errorString});
restResultBean = RestResultBean.fromError(errorInfo, pwmRequest);
LOGGER.error(pwmSession, "save configuration aborted, error: " + errorString);
} else {
try {
ConfigManagerServlet.saveConfiguration(pwmRequest, configManagerBean.getStoredConfiguration());
configManagerBean.setConfiguration(null);
restResultBean.setError(false);
configManagerBean.setConfiguration(null);
LOGGER.debug(pwmSession, "save configuration operation completed");
} catch (PwmUnrecoverableException e) {
final ErrorInformation errorInfo = e.getErrorInformation();
restResultBean = RestResultBean.fromError(errorInfo, pwmRequest);
LOGGER.warn(pwmSession, "unable to save configuration: " + e.getMessage());
}
}
pwmRequest.outputJsonResult(restResultBean);
}
private void restCancelEditing(
final PwmRequest pwmRequest,
final ConfigManagerBean configManagerBean
)
throws IOException, ServletException, PwmUnrecoverableException {
configManagerBean.setConfiguration(null);
pwmRequest.outputJsonResult(RestResultBean.forSuccessMessage(pwmRequest, Message.Success_Unknown));
}
private void setOptions(
final PwmRequest pwmRequest,
final ConfigManagerBean configManagerBean
)
throws IOException, PwmUnrecoverableException {
{
final String updateDescriptionTextCmd = pwmRequest.readParameterAsString("updateNotesText");
if (updateDescriptionTextCmd != null && updateDescriptionTextCmd.equalsIgnoreCase("true")) {
try {
final String bodyString = pwmRequest.readRequestBodyAsString();
final String value = JsonUtil.deserialize(bodyString, String.class);
configManagerBean.getStoredConfiguration().writeConfigProperty(StoredConfiguration.ConfigProperty.PROPERTY_KEY_NOTES,
value);
LOGGER.trace("updated notesText");
} catch (Exception e) {
LOGGER.error("error updating notesText: " + e.getMessage());
}
}
{
final String requestedTemplate = pwmRequest.readParameterAsString("template");
if (requestedTemplate != null && requestedTemplate.length() > 0) {
try {
final PwmSettingTemplate template = PwmSettingTemplate.valueOf(requestedTemplate);
configManagerBean.getStoredConfiguration().writeConfigProperty(
StoredConfiguration.ConfigProperty.PROPERTY_KEY_TEMPLATE, template.toString());
LOGGER.trace("setting template to: " + requestedTemplate);
} catch (IllegalArgumentException e) {
configManagerBean.getStoredConfiguration().writeConfigProperty(
StoredConfiguration.ConfigProperty.PROPERTY_KEY_TEMPLATE, PwmSettingTemplate.DEFAULT.toString());
LOGGER.error("unknown template set request: " + requestedTemplate);
}
}
}
}
}
void restReadChangeLog(
final PwmRequest pwmRequest,
final ConfigManagerBean configManagerBean
)
throws IOException {
final Locale locale = pwmRequest.getLocale();
final HashMap<String, Object> returnObj = new HashMap<>();
returnObj.put("html", configManagerBean.getStoredConfiguration().changeLogAsDebugString(locale, true));
returnObj.put("modified", configManagerBean.getStoredConfiguration().isModified());
/*
try {
final ConfigurationChecker configurationChecker = new ConfigurationChecker();
final Configuration config = new Configuration(configManagerBean.getConfiguration());
final List<HealthRecord> healthRecords = configurationChecker.doHealthCheck(
config,
pwmRequest.getLocale()
);
final List<password.pwm.ws.server.rest.bean.HealthRecord> healthRecordBeans = password.pwm.ws.server.rest.bean.HealthRecord.fromHealthRecords(healthRecords, locale,
config);
returnObj.put("health", healthRecordBeans);
} catch (Exception e) {
LOGGER.error(pwmRequest, "error generating health records: " + e.getMessage());
}
*/
final RestResultBean restResultBean = new RestResultBean();
restResultBean.setData(returnObj);
pwmRequest.outputJsonResult(restResultBean);
}
void restSearchSettings(
final PwmRequest pwmRequest,
final ConfigManagerBean configManagerBean
)
throws IOException, PwmUnrecoverableException {
final Date startTime = new Date();
final String bodyData = pwmRequest.readRequestBodyAsString();
final Map<String, String> valueMap = JsonUtil.deserializeStringMap(bodyData);
final Locale locale = pwmRequest.getLocale();
final RestResultBean restResultBean = new RestResultBean();
final String searchTerm = valueMap.get("search");
if (searchTerm != null && !searchTerm.isEmpty()) {
final ArrayList<StoredConfiguration.ConfigRecordID> searchResults = new ArrayList<>(configManagerBean.getStoredConfiguration().search(searchTerm, locale));
final TreeMap<String, Map<String, Map<String, Object>>> returnData = new TreeMap<>();
for (final StoredConfiguration.ConfigRecordID recordID : searchResults) {
if (recordID.getRecordType() == StoredConfiguration.ConfigRecordID.RecordType.SETTING) {
final PwmSetting setting = (PwmSetting) recordID.getRecordID();
final LinkedHashMap<String, Object> settingData = new LinkedHashMap<>();
settingData.put("category", setting.getCategory().toString());
settingData.put("value", configManagerBean.getStoredConfiguration().readSetting(setting, recordID.getProfileID()).toDebugString(pwmRequest.getLocale()));
settingData.put("navigation", setting.getCategory().toMenuLocationDebug(recordID.getProfileID(), locale));
settingData.put("default", configManagerBean.getStoredConfiguration().isDefaultValue(setting, recordID.getProfileID()));
settingData.put("profile",recordID.getProfileID());
final String returnCategory = settingData.get("navigation").toString();
if (!returnData.containsKey(returnCategory)) {
returnData.put(returnCategory, new LinkedHashMap<String, Map<String, Object>>());
}
returnData.get(returnCategory).put(setting.getKey(), settingData);
}
}
restResultBean.setData(returnData);
LOGGER.trace(pwmRequest, "finished search operation with " + returnData.size() + " results in " + TimeDuration.fromCurrent(startTime).asCompactString());
} else {
restResultBean.setData(new ArrayList<StoredConfiguration.ConfigRecordID>());
}
pwmRequest.outputJsonResult(restResultBean);
}
private void restLdapHealthCheck(
final PwmRequest pwmRequest,
final ConfigManagerBean configManagerBean
)
throws IOException, PwmUnrecoverableException
{
final Date startTime = new Date();
LOGGER.debug(pwmRequest, "beginning restLdapHealthCheck");
final String profileID = pwmRequest.readParameterAsString("profile");
final Configuration config = new Configuration(configManagerBean.getStoredConfiguration());
final HealthData healthData = LDAPStatusChecker.healthForNewConfiguration(pwmRequest.getPwmApplication(), config, pwmRequest.getLocale(), profileID, true, true);
final RestResultBean restResultBean = new RestResultBean();
restResultBean.setData(healthData);
pwmRequest.outputJsonResult(restResultBean);
LOGGER.debug(pwmRequest, "completed restLdapHealthCheck in " + TimeDuration.fromCurrent(startTime).asCompactString());
}
private void restDatabaseHealthCheck(
final PwmRequest pwmRequest,
final ConfigManagerBean configManagerBean
)
throws IOException, PwmUnrecoverableException {
final Date startTime = new Date();
LOGGER.debug(pwmRequest, "beginning restDatabaseHealthCheck");
final Configuration config = new Configuration(configManagerBean.getStoredConfiguration());
final List<HealthRecord> healthRecords = DatabaseStatusChecker.checkNewDatabaseStatus(config);
final HealthData healthData = HealthRecord.asHealthDataBean(config, pwmRequest.getLocale(), healthRecords);
final RestResultBean restResultBean = new RestResultBean();
restResultBean.setData(healthData);
pwmRequest.outputJsonResult(restResultBean);
LOGGER.debug(pwmRequest, "completed restDatabaseHealthCheck in " + TimeDuration.fromCurrent(startTime).asCompactString());
}
private void restSmsHealthCheck(
final PwmRequest pwmRequest,
final ConfigManagerBean configManagerBean
)
throws IOException, PwmUnrecoverableException {
final Date startTime = new Date();
LOGGER.debug(pwmRequest, "beginning restSmsHealthCheck");
final List<HealthRecord> returnRecords = new ArrayList<>();
final Configuration config = new Configuration(configManagerBean.getStoredConfiguration());
if (!SmsQueueManager.smsIsConfigured(config)) {
returnRecords.add(new HealthRecord(HealthStatus.INFO, HealthTopic.SMS, "SMS not configured"));
} else {
final Map<String, String> testParams = pwmRequest.readBodyAsJsonStringMap();
final SmsItemBean testSmsItem = new SmsItemBean(testParams.get("to"), testParams.get("message"));
try {
final String responseBody = SmsQueueManager.sendDirectMessage(config, testSmsItem);
returnRecords.add(new HealthRecord(HealthStatus.INFO, HealthTopic.SMS, "message sent"));
returnRecords.add(new HealthRecord(HealthStatus.INFO, HealthTopic.SMS, "response body: \n" + StringUtil.escapeHtml(responseBody)));
} catch (PwmException e) {
returnRecords.add(new HealthRecord(HealthStatus.WARN, HealthTopic.SMS, "unable to send message: " + e.getMessage()));
}
}
final RestResultBean restResultBean = new RestResultBean();
final HealthData healthData = HealthRecord.asHealthDataBean(config, pwmRequest.getLocale(), returnRecords);
restResultBean.setData(healthData);
pwmRequest.outputJsonResult(restResultBean);
LOGGER.debug(pwmRequest, "completed restSmsHealthCheck in " + TimeDuration.fromCurrent(startTime).asCompactString());
}
private void doUploadFile(
final PwmRequest pwmRequest,
final ConfigManagerBean configManagerBean
)
throws PwmUnrecoverableException, IOException, ServletException {
final String key = pwmRequest.readParameterAsString("key");
final PwmSetting setting = PwmSetting.forKey(key);
final Map<String, PwmRequest.FileUploadItem> fileUploads;
try {
final int maxFileSize = Integer.parseInt(
pwmRequest.getConfig().readAppProperty(AppProperty.CONFIG_MAX_JDBC_JAR_SIZE));
fileUploads = pwmRequest.readFileUploads(maxFileSize, 1);
} catch (PwmException e) {
pwmRequest.outputJsonResult(RestResultBean.fromError(e.getErrorInformation(), pwmRequest));
LOGGER.error(pwmRequest, "error during file upload: " + e.getErrorInformation().toDebugStr());
return;
} catch (Throwable e) {
final ErrorInformation errorInformation = new ErrorInformation(PwmError.ERROR_UNKNOWN, "error during file upload: " + e.getMessage());
pwmRequest.outputJsonResult(RestResultBean.fromError(errorInformation, pwmRequest));
LOGGER.error(pwmRequest, errorInformation);
return;
}
if (fileUploads.containsKey("uploadFile")) {
final PwmRequest.FileUploadItem uploadItem = fileUploads.get("uploadFile");
final Map<FileValue.FileInformation, FileValue.FileContent> newFileValueMap = new LinkedHashMap<>();
newFileValueMap.put(new FileValue.FileInformation(uploadItem.getName(), uploadItem.getType()), new FileValue.FileContent(uploadItem.getContent()));
final UserIdentity userIdentity = pwmRequest.isAuthenticated()
? pwmRequest.getPwmSession().getUserInfoBean().getUserIdentity()
: null;
configManagerBean.getStoredConfiguration().writeSetting(setting, new FileValue(newFileValueMap), userIdentity);
pwmRequest.outputJsonResult(RestResultBean.forSuccessMessage(pwmRequest, Message.Success_Unknown));
return;
}
final ErrorInformation errorInformation = new ErrorInformation(PwmError.ERROR_UNKNOWN, "no file found in upload");
pwmRequest.outputJsonResult(RestResultBean.fromError(errorInformation, pwmRequest));
LOGGER.error(pwmRequest, "error during file upload: " + errorInformation.toDebugStr());
}
private void restMenuTreeData(
final PwmRequest pwmRequest,
final ConfigManagerBean configManagerBean
)
throws IOException, PwmUnrecoverableException
{
final Date startTime = new Date();
final ArrayList<Map<String, Object>> navigationData = new ArrayList<>();
final Map<String,Object> inputParameters = pwmRequest.readBodyAsJsonMap(false);
final boolean modifiedSettingsOnly = (boolean)inputParameters.get("modifiedSettingsOnly");
final double level = (double)inputParameters.get("level");
final String filterText = (String)inputParameters.get("text");
{ // root node
final Map<String, Object> categoryInfo = new HashMap<>();
categoryInfo.put("id", "ROOT");
categoryInfo.put("name", "ROOT");
navigationData.add(categoryInfo);
}
{ // home menu item
final Map<String, Object> categoryInfo = new HashMap<>();
categoryInfo.put("id", "HOME");
categoryInfo.put("name", LocaleHelper.getLocalizedMessage(pwmRequest.getLocale(),Config.MenuItem_Home,pwmRequest.getConfig()));
categoryInfo.put("parent", "ROOT");
navigationData.add(categoryInfo);
}
final StoredConfiguration storedConfiguration = configManagerBean.getStoredConfiguration();
for (final PwmSettingCategory loopCategory : PwmSettingCategory.sortedValues(pwmRequest.getLocale())) {
if (NavTreeHelper.categoryMatcher(loopCategory, storedConfiguration, modifiedSettingsOnly, (int)level, filterText)) {
final Map<String, Object> categoryInfo = new LinkedHashMap<>();
categoryInfo.put("id", loopCategory.getKey());
categoryInfo.put("name", loopCategory.getLabel(pwmRequest.getLocale()));
if (loopCategory.getParent() != null) {
categoryInfo.put("parent", loopCategory.getParent().getKey());
} else {
categoryInfo.put("parent", "ROOT");
}
if (loopCategory.hasProfiles()) {
{
final Map<String, Object> profileEditorInfo = new HashMap<>();
profileEditorInfo.put("id", loopCategory.getKey() + "-EDITOR");
profileEditorInfo.put("name", "[Edit List]");
profileEditorInfo.put("type", "profile-definition");
profileEditorInfo.put("profile-setting", loopCategory.getProfileSetting().getKey());
profileEditorInfo.put("parent", loopCategory.getKey());
navigationData.add(profileEditorInfo);
}
final List<PwmSetting> childSettings = loopCategory.getSettings();
if (!childSettings.isEmpty()) {
final PwmSetting childSetting = childSettings.iterator().next();
List<String> profiles = configManagerBean.getStoredConfiguration().profilesForSetting(childSetting);
for (final String profile : profiles) {
final Map<String, Object> profileInfo = new HashMap<>();
profileInfo.put("id", profile);
profileInfo.put("name", profile.isEmpty() ? "Default" : profile);
profileInfo.put("parent", loopCategory.getKey());
profileInfo.put("category", loopCategory.getKey());
profileInfo.put("type", "profile");
profileInfo.put("menuLocation", loopCategory.toMenuLocationDebug(profile, pwmRequest.getLocale()));
navigationData.add(profileInfo);
}
}
} else {
if (loopCategory.getChildCategories().isEmpty()) {
categoryInfo.put("type", "category");
} else {
categoryInfo.put("type", "navigation");
}
}
navigationData.add(categoryInfo);
}
}
boolean includeDisplayText = false;
if (level >= 1) {
for (final PwmLocaleBundle localeBundle : PwmLocaleBundle.values()) {
if (!localeBundle.isAdminOnly()) {
final Set<String> modifiedKeys = new TreeSet<>();
if (modifiedSettingsOnly) {
modifiedKeys.addAll(NavTreeHelper.determineModifiedKeysSettings(localeBundle, pwmRequest.getConfig(), configManagerBean.getStoredConfiguration()));
}
if (!modifiedSettingsOnly || !modifiedKeys.isEmpty()) {
final Map<String, Object> categoryInfo = new HashMap<>();
categoryInfo.put("id", localeBundle.toString());
categoryInfo.put("name", localeBundle.getTheClass().getSimpleName());
categoryInfo.put("parent", "DISPLAY_TEXT");
categoryInfo.put("type", "displayText");
categoryInfo.put("keys", modifiedSettingsOnly ? modifiedKeys : localeBundle.getKeys());
navigationData.add(categoryInfo);
includeDisplayText = true;
}
}
}
}
if (includeDisplayText) {
final Map<String, Object> categoryInfo = new HashMap<>();
categoryInfo.put("id", "DISPLAY_TEXT");
categoryInfo.put("name", "Display Text");
categoryInfo.put("parent", "ROOT");
navigationData.add(categoryInfo);
}
LOGGER.trace(pwmRequest,"completed navigation tree data request in " + TimeDuration.fromCurrent(startTime).asCompactString());
pwmRequest.outputJsonResult(new RestResultBean(navigationData));
}
private static class NavTreeHelper {
private static Set<String> determineModifiedKeysSettings(
final PwmLocaleBundle bundle,
final Configuration config,
final StoredConfiguration storedConfiguration
) {
final Set<String> modifiedKeys = new TreeSet<>();
for (final String key : bundle.getKeys()) {
final Map<String,String> storedBundle = storedConfiguration.readLocaleBundleMap(bundle.getTheClass().getName(),key);
if (!storedBundle.isEmpty()) {
for (final Locale locale : config.getKnownLocales()) {
final ResourceBundle defaultBundle = ResourceBundle.getBundle(bundle.getTheClass().getName(), locale);
final String localeKeyString = PwmConstants.DEFAULT_LOCALE.toString().equals(locale.toString()) ? "" : locale.toString();
if (storedBundle.containsKey(localeKeyString)) {
final String value = storedBundle.get(localeKeyString);
if (value != null && !value.equals(defaultBundle.getString(key))) {
modifiedKeys.add(key);
}
}
}
}
}
return modifiedKeys;
}
private static boolean categoryMatcher(
PwmSettingCategory category,
StoredConfiguration storedConfiguration,
final boolean modifiedOnly,
final int minLevel,
final String text
) {
if (category.isHidden()) {
return false;
}
for (PwmSettingCategory childCategory : category.getChildCategories()) {
if (categoryMatcher(childCategory, storedConfiguration, modifiedOnly, minLevel, text)) {
return true;
}
}
if (category.hasProfiles()) {
for (String profileID : storedConfiguration.profilesForSetting(category.getProfileSetting())) {
for (final PwmSetting setting : category.getSettings()) {
if (settingMatches(storedConfiguration,setting,profileID,modifiedOnly,minLevel,text)) {
return true;
}
}
}
} else {
for (final PwmSetting setting : category.getSettings()) {
if (settingMatches(storedConfiguration,setting,null,modifiedOnly,minLevel,text)) {
return true;
}
}
}
return false;
}
private static boolean settingMatches(
final StoredConfiguration storedConfiguration,
final PwmSetting setting,
final String profileID,
final boolean modifiedOnly,
final int level,
final String text
) {
if (setting.isHidden()) {
return false;
}
if (modifiedOnly) {
if (storedConfiguration.isDefaultValue(setting,profileID)) {
return false;
}
}
if (level > 0 && setting.getLevel() > level) {
return false;
}
if (text == null || text.isEmpty()) {
return true;
} else {
final StoredValue storedValue = storedConfiguration.readSetting(setting,profileID);
for (final String term : StringUtil.whitespaceSplit(text)) {
if (storedConfiguration.matchSetting(setting, storedValue, term, PwmConstants.DEFAULT_LOCALE)) {
return true;
}
}
}
return false;
}
}
private void restConfigSettingData(final PwmRequest pwmRequest) throws IOException {
final LinkedHashMap<String, Object> returnMap = new LinkedHashMap<>();
final Locale locale = pwmRequest.getLocale();
{
final LinkedHashMap<String, Object> settingMap = new LinkedHashMap<>();
for (final PwmSetting setting : PwmSetting.values()) {
final SettingInfo settingInfo = new SettingInfo();
settingInfo.key = setting.getKey();
settingInfo.description = setting.getDescription(locale);
settingInfo.level = setting.getLevel();
settingInfo.label = setting.getLabel(locale);
settingInfo.syntax = setting.getSyntax();
settingInfo.category = setting.getCategory();
settingInfo.required = setting.isRequired();
settingInfo.hidden = setting.isHidden();
settingInfo.options = setting.getOptions();
settingInfo.pattern = setting.getRegExPattern().toString();
settingInfo.placeholder = setting.getPlaceholder(locale);
settingMap.put(setting.getKey(), settingInfo);
}
returnMap.put("settings", settingMap);
}
{
final LinkedHashMap<String, Object> categoryMap = new LinkedHashMap<>();
for (final PwmSettingCategory category : PwmSettingCategory.values()) {
final CategoryInfo categoryInfo = new CategoryInfo();
categoryInfo.key = category.getKey();
categoryInfo.level = category.getLevel();
categoryInfo.description = category.getDescription(locale);
categoryInfo.label = category.getLabel(locale);
categoryInfo.hidden = category.isHidden();
if (category.getParent() != null) {
categoryInfo.parent = category.getParent().getKey();
}
categoryMap.put(category.getKey(), categoryInfo);
}
returnMap.put("categories", categoryMap);
}
{
final LinkedHashMap<String, Object> labelMap = new LinkedHashMap<>();
for (final PwmLocaleBundle localeBundle : PwmLocaleBundle.values()) {
final LocaleInfo localeInfo = new LocaleInfo();
localeInfo.description = localeBundle.getTheClass().getSimpleName();
localeInfo.key = localeBundle.toString();
localeInfo.adminOnly = localeBundle.isAdminOnly();
labelMap.put(localeBundle.getTheClass().getSimpleName(), localeInfo);
}
returnMap.put("locales", labelMap);
}
{
final LinkedHashMap<String, Object> templateMap = new LinkedHashMap<>();
for (final PwmSettingTemplate template : PwmSettingTemplate.sortedValues(pwmRequest.getLocale())) {
final TemplateInfo templateInfo = new TemplateInfo();
templateInfo.description = template.getLabel(locale);
templateInfo.key = template.toString();
templateInfo.hidden = template.isHidden();
templateMap.put(template.toString(), templateInfo);
}
returnMap.put("templates", templateMap);
}
{
final LinkedHashMap<String, Object> varMap = new LinkedHashMap<>();
final ConfigManagerBean configManagerBean = pwmRequest.getPwmSession().getConfigManagerBean();
varMap.put("ldapProfileIds", configManagerBean.getStoredConfiguration().readSetting(PwmSetting.LDAP_PROFILE_LIST).toNativeObject());
varMap.put("currentTemplate",configManagerBean.getStoredConfiguration().getTemplate());
if (pwmRequest.getPwmApplication().getApplicationMode() == PwmApplication.MODE.CONFIGURATION && !PwmConstants.TRIAL_MODE) {
if (!configManagerBean.isConfigUnlockedWarningShown()) {
varMap.put("configUnlocked",true);
configManagerBean.setConfigUnlockedWarningShown(true);
}
}
varMap.put("configurationNotes", configManagerBean.getStoredConfiguration().readConfigProperty(StoredConfiguration.ConfigProperty.PROPERTY_KEY_NOTES));
returnMap.put("var", varMap);
}
final RestResultBean restResultBean = new RestResultBean();
restResultBean.setData(returnMap);
pwmRequest.outputJsonResult(restResultBean);
}
private void restTestMacro(final PwmRequest pwmRequest) throws IOException, ServletException {
try {
final Map<String, String> inputMap = pwmRequest.readBodyAsJsonStringMap(true);
if (inputMap == null || !inputMap.containsKey("input")) {
pwmRequest.outputJsonResult(new RestResultBean("missing input"));
return;
}
final MacroMachine macroMachine;
if (pwmRequest.isAuthenticated()) {
macroMachine = pwmRequest.getPwmSession().getSessionManager().getMacroMachine(pwmRequest.getPwmApplication());
} else {
macroMachine = MacroMachine.forNonUserSpecific(pwmRequest.getPwmApplication(), pwmRequest.getSessionLabel());
}
final String input = inputMap.get("input");
final String output = macroMachine.expandMacros(input);
pwmRequest.outputJsonResult(new RestResultBean(output));
} catch (PwmUnrecoverableException e) {
LOGGER.error(pwmRequest, e.getErrorInformation());
pwmRequest.respondWithError(e.getErrorInformation());
}
}
} | [
"[email protected]"
]
| |
9cce8438b9a9021705d8eb3e1ca90cabe094827c | 5c7b863b1d3938e7cec0b0e29e7f6b44977fbfe9 | /src/java/com/paopao/hzgzf/common/process/util/ProcConst.java | 9fe21059393ca8248c49ed7a8ca18d1bcfd56f19 | []
| no_license | hongweichang/xydlxm | 1efa96d41e0956ea7ce66bc28e3c7976198e5385 | ed516f30fec747ef210f3623e68be5ce868f34fb | refs/heads/master | 2020-12-31T02:33:12.484869 | 2016-07-28T10:07:53 | 2016-07-28T10:07:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,404 | java | /**
*
*/
package com.paopao.hzgzf.common.process.util;
/**
* Copyright: Copyright (c) 2016 Asiainfo-Linkage
*
* @ClassName: ProcConst.java
* @Description: 该类的功能描述
*
* @version: v1.0.0
* @author: zhoudk
* @date: 2016-6-23 下午3:05:30
*
* Modification History:
* Date Author Version Description
*---------------------------------------------------------*
* 2016-6-23 zdk v1.0.0 修改原因
*/
public class ProcConst {
/** 待处理 */
public static final int EDIT = 0;
/** 处理中 */
public static final int PROCESSING = 1;
/** 已通过 */
public static final int FINISH = 2;
/** 作废(驳回) */
public static final int REJECT = 3;
/** 明细处理中 */
public static final int DETAIL_PROCESSING = 0;
/** 明细通过 */
public static final int DETAIL_PASS = 1;
/** 明细驳回 */
public static final int DETAIL_REJECT = 2;
/**
* Copyright: Copyright (c) 2016 Asiainfo-Linkage
*
* @Description: 流程实例静态属性配置
*/
public static interface PROCESS_TYPE {
public static final String RESIDENT_ELEC_APPLY = "RESIDENT_ELEC_APPLY";
}
// public static final Map<String, String> PROCESS_TYPE_MAP;
//
// static {
// PROCESS_TYPE_MAP = new HashMap<String, String>();
// PROCESS_TYPE_MAP.put("RESIDENT_ELEC_APPLY", "RESIDENT_ELEC_APPLY");
// }
}
| [
"[email protected]"
]
| |
86fdf223be30cd7b8394138b63e3f2066c278522 | 182c7cd0d030841ff60be487b154ea6edac183e4 | /rtmap/src/com/rtmap/core/exception/DaoException.java | 8315a301cbc11a4fa880ef89e85a23e3e1eebad1 | [
"MIT"
]
| permissive | fushenghua/blog | a60c543763d5867d5bfb3d6aeab4315ad858fd28 | fc5f5244f2a59ad3e505bdd37a83503d24d71642 | refs/heads/master | 2021-09-10T21:08:32.402335 | 2018-04-02T05:17:54 | 2018-04-02T05:17:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 389 | java | /**
*
*/
package com.rtmap.core.exception;
import org.springframework.core.NestedRuntimeException;
public class DaoException extends NestedRuntimeException {
private static final long serialVersionUID = 4027668633550746774L;
public DaoException(String message) {
super(message);
}
public DaoException(String message, Throwable throwable) {
super(message, throwable);
}
}
| [
"[email protected]"
]
| |
d1d22233c5751390fbfb88d817e4f56ee79c06d7 | 245f8fb1d69b9a3b57955727863f3558a6c8fce2 | /Editor_FIP/src/main/com/mitc/redes/editorfip/entidades/rpm/planeamiento/Documentoentidad.java | e1e062ece6cd304dd65e590fc13907e4b03bcddb | []
| no_license | chandra102016/urbanismo-1 | a5b7e7afec31e7095735b71ff4941db599afdc59 | 8cb46c2a48b1ef5a56a3d7e6a2c20ebab2308009 | refs/heads/master | 2021-01-12T12:40:48.688459 | 2016-03-29T08:19:12 | 2016-03-29T08:19:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,511 | java | /*
* Copyright 2011 red.es
* Autores: IDOM Consulting
*
* Licencia con arreglo a la EUPL, Versi�n 1.1 o -en cuanto
* sean aprobadas por la Comision Europea- versiones
* posteriores de la EUPL (la <<Licencia>>);
* Solo podra usarse esta obra si se respeta la Licencia.
* Puede obtenerse una copia de la Licencia en:
*
* http://ec.europa.eu/idabc/eupl5
*
* Salvo cuando lo exija la legislacion aplicable o se acuerde.
* por escrito, el programa distribuido con arreglo a la
* Licencia se distribuye <<TAL CUAL>>,
* SIN GARANTIAS NI CONDICIONES DE NINGUN TIPO, ni expresas
* ni implicitas.
* Vease la Licencia en el idioma concreto que rige
* los permisos y limitaciones que establece la Licencia.
*/
package com.mitc.redes.editorfip.entidades.rpm.planeamiento;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.SequenceGenerator;
import javax.persistence.Table;
import org.hibernate.validator.NotNull;
@Entity
@Table(name = "documentoentidad", schema = "planeamiento")
@SequenceGenerator( name = "DETSEQ", sequenceName = "planeamiento.planeamiento_documentoentidad_iden_seq",allocationSize=1 )
public class Documentoentidad implements java.io.Serializable {
private int iden;
private Documento documento;
private Entidad entidad;
public Documentoentidad() {
}
public Documentoentidad(int iden, Documento documento, Entidad entidad) {
this.iden = iden;
this.documento = documento;
this.entidad = entidad;
}
@Id
@Column(name = "iden", unique = true, nullable = false, insertable = false)
@GeneratedValue(strategy=GenerationType.SEQUENCE, generator="DETSEQ")
public int getIden() {
return this.iden;
}
public void setIden(int iden) {
this.iden = iden;
}
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "iddocumento", nullable = false)
@NotNull
public Documento getDocumento() {
return this.documento;
}
public void setDocumento(Documento documento) {
this.documento = documento;
}
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "identidad", nullable = false)
@NotNull
public Entidad getEntidad() {
return this.entidad;
}
public void setEntidad(Entidad entidad) {
this.entidad = entidad;
}
}
| [
"[email protected]"
]
| |
60e29322cd4ec6ae9e77092e631dbb1207dceaca | 8ecabe33a57b6756a21832e6fd276b6bf06afa2b | /Training/src/firstsemester/classes/string2/Solution.java | 58866a49073a0938c2b0b7e17de07732a5e766e4 | []
| no_license | robin622/LCode | 7cc4a5cfc9469b2d9eb3fb35c51516aefd7654cd | a14003688485116a8c753cb728882a3a2159ad75 | refs/heads/master | 2020-06-15T14:10:58.040568 | 2020-01-25T20:28:05 | 2020-01-25T20:28:05 | 195,319,749 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,142 | java | package firstsemester.classes.string2;
public class Solution {
public String replace(String input, String source, String target) {
if(input == null || input.length() == 0 ||
source == null || source.length() == 0 ||
target == null) {
return input;
}
//replace from back to front
int addSpaces = 0;
if(target.length() > source.length()) {
addSpaces = getAddedSpace(input, source) * (target.length() - source.length());
StringBuilder inputBuilder = new StringBuilder(input);
for(int i = 0; i < addSpaces; i++){
inputBuilder.append(" ");
}
input = inputBuilder.toString();
}
char[] cs = input.toCharArray();
int right = input.length() - 1;
int left = input.length() - 1 - addSpaces;
while(left >= 0) {
if(cs[left] != source.charAt(source.length()-1)) {
cs[right] = cs[left];
right--;
left--;
} else {
if(isEqual(input, left, source)) {
add(cs, right, target);
left -= source.length();
right -= target.length();
} else {
cs[right] = cs[left];
right--;
left--;
}
}
}
return new String(cs, right+1, cs.length -1 - right);
}
private void add(char[] cs, int right, String target) {
for(int i = target.length() - 1; i >=0 ; i--, right--) {
cs[right] = target.charAt(i);
}
}
private boolean isEqual(String input, int left, String source) {
for(int i = source.length() - 1; i >=0 ; i--, left--) {
if(left < 0 || input.charAt(left) != source.charAt(i)) {
return false;
}
}
return true;
}
private int getAddedSpace(String input, String source) {
int counter = 0;
for(int i = 0; i <= input.length() - source.length(); i++) {
if(input.substring(i, i+source.length()).equals(source)){
counter++;
}
}
return counter;
}
public static void main(String[] args) {
Solution s = new Solution();
System.out.println(s.replace("azerbaijanlatviaethiopiasyriacroatiaantarcticaanguilla", "botswana", "luxembourg"));
}
}
| [
"[email protected]"
]
| |
c762d87c97dd6587a5081cd827fef3374ee80281 | 61fa8b2a03ed05bbc7b433d1fa1a2b76a74ca2d7 | /DREAMBUILDERnewVERSION/src/main/java/co/simplon/DreambuildeRnewVersionApplication.java | fa1bffc6e3419f98096203d6914267d92adfcca6 | []
| no_license | clyford/TITRE-PROFESSIONEL-DEVELOPPEUR-WEB | 7df052bb0b42c30d516b0be68917967c6fe4f4a9 | 5b79e01c28f7eb3ef3db7c392ce86de369a36281 | refs/heads/master | 2020-04-27T08:17:12.862578 | 2019-04-07T15:52:41 | 2019-04-07T15:52:41 | 174,164,847 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 512 | java | package co.simplon;
import org.modelmapper.ModelMapper;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
@SpringBootApplication
public class DreambuildeRnewVersionApplication {
public static void main(String[] args) {
SpringApplication.run(DreambuildeRnewVersionApplication.class, args);
}
@Bean
public ModelMapper modelMapper() {
return new ModelMapper();
}
}
| [
"[email protected]"
]
| |
844ef21798d2abc78d536faac5e20b3f7b438c76 | a37419019b510ee2a5fd49a65ba94605d2b8a56d | /src/main/java/anotations/Id.java | 265df5f05c855c2392fa1696b93532775b387f52 | []
| no_license | YanchevskayaAnna/TestProject | 9434082707314398a0e13760be582d0ceaae75bf | 1cae1acbd74458c471c21eb2e30262cf1328591f | refs/heads/master | 2020-04-06T15:59:22.319110 | 2018-12-09T18:15:00 | 2018-12-09T18:15:00 | 157,600,871 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 342 | java | package anotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Created by 1 on 16.09.2017.
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Id {
String name() default "id";
}
| [
"NewFriends2017"
]
| NewFriends2017 |
a48c57f2916bea3e3c8c3b815fd7d772637534f2 | a473b2a87a6ea30d9c3f02ac2209664cd39d5be9 | /03 Relative Layout/RelativeLayout1/app/build/generated/source/r/debug/com/wirama/w/relativelayout1/R.java | 30cc7f4a81b27d044dbf1726f3cbeece04e24206 | []
| no_license | WayanWirama/IAK-Beginner-Mentoring | 2bd724233bceb0ea218f2eefb22856839998ecb9 | 010051291fdb135e40a4918f84fed12f5d47ca99 | refs/heads/master | 2021-01-02T22:47:52.534439 | 2017-08-18T00:15:19 | 2017-08-18T00:15:19 | 99,391,859 | 0 | 0 | null | 2017-08-05T01:45:46 | 2017-08-05T01:45:46 | null | UTF-8 | Java | false | false | 560,383 | 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.wirama.w.relativelayout1;
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=0x7f01010e;
/** <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=0x7f01010f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int 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=0x7f010103;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int 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=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 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=0x7f010105;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapseIcon=0x7f010104;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int color=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=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 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=0x7f0100e5;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100e7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int 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=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 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=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 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=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 maxButtonHeight=0x7f010102;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010107;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int navigationIcon=0x7f010106;
/** <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=0x7f0100e0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01010c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingStart=0x7f01010b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingTopNoTitle=0x7f0100e1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int 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 queryBackground=0x7f0100ed;
/** <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=0x7f0100e4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100e9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100e8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int 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=0x7f0100f9;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100f8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int 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=0x7f0100ee;
/** <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=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 subtitleTextColor=0x7f01010a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ec;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 switchPadding=0x7f0100f7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100f5;
/** <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=0x7f01010d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static 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=0x7f0100f4;
/** <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=0x7f0100ef;
/** <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=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 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=0x7f0100fc;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 titleMarginEnd=0x7f0100fe;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginStart=0x7f0100fd;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginTop=0x7f0100ff;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargins=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 titleTextAppearance=0x7f0100fa;
/** <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=0x7f010109;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static 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=0x7f0100f1;
/** <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=0x7f0100f2;
/** <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=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 voiceIcon=0x7f0100ea;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int 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 notification_action_background=0x7f020053;
public static final int notification_bg=0x7f020054;
public static final int notification_bg_low=0x7f020055;
public static final int notification_bg_low_normal=0x7f020056;
public static final int notification_bg_low_pressed=0x7f020057;
public static final int notification_bg_normal=0x7f020058;
public static final int notification_bg_normal_pressed=0x7f020059;
public static final int notification_icon_background=0x7f02005a;
public static final int notification_template_icon_bg=0x7f02005d;
public static final int notification_template_icon_low_bg=0x7f02005e;
public static final int notification_tile_bg=0x7f02005b;
public static final int notify_panel_notification_icon_bg=0x7f02005c;
}
public static final class id {
public static final int action0=0x7f0b0066;
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=0x7f0b0063;
public static final int action_context_bar=0x7f0b0050;
public static final int action_divider=0x7f0b006a;
public static final int action_image=0x7f0b0064;
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=0x7f0b0065;
public static final int actions=0x7f0b0073;
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=0x7f0b0067;
public static final int chains=0x7f0b0010;
public static final int checkbox=0x7f0b0046;
public static final int chronometer=0x7f0b006f;
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=0x7f0b0079;
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=0x7f0b0074;
public static final int ifRoom=0x7f0b0027;
public static final int image=0x7f0b0031;
public static final int info=0x7f0b0070;
public static final int kotak-hijau=0x7f0b005f;
public static final int kotak_biru=0x7f0b0060;
public static final int kotak_kuning=0x7f0b0061;
public static final int kotak_merah=0x7f0b005e;
public static final int kotak_ungu=0x7f0b0062;
public static final int line1=0x7f0b0075;
public static final int line3=0x7f0b0077;
public static final int listMode=0x7f0b0012;
public static final int list_item=0x7f0b0033;
public static final int media_actions=0x7f0b0069;
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=0x7f0b0071;
public static final int notification_main_column=0x7f0b006c;
public static final int notification_main_column_container=0x7f0b006b;
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 radio=0x7f0b0048;
public static final int right_icon=0x7f0b0072;
public static final int right_side=0x7f0b006d;
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=0x7f0b0068;
public static final int submenuarrow=0x7f0b0049;
public static final int submit_area=0x7f0b005a;
public static final int tabMode=0x7f0b0014;
public static final int text=0x7f0b0078;
public static final int text2=0x7f0b0076;
public static final int textSpacerNoButtons=0x7f0b003d;
public static final int textSpacerNoTitle=0x7f0b003c;
public static final int time=0x7f0b006e;
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 notification_action=0x7f04001c;
public static final int notification_action_tombstone=0x7f04001d;
public static final int notification_media_action=0x7f04001e;
public static final int notification_media_cancel_action=0x7f04001f;
public static final int notification_template_big_media=0x7f040020;
public static final int notification_template_big_media_custom=0x7f040021;
public static final int notification_template_big_media_narrow=0x7f040022;
public static final int notification_template_big_media_narrow_custom=0x7f040023;
public static final int notification_template_custom_big=0x7f040024;
public static final int notification_template_icon_group=0x7f040025;
public static final int notification_template_lines_media=0x7f040026;
public static final int notification_template_media=0x7f040027;
public static final int notification_template_media_custom=0x7f040028;
public static final int notification_template_part_chronometer=0x7f040029;
public static final int notification_template_part_time=0x7f04002a;
public static final int select_dialog_item_material=0x7f04002b;
public static final int select_dialog_multichoice_material=0x7f04002c;
public static final int select_dialog_singlechoice_material=0x7f04002d;
public static final int support_simple_spinner_dropdown_item=0x7f04002e;
}
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=0x7f060015;
public static final int abc_font_family_body_2_material=0x7f060016;
public static final int abc_font_family_button_material=0x7f060017;
public static final int abc_font_family_caption_material=0x7f060018;
public static final int abc_font_family_display_1_material=0x7f060019;
public static final int abc_font_family_display_2_material=0x7f06001a;
public static final int abc_font_family_display_3_material=0x7f06001b;
public static final int abc_font_family_display_4_material=0x7f06001c;
public static final int abc_font_family_headline_material=0x7f06001d;
public static final int abc_font_family_menu_material=0x7f06001e;
public static final int abc_font_family_subhead_material=0x7f06001f;
public static final int abc_font_family_title_material=0x7f060020;
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=0x7f060021;
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.wirama.w.relativelayout1:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit com.wirama.w.relativelayout1:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked com.wirama.w.relativelayout1:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd com.wirama.w.relativelayout1:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.wirama.w.relativelayout1:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft com.wirama.w.relativelayout1:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight com.wirama.w.relativelayout1:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart com.wirama.w.relativelayout1:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.wirama.w.relativelayout1:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout com.wirama.w.relativelayout1:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions com.wirama.w.relativelayout1:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider com.wirama.w.relativelayout1:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation com.wirama.w.relativelayout1:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height com.wirama.w.relativelayout1:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll com.wirama.w.relativelayout1:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator com.wirama.w.relativelayout1:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout com.wirama.w.relativelayout1:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon com.wirama.w.relativelayout1:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.wirama.w.relativelayout1:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding com.wirama.w.relativelayout1:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo com.wirama.w.relativelayout1:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode com.wirama.w.relativelayout1:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme com.wirama.w.relativelayout1:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding com.wirama.w.relativelayout1:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle com.wirama.w.relativelayout1:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle com.wirama.w.relativelayout1:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle com.wirama.w.relativelayout1:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title com.wirama.w.relativelayout1:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle com.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:background
*/
public static final int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:elevation
*/
public static final int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:height
*/
public static final int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:popupTheme
*/
public static final int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:title
*/
public static final int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit com.wirama.w.relativelayout1:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout com.wirama.w.relativelayout1:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height com.wirama.w.relativelayout1:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle com.wirama.w.relativelayout1:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle com.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:background
*/
public static final int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:height
*/
public static final int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount com.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout com.wirama.w.relativelayout1:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout com.wirama.w.relativelayout1:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.wirama.w.relativelayout1:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle com.wirama.w.relativelayout1:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:showTitle
*/
public static final int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.wirama.w.relativelayout1:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:tickMark
*/
public static final int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.wirama.w.relativelayout1:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.wirama.w.relativelayout1:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize com.wirama.w.relativelayout1:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.wirama.w.relativelayout1:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle com.wirama.w.relativelayout1:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.wirama.w.relativelayout1:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.wirama.w.relativelayout1:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.wirama.w.relativelayout1:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme com.wirama.w.relativelayout1:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.wirama.w.relativelayout1:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.wirama.w.relativelayout1:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.wirama.w.relativelayout1:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.wirama.w.relativelayout1:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.wirama.w.relativelayout1:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground com.wirama.w.relativelayout1:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.wirama.w.relativelayout1:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.wirama.w.relativelayout1:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.wirama.w.relativelayout1:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.wirama.w.relativelayout1:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.wirama.w.relativelayout1:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.wirama.w.relativelayout1:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.wirama.w.relativelayout1:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.wirama.w.relativelayout1:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.wirama.w.relativelayout1:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.wirama.w.relativelayout1:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle com.wirama.w.relativelayout1:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.wirama.w.relativelayout1:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.wirama.w.relativelayout1:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.wirama.w.relativelayout1:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.wirama.w.relativelayout1:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.wirama.w.relativelayout1:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.wirama.w.relativelayout1:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.wirama.w.relativelayout1:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.wirama.w.relativelayout1: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.wirama.w.relativelayout1:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.wirama.w.relativelayout1:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.wirama.w.relativelayout1:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.wirama.w.relativelayout1:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.wirama.w.relativelayout1:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.wirama.w.relativelayout1:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.wirama.w.relativelayout1:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle com.wirama.w.relativelayout1:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.wirama.w.relativelayout1:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle com.wirama.w.relativelayout1:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.wirama.w.relativelayout1:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent com.wirama.w.relativelayout1:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.wirama.w.relativelayout1:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.wirama.w.relativelayout1:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated com.wirama.w.relativelayout1:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.wirama.w.relativelayout1:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal com.wirama.w.relativelayout1:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary com.wirama.w.relativelayout1:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.wirama.w.relativelayout1:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.wirama.w.relativelayout1:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground com.wirama.w.relativelayout1:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.wirama.w.relativelayout1:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme com.wirama.w.relativelayout1:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.wirama.w.relativelayout1:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical com.wirama.w.relativelayout1:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.wirama.w.relativelayout1:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.wirama.w.relativelayout1:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground com.wirama.w.relativelayout1:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor com.wirama.w.relativelayout1:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle com.wirama.w.relativelayout1:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.wirama.w.relativelayout1:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.wirama.w.relativelayout1:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.wirama.w.relativelayout1:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.wirama.w.relativelayout1:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.wirama.w.relativelayout1:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.wirama.w.relativelayout1:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.wirama.w.relativelayout1:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.wirama.w.relativelayout1:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.wirama.w.relativelayout1:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.wirama.w.relativelayout1:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.wirama.w.relativelayout1:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground com.wirama.w.relativelayout1:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.wirama.w.relativelayout1:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.wirama.w.relativelayout1:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.wirama.w.relativelayout1:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.wirama.w.relativelayout1:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.wirama.w.relativelayout1:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.wirama.w.relativelayout1:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.wirama.w.relativelayout1:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.wirama.w.relativelayout1:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle com.wirama.w.relativelayout1:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle com.wirama.w.relativelayout1:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.wirama.w.relativelayout1:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.wirama.w.relativelayout1:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.wirama.w.relativelayout1:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle com.wirama.w.relativelayout1:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle com.wirama.w.relativelayout1:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.wirama.w.relativelayout1:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.wirama.w.relativelayout1:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.wirama.w.relativelayout1:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.wirama.w.relativelayout1:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.wirama.w.relativelayout1:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.wirama.w.relativelayout1:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.wirama.w.relativelayout1:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.wirama.w.relativelayout1:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.wirama.w.relativelayout1:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.wirama.w.relativelayout1:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle com.wirama.w.relativelayout1:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar com.wirama.w.relativelayout1:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.wirama.w.relativelayout1:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.wirama.w.relativelayout1:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.wirama.w.relativelayout1:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.wirama.w.relativelayout1:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.wirama.w.relativelayout1:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.wirama.w.relativelayout1:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.wirama.w.relativelayout1:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.wirama.w.relativelayout1:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle com.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle = 94;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons = 95;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle = 93;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle = 101;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 98;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle = 102;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall = 103;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle = 104;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle = 105;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:colorAccent
*/
public static final int AppCompatTheme_colorAccent = 85;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating = 92;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal = 89;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated = 87;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight = 88;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal = 86;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary = 83;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark = 84;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal = 90;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:controlBackground
*/
public static final int AppCompatTheme_controlBackground = 91;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:editTextColor
*/
public static final int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle = 106;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator = 82;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle = 114;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:panelBackground
*/
public static final int AppCompatTheme_panelBackground = 79;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme = 81;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth = 80;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle = 107;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle = 108;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator = 109;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall = 110;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle = 111;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle = 112;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:switchStyle
*/
public static final int AppCompatTheme_switchStyle = 113;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall = 78;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem = 97;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode com.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:constraintSet}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_creator com.wirama.w.relativelayout1:layout_constraintBaseline_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf com.wirama.w.relativelayout1:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_creator com.wirama.w.relativelayout1:layout_constraintBottom_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf com.wirama.w.relativelayout1:layout_constraintBottom_toBottomOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toTopOf com.wirama.w.relativelayout1:layout_constraintBottom_toTopOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintDimensionRatio com.wirama.w.relativelayout1:layout_constraintDimensionRatio}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toEndOf com.wirama.w.relativelayout1:layout_constraintEnd_toEndOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toStartOf com.wirama.w.relativelayout1:layout_constraintEnd_toStartOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_begin com.wirama.w.relativelayout1:layout_constraintGuide_begin}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_end com.wirama.w.relativelayout1:layout_constraintGuide_end}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_percent com.wirama.w.relativelayout1:layout_constraintGuide_percent}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_default com.wirama.w.relativelayout1:layout_constraintHeight_default}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_max com.wirama.w.relativelayout1:layout_constraintHeight_max}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_min com.wirama.w.relativelayout1:layout_constraintHeight_min}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_bias com.wirama.w.relativelayout1:layout_constraintHorizontal_bias}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle com.wirama.w.relativelayout1:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_weight com.wirama.w.relativelayout1:layout_constraintHorizontal_weight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_creator com.wirama.w.relativelayout1:layout_constraintLeft_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf com.wirama.w.relativelayout1:layout_constraintLeft_toLeftOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toRightOf com.wirama.w.relativelayout1:layout_constraintLeft_toRightOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_creator com.wirama.w.relativelayout1:layout_constraintRight_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toLeftOf com.wirama.w.relativelayout1:layout_constraintRight_toLeftOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toRightOf com.wirama.w.relativelayout1:layout_constraintRight_toRightOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toEndOf com.wirama.w.relativelayout1:layout_constraintStart_toEndOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toStartOf com.wirama.w.relativelayout1:layout_constraintStart_toStartOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_creator com.wirama.w.relativelayout1:layout_constraintTop_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toBottomOf com.wirama.w.relativelayout1:layout_constraintTop_toBottomOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toTopOf com.wirama.w.relativelayout1:layout_constraintTop_toTopOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_bias com.wirama.w.relativelayout1:layout_constraintVertical_bias}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_chainStyle com.wirama.w.relativelayout1:layout_constraintVertical_chainStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_weight com.wirama.w.relativelayout1:layout_constraintVertical_weight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_default com.wirama.w.relativelayout1:layout_constraintWidth_default}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_max com.wirama.w.relativelayout1:layout_constraintWidth_max}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_min com.wirama.w.relativelayout1:layout_constraintWidth_min}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteX com.wirama.w.relativelayout1:layout_editor_absoluteX}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteY com.wirama.w.relativelayout1:layout_editor_absoluteY}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginBottom com.wirama.w.relativelayout1:layout_goneMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginEnd com.wirama.w.relativelayout1:layout_goneMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginLeft com.wirama.w.relativelayout1:layout_goneMarginLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginRight com.wirama.w.relativelayout1:layout_goneMarginRight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginStart com.wirama.w.relativelayout1:layout_goneMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginTop com.wirama.w.relativelayout1:layout_goneMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_optimizationLevel com.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:constraintSet
*/
public static final int ConstraintLayout_Layout_constraintSet = 5;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintBaseline_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator = 6;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintBaseline_toBaselineOf
*/
public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf = 7;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintBottom_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintBottom_creator = 8;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintBottom_toBottomOf
*/
public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf = 9;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintBottom_toTopOf
*/
public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf = 10;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintDimensionRatio
*/
public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio = 11;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintEnd_toEndOf
*/
public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf = 12;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintEnd_toStartOf
*/
public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf = 13;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintGuide_begin
*/
public static final int ConstraintLayout_Layout_layout_constraintGuide_begin = 14;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintGuide_end
*/
public static final int ConstraintLayout_Layout_layout_constraintGuide_end = 15;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintGuide_percent
*/
public static final int ConstraintLayout_Layout_layout_constraintGuide_percent = 16;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintHeight_default
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_default = 17;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintHeight_max
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_max = 18;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintHeight_min
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_min = 19;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintHorizontal_bias
*/
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias = 20;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintHorizontal_chainStyle
*/
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle = 21;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintHorizontal_weight
*/
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight = 22;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintLeft_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintLeft_creator = 23;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintLeft_toLeftOf
*/
public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf = 24;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintLeft_toRightOf
*/
public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf = 25;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintRight_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintRight_creator = 26;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintRight_toLeftOf
*/
public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf = 27;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintRight_toRightOf
*/
public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf = 28;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintStart_toEndOf
*/
public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf = 29;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintStart_toStartOf
*/
public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf = 30;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintTop_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintTop_creator = 31;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintTop_toBottomOf
*/
public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf = 32;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintTop_toTopOf
*/
public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf = 33;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintVertical_bias
*/
public static final int ConstraintLayout_Layout_layout_constraintVertical_bias = 34;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintVertical_chainStyle
*/
public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle = 35;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintVertical_weight
*/
public static final int ConstraintLayout_Layout_layout_constraintVertical_weight = 36;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintWidth_default
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_default = 37;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintWidth_max
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_max = 38;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintWidth_min
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_min = 39;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_editor_absoluteX
*/
public static final int ConstraintLayout_Layout_layout_editor_absoluteX = 40;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_editor_absoluteY
*/
public static final int ConstraintLayout_Layout_layout_editor_absoluteY = 41;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_goneMarginBottom
*/
public static final int ConstraintLayout_Layout_layout_goneMarginBottom = 42;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_goneMarginEnd
*/
public static final int ConstraintLayout_Layout_layout_goneMarginEnd = 43;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_goneMarginLeft
*/
public static final int ConstraintLayout_Layout_layout_goneMarginLeft = 44;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_goneMarginRight
*/
public static final int ConstraintLayout_Layout_layout_goneMarginRight = 45;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_goneMarginStart
*/
public static final int ConstraintLayout_Layout_layout_goneMarginStart = 46;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_goneMarginTop
*/
public static final int ConstraintLayout_Layout_layout_goneMarginTop = 47;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:layout_constraintBaseline_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_toBaselineOf com.wirama.w.relativelayout1:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintBottom_creator com.wirama.w.relativelayout1:layout_constraintBottom_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toBottomOf com.wirama.w.relativelayout1:layout_constraintBottom_toBottomOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toTopOf com.wirama.w.relativelayout1:layout_constraintBottom_toTopOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintDimensionRatio com.wirama.w.relativelayout1:layout_constraintDimensionRatio}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toEndOf com.wirama.w.relativelayout1:layout_constraintEnd_toEndOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toStartOf com.wirama.w.relativelayout1:layout_constraintEnd_toStartOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintGuide_begin com.wirama.w.relativelayout1:layout_constraintGuide_begin}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintGuide_end com.wirama.w.relativelayout1:layout_constraintGuide_end}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintGuide_percent com.wirama.w.relativelayout1:layout_constraintGuide_percent}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHeight_default com.wirama.w.relativelayout1:layout_constraintHeight_default}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHeight_max com.wirama.w.relativelayout1:layout_constraintHeight_max}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHeight_min com.wirama.w.relativelayout1:layout_constraintHeight_min}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_bias com.wirama.w.relativelayout1:layout_constraintHorizontal_bias}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_chainStyle com.wirama.w.relativelayout1:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_weight com.wirama.w.relativelayout1:layout_constraintHorizontal_weight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintLeft_creator com.wirama.w.relativelayout1:layout_constraintLeft_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toLeftOf com.wirama.w.relativelayout1:layout_constraintLeft_toLeftOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toRightOf com.wirama.w.relativelayout1:layout_constraintLeft_toRightOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintRight_creator com.wirama.w.relativelayout1:layout_constraintRight_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintRight_toLeftOf com.wirama.w.relativelayout1:layout_constraintRight_toLeftOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintRight_toRightOf com.wirama.w.relativelayout1:layout_constraintRight_toRightOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintStart_toEndOf com.wirama.w.relativelayout1:layout_constraintStart_toEndOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintStart_toStartOf com.wirama.w.relativelayout1:layout_constraintStart_toStartOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintTop_creator com.wirama.w.relativelayout1:layout_constraintTop_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintTop_toBottomOf com.wirama.w.relativelayout1:layout_constraintTop_toBottomOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintTop_toTopOf com.wirama.w.relativelayout1:layout_constraintTop_toTopOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintVertical_bias com.wirama.w.relativelayout1:layout_constraintVertical_bias}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintVertical_chainStyle com.wirama.w.relativelayout1:layout_constraintVertical_chainStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintVertical_weight com.wirama.w.relativelayout1:layout_constraintVertical_weight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintWidth_default com.wirama.w.relativelayout1:layout_constraintWidth_default}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintWidth_max com.wirama.w.relativelayout1:layout_constraintWidth_max}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintWidth_min com.wirama.w.relativelayout1:layout_constraintWidth_min}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_editor_absoluteX com.wirama.w.relativelayout1:layout_editor_absoluteX}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_editor_absoluteY com.wirama.w.relativelayout1:layout_editor_absoluteY}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginBottom com.wirama.w.relativelayout1:layout_goneMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginEnd com.wirama.w.relativelayout1:layout_goneMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginLeft com.wirama.w.relativelayout1:layout_goneMarginLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginRight com.wirama.w.relativelayout1:layout_goneMarginRight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginStart com.wirama.w.relativelayout1:layout_goneMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginTop com.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintBaseline_creator
*/
public static final int ConstraintSet_layout_constraintBaseline_creator = 22;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintBaseline_toBaselineOf
*/
public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf = 23;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintBottom_creator
*/
public static final int ConstraintSet_layout_constraintBottom_creator = 24;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintBottom_toBottomOf
*/
public static final int ConstraintSet_layout_constraintBottom_toBottomOf = 25;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintBottom_toTopOf
*/
public static final int ConstraintSet_layout_constraintBottom_toTopOf = 26;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintDimensionRatio
*/
public static final int ConstraintSet_layout_constraintDimensionRatio = 27;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintEnd_toEndOf
*/
public static final int ConstraintSet_layout_constraintEnd_toEndOf = 28;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintEnd_toStartOf
*/
public static final int ConstraintSet_layout_constraintEnd_toStartOf = 29;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintGuide_begin
*/
public static final int ConstraintSet_layout_constraintGuide_begin = 30;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintGuide_end
*/
public static final int ConstraintSet_layout_constraintGuide_end = 31;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintGuide_percent
*/
public static final int ConstraintSet_layout_constraintGuide_percent = 32;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintHeight_default
*/
public static final int ConstraintSet_layout_constraintHeight_default = 33;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintHeight_max
*/
public static final int ConstraintSet_layout_constraintHeight_max = 34;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintHeight_min
*/
public static final int ConstraintSet_layout_constraintHeight_min = 35;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintHorizontal_bias
*/
public static final int ConstraintSet_layout_constraintHorizontal_bias = 36;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintHorizontal_chainStyle
*/
public static final int ConstraintSet_layout_constraintHorizontal_chainStyle = 37;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintHorizontal_weight
*/
public static final int ConstraintSet_layout_constraintHorizontal_weight = 38;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintLeft_creator
*/
public static final int ConstraintSet_layout_constraintLeft_creator = 39;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintLeft_toLeftOf
*/
public static final int ConstraintSet_layout_constraintLeft_toLeftOf = 40;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintLeft_toRightOf
*/
public static final int ConstraintSet_layout_constraintLeft_toRightOf = 41;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintRight_creator
*/
public static final int ConstraintSet_layout_constraintRight_creator = 42;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintRight_toLeftOf
*/
public static final int ConstraintSet_layout_constraintRight_toLeftOf = 43;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintRight_toRightOf
*/
public static final int ConstraintSet_layout_constraintRight_toRightOf = 44;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintStart_toEndOf
*/
public static final int ConstraintSet_layout_constraintStart_toEndOf = 45;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintStart_toStartOf
*/
public static final int ConstraintSet_layout_constraintStart_toStartOf = 46;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintTop_creator
*/
public static final int ConstraintSet_layout_constraintTop_creator = 47;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintTop_toBottomOf
*/
public static final int ConstraintSet_layout_constraintTop_toBottomOf = 48;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintTop_toTopOf
*/
public static final int ConstraintSet_layout_constraintTop_toTopOf = 49;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintVertical_bias
*/
public static final int ConstraintSet_layout_constraintVertical_bias = 50;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintVertical_chainStyle
*/
public static final int ConstraintSet_layout_constraintVertical_chainStyle = 51;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintVertical_weight
*/
public static final int ConstraintSet_layout_constraintVertical_weight = 52;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintWidth_default
*/
public static final int ConstraintSet_layout_constraintWidth_default = 53;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintWidth_max
*/
public static final int ConstraintSet_layout_constraintWidth_max = 54;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_constraintWidth_min
*/
public static final int ConstraintSet_layout_constraintWidth_min = 55;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_editor_absoluteX
*/
public static final int ConstraintSet_layout_editor_absoluteX = 56;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_editor_absoluteY
*/
public static final int ConstraintSet_layout_editor_absoluteY = 57;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_goneMarginBottom
*/
public static final int ConstraintSet_layout_goneMarginBottom = 58;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_goneMarginEnd
*/
public static final int ConstraintSet_layout_goneMarginEnd = 59;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_goneMarginLeft
*/
public static final int ConstraintSet_layout_goneMarginLeft = 60;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_goneMarginRight
*/
public static final int ConstraintSet_layout_goneMarginRight = 61;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout_goneMarginStart
*/
public static final int ConstraintSet_layout_goneMarginStart = 62;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.wirama.w.relativelayout1:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength com.wirama.w.relativelayout1:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color com.wirama.w.relativelayout1:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize com.wirama.w.relativelayout1:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.wirama.w.relativelayout1:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars com.wirama.w.relativelayout1:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness com.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.wirama.w.relativelayout1:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.wirama.w.relativelayout1:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers com.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass com.wirama.w.relativelayout1:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass com.wirama.w.relativelayout1: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.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionLayout
*/
public static final int MenuItem_actionLayout = 14;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 16;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow com.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:state_above_anchor
*/
public static final int PopupWindowBackgroundState_state_above_anchor = 0;
/** Attributes that can be used with a RecycleListView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecycleListView_paddingBottomNoButtons com.wirama.w.relativelayout1:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.wirama.w.relativelayout1:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f0100e0, 0x7f0100e1
};
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:paddingBottomNoButtons
*/
public static final int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon com.wirama.w.relativelayout1:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint com.wirama.w.relativelayout1:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon com.wirama.w.relativelayout1:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault com.wirama.w.relativelayout1:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout com.wirama.w.relativelayout1:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground com.wirama.w.relativelayout1:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint com.wirama.w.relativelayout1:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon com.wirama.w.relativelayout1:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon com.wirama.w.relativelayout1:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground com.wirama.w.relativelayout1:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout com.wirama.w.relativelayout1:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon com.wirama.w.relativelayout1: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,
0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5,
0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9,
0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed,
0x7f0100ee
};
/**
<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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:layout
*/
public static final int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack com.wirama.w.relativelayout1:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth com.wirama.w.relativelayout1:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding com.wirama.w.relativelayout1:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance com.wirama.w.relativelayout1:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding com.wirama.w.relativelayout1:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint com.wirama.w.relativelayout1:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode com.wirama.w.relativelayout1:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track com.wirama.w.relativelayout1:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint com.wirama.w.relativelayout1:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode com.wirama.w.relativelayout1: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, 0x7f0100ef,
0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3,
0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7,
0x7f0100f8, 0x7f0100f9
};
/**
<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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:showText
*/
public static final int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:splitTrack
*/
public static final int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:switchPadding
*/
public static final int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:thumbTint
*/
public static final int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:track
*/
public static final int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:trackTint
*/
public static final int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1: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.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription com.wirama.w.relativelayout1:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon com.wirama.w.relativelayout1:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd com.wirama.w.relativelayout1:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.wirama.w.relativelayout1:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft com.wirama.w.relativelayout1:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight com.wirama.w.relativelayout1:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart com.wirama.w.relativelayout1:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.wirama.w.relativelayout1:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo com.wirama.w.relativelayout1:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription com.wirama.w.relativelayout1:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight com.wirama.w.relativelayout1:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription com.wirama.w.relativelayout1:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon com.wirama.w.relativelayout1:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme com.wirama.w.relativelayout1:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle com.wirama.w.relativelayout1:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance com.wirama.w.relativelayout1:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor com.wirama.w.relativelayout1:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title com.wirama.w.relativelayout1:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin com.wirama.w.relativelayout1:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom com.wirama.w.relativelayout1:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd com.wirama.w.relativelayout1:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart com.wirama.w.relativelayout1:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop com.wirama.w.relativelayout1:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins com.wirama.w.relativelayout1:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance com.wirama.w.relativelayout1:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor com.wirama.w.relativelayout1: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,
0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd,
0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101,
0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105,
0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109,
0x7f01010a
};
/**
<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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:buttonGravity
*/
public static final int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:collapseIcon
*/
public static final int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:logoDescription
*/
public static final int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:navigationIcon
*/
public static final int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:popupTheme
*/
public static final int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:titleMargin
*/
public static final int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:titleMargins
*/
public static final int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart com.wirama.w.relativelayout1:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme com.wirama.w.relativelayout1: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, 0x7f01010b, 0x7f01010c,
0x7f01010d
};
/**
<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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1: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.wirama.w.relativelayout1:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.wirama.w.relativelayout1:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f01010e, 0x7f01010f
};
/**
<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.wirama.w.relativelayout1.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.wirama.w.relativelayout1:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.wirama.w.relativelayout1.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.wirama.w.relativelayout1:backgroundTintMode
*/
public static final int ViewBackgroundHelper_backgroundTintMode = 2;
/** Attributes that can be used with a ViewStubCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
</table>
@see #ViewStubCompat_android_id
@see #ViewStubCompat_android_inflatedId
@see #ViewStubCompat_android_layout
*/
public static final int[] ViewStubCompat = {
0x010100d0, 0x010100f2, 0x010100f3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:id
*/
public static final int ViewStubCompat_android_id = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#inflatedId}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:inflatedId
*/
public static final int ViewStubCompat_android_inflatedId = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:layout
*/
public static final int ViewStubCompat_android_layout = 1;
};
}
| [
"[email protected]"
]
| |
783bbf1b1494ab425f70c03c31c1a524ad3f7369 | 1627f39bdce9c3fe5bfa34e68c276faa4568bc35 | /src/segment_tree/lazy_propagation/Boj1395.java | bb69cca097ae0b431745c5399c061a09ac1e5e74 | [
"Apache-2.0"
]
| permissive | minuk8932/Algorithm_BaekJoon | 9ebb556f5055b89a5e5c8d885b77738f1e660e4d | a4a46b5e22e0ed0bb1b23bf1e63b78d542aa5557 | refs/heads/master | 2022-10-23T20:08:19.968211 | 2022-10-02T06:55:53 | 2022-10-02T06:55:53 | 84,549,122 | 3 | 3 | null | null | null | null | UTF-8 | Java | false | false | 3,014 | java | package segment_tree.lazy_propagation;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
/**
*
* @author exponential-e
* 백준 1395번: 스위치
*
* @see https://www.acmicpc.net/problem/1395/
*
*/
public class Boj1395 {
private static int INF = 1 << 20;
private static int start = INF / 2;
private static int[] tree = new int[INF];
private static boolean[] lazy = new boolean[INF];
private static final String NEW_LINE = "\n";
public static void main(String[] args) throws Exception{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int N = Integer.parseInt(st.nextToken());
int M = Integer.parseInt(st.nextToken());
StringBuilder sb = new StringBuilder();
while(M-- > 0){
st = new StringTokenizer(br.readLine());
int cmd = Integer.parseInt(st.nextToken());
int S = Integer.parseInt(st.nextToken()) - 1;
int T = Integer.parseInt(st.nextToken());
if(cmd == 0){
click(S, T, 1, 0, start);
}
else{
sb.append(status(S, T, 1, 0, start)).append(NEW_LINE);
}
}
System.out.println(sb.toString());
}
private static int[] makeSon(int node){
return new int[]{node * 2, node * 2 + 1};
}
private static void propagation(int node, int s, int e){
if(!lazy[node]) return;
if(node < start){
int[] son = makeSon(node);
lazy[son[0]] ^= true; // click
lazy[son[1]] ^= true;
int size = (e - s) / 2;
int sum = 0;
if(lazy[son[0]]) sum += size - tree[son[0]]; // if left side flipping
else sum += tree[son[0]];
if(lazy[son[1]]) sum += size - tree[son[1]];
else sum += tree[son[1]];
tree[node] = sum;
}
else{
tree[node] ^= 1;
}
lazy[node] = false;
}
private static void click(int s, int e, int node, int ns, int ne){
propagation(node, ns, ne);
if(e <= ns || ne <= s) return;
if(s <= ns && ne <= e){
lazy[node] ^= true; // clicked
propagation(node, ns, ne);
return;
}
int[] son = makeSon(node);
int mid = (ns + ne) / 2;
click(s, e, son[0], ns, mid);
click(s, e, son[1], mid, ne);
tree[node] = tree[son[0]] + tree[son[1]]; // get on switch
}
private static int status(int s, int e, int node, int ns, int ne){
propagation(node, ns, ne);
if(e <= ns || ne <= s) return 0;
if(s <= ns && ne <= e) return tree[node];
int[] son = makeSon(node);
int mid = (ns + ne) / 2;
return status(s, e, son[0], ns, mid) + status(s, e, son[1], mid, ne);
}
}
| [
"[email protected]"
]
| |
64f62031ccd5bd4edd4a8af049c44c783a4e37df | d900684f8af59b37e68d21cc9f4eebae77161c70 | /src/test/java/com/crowdin/cli/commands/actions/BundleListActionTest.java | 6c30c103d576d2e9502cf2820d71ff60af44461c | [
"MIT"
]
| permissive | crowdin/crowdin-cli | e71c05e806bbdf05e22053651c3478c044a2fe42 | eb0ed01b9469afb91832ed1b911a938237d43fdf | refs/heads/main | 2023-08-17T15:02:59.954578 | 2023-08-02T09:53:01 | 2023-08-02T09:53:01 | 76,255,942 | 175 | 60 | MIT | 2023-09-12T12:44:23 | 2016-12-12T12:49:05 | Java | UTF-8 | Java | false | false | 2,057 | java | package com.crowdin.cli.commands.actions;
import com.crowdin.cli.client.ClientBundle;
import com.crowdin.cli.commands.NewAction;
import com.crowdin.cli.commands.Outputter;
import com.crowdin.cli.properties.ProjectProperties;
import com.crowdin.cli.properties.PropertiesWithFiles;
import com.crowdin.client.bundles.model.Bundle;
import org.junit.jupiter.api.Test;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import static org.mockito.Mockito.*;
public class BundleListActionTest {
List<Bundle> standardList = Arrays.asList(new Bundle(), new Bundle());
List<Bundle> emptyList = Collections.emptyList();
Outputter out = Outputter.getDefault();
PropertiesWithFiles pb;
ClientBundle clientMock = mock(ClientBundle.class);
NewAction<ProjectProperties, ClientBundle> action;
@Test
public void test_standard() {
when(clientMock.listBundle())
.thenReturn(standardList);
action = new BundleListAction(false);
action.act(out, pb, clientMock);
verify(clientMock).listBundle();
verifyNoMoreInteractions(clientMock);
}
@Test
public void test_plainView() {
when(clientMock.listBundle())
.thenReturn(standardList);
action = new BundleListAction(true);
action.act(out, pb, clientMock);
verify(clientMock).listBundle();
verifyNoMoreInteractions(clientMock);
}
@Test
public void test_emptyList() {
when(clientMock.listBundle())
.thenReturn(emptyList);
action = new BundleListAction(false);
action.act(out, pb, clientMock);
verify(clientMock).listBundle();
verifyNoMoreInteractions(clientMock);
}
@Test
public void test_emptyList_plainView() {
when(clientMock.listBundle())
.thenReturn(emptyList);
action = new BundleListAction(true);
action.act(out, pb, clientMock);
verify(clientMock).listBundle();
verifyNoMoreInteractions(clientMock);
}
}
| [
"[email protected]"
]
| |
4f7eff7aa8cac5a3e35061c8e5e2317a3536ab45 | af7e52743ae40068a4f71aa788fc166ad8c6205c | /src/main/java/com/aero51/springbootepdapi/model/input/Category.java | c9a2dc04d415e6daccf87dd50e266da6a472e75b | []
| no_license | Aero51/Spring-Boot-Epg-Api | 8591c7ea566590b71e489dd18f9ad4769abf6a1c | 6a93dfb3dd436d2af3f404cb20d313354c48fd90 | refs/heads/master | 2023-05-07T09:45:51.324773 | 2021-06-04T11:02:34 | 2021-06-04T11:02:34 | 275,898,174 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,359 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.06.24 at 11:07:57 PM CEST
//
package com.aero51.springbootepdapi.model.input;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* <p>
* Java class for anonymous complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="lang" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = { "content" })
@XmlRootElement(name = "category")
public class Category {
@XmlValue
protected String content;
@XmlAttribute(name = "lang", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NCName")
protected String lang;
/**
* Gets the value of the content property.
*
* @return possible object is {@link String }
*
*/
public String getContent() {
return content;
}
/**
* Sets the value of the content property.
*
* @param value allowed object is {@link String }
*
*/
public void setContent(String value) {
this.content = value;
}
/**
* Gets the value of the lang property.
*
* @return possible object is {@link String }
*
*/
public String getLang() {
return lang;
}
/**
* Sets the value of the lang property.
*
* @param value allowed object is {@link String }
*
*/
public void setLang(String value) {
this.lang = value;
}
}
| [
"[email protected]"
]
| |
56b8041be0d2a8faa70a689432a79c014745722f | 44fa72d6c1162f590d7b8f4c7ec3a29702842466 | /src/main/java/com/senacor/reactile/gateway/commands/UserFindCommandFactory.java | 8353202b2ca156da3dc970ef20f12b2aef5508a7 | []
| no_license | senacor/reactive-server | 2b7781bb1889460ab5085e6c4052a4f016bce786 | 29ce5282c20b3976b2f5c4fbc2dd233e2414f574 | refs/heads/master | 2021-01-10T21:49:38.323885 | 2015-11-20T13:05:50 | 2015-11-20T13:05:50 | 44,438,463 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 212 | java | package com.senacor.reactile.gateway.commands;
import java.util.Map;
/**
* Created by swalter on 23.10.15.
*/
public interface UserFindCommandFactory {
UserFindCommand create(Map<String,String> map);
}
| [
"[email protected]"
]
| |
5ca6a68bcb9c99fc24d16d948bdbb8abe537bc46 | c66577879665e15f461a2d68a9a3c759c890bdc6 | /src/com/pageData/HomePageData.java | 49816dee6ae7fd7be86e114d55efff1c699e2cdb | []
| no_license | xiaofeier312/SeleniumSiteTest | 5246e4a9e8ffb5c85892f6fa804f8fefb4819660 | d24e2c542fb34ac50b551bf7b728fbf64333641b | refs/heads/master | 2020-04-05T23:48:41.119572 | 2014-04-04T09:16:24 | 2014-04-04T09:16:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 210 | java | package com.pageData;
public class HomePageData {
//Data of home page
public static String homeLink = "http://www.seleniumhq.org";
public static String homeTile = "Selenium - Web Browser Automation";
}
| [
"[email protected]"
]
| |
17748bb210e0be33fcd39b3f36448afebaa3de70 | 9b5778e8d4ef7b0113abe717ea6b3ebc8c4f49f0 | /MueCreation/src/Fonction.java | f96ce69a5a2a50e1d4a33ed93e22bc7e783b6fd1 | []
| no_license | MuertosQc/MueCreation | c3df6c6fbc887220c4d207e62502e8b8c0466077 | 7f26d9c9d319623450dca96559726e63bcfcf3a5 | refs/heads/main | 2023-04-02T11:07:00.648341 | 2021-04-07T01:18:59 | 2021-04-07T01:18:59 | 355,374,133 | 0 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 3,976 | java | import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import javafx.animation.PauseTransition;
import javafx.animation.TranslateTransition;
import javafx.event.EventHandler;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.image.Image;
import javafx.scene.input.MouseEvent;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
import javafx.util.Duration;
public class Fonction {
ConnexionController cc;
Login login;
AccueilController AC;
public Fonction(ConnexionController cc) {
this.cc = cc;
}
public Fonction(AccueilController AC) {
this.AC = AC;
}
private double xOffset = 0;
private double yOffset = 0;
String RequeteSql; // Utilisé pour tout requête SQL
Connection ConnexionDB; // Utilisé pour établir connexion
ResultSet rs;
public void Connexion() {
try {
Class.forName("com.mysql.jdbc.Driver");
ConnexionDB = DriverManager.getConnection("jdbc:mysql://localhost:3306/construction", "root", "");
RequeteSql = "Select * from login where Username=? and Password=?";
PreparedStatement pst = ConnexionDB.prepareStatement(RequeteSql);
pst.setString(1, cc.Tb_Username.getText());
pst.setString(2, cc.Tb_Password.getText());
rs = pst.executeQuery();
if (cc.Tb_Username.getText().isEmpty() || cc.Tb_Password.getText().isEmpty()) {
cc.LblMessage.setVisible(true);
PauseTransition visiblePause = new PauseTransition(
Duration.seconds(3)
);
visiblePause.setOnFinished(
event -> cc.LblMessage.setVisible(false)
);
visiblePause.play();
} else {
if (rs.next()) {
// Il manque le rs.getString(2) car on ne récupère pas le mot de passe
login = new Login(rs.getString(1), rs.getString(2));
try {
FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("Accueil.fxml"));
Parent root1 = (Parent) fxmlLoader.load();
AccueilController AC = fxmlLoader.getController();
//AC.setInfo(login);
Scene scene = new Scene(root1);
Stage stage = new Stage();
stage.getIcons().add(new Image("Photos/M50.png"));
scene.getStylesheets().add("Style.css");
stage.initStyle(StageStyle.UNDECORATED);
root1.setOnMousePressed(new EventHandler<MouseEvent>() {
@Override
public void handle(MouseEvent event) {
xOffset = event.getSceneX();
yOffset = event.getSceneY();
}
});
root1.setOnMouseDragged(new EventHandler<MouseEvent>() {
@Override
public void handle(MouseEvent event) {
stage.setX(event.getScreenX() - xOffset);
stage.setY(event.getScreenY() - yOffset);
}
});
stage.setScene(scene);
stage.setTitle("");
// AC.LblMsgBienvenue.setText("Bienvenue " + AC.NomAdministrateur );
// TranslateTransition ts = new TranslateTransition(Duration.seconds(1), AC.PaneBienvenue);
// ts.setFromY(0);
// ts.setToY(-80);
// ts.play();
//
// AC.PaneBienvenue.setVisible(true);
// PauseTransition visiblePause = new PauseTransition(
// Duration.seconds(3)
// );
// visiblePause.setOnFinished(
// event -> AC.PaneBienvenue.setVisible(false)
// );
// visiblePause.play();
stage.show();
Stage stage1 = (Stage) cc.Btn_Connexion.getScene().getWindow();
stage1.close();
} catch (Exception e) {
e.printStackTrace();
}
} else {
cc.LblMessage.setText("Mauvais mot de passe ou Username");
cc.LblMessage.setVisible(true);
PauseTransition visiblePause = new PauseTransition(
Duration.seconds(3)
);
visiblePause.setOnFinished(
event -> cc.LblMessage.setVisible(false)
);
visiblePause.play();
}
}
} catch (Exception e) {
System.out.println(e);
}
}
}
| [
"[email protected]"
]
| |
c368f3a422db7cb0c683558b3d65b597ff1a4c57 | 22e3736f49c7cda093a7f7768efde2a50e702d99 | /projects/core/src/main/java/am/app/ontology/instance/datasets/DBPediaApiInstanceDataset.java | acc5c3c3243f9d4663c1f45702cd37664d519028 | [
"NCSA"
]
| permissive | agreementmaker/agreementmaker | 66e5b96573da5845b2cfdb9bb63c7080fbccff27 | 4c5504573a45391c1d635c19b3e57435d7ed3433 | refs/heads/master | 2021-06-16T22:14:02.830469 | 2021-03-01T05:09:56 | 2021-03-01T05:09:56 | 41,654,345 | 35 | 27 | NOASSERTION | 2021-03-01T05:07:31 | 2015-08-31T03:43:06 | Java | UTF-8 | Java | false | false | 6,211 | java | package am.app.ontology.instance.datasets;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.StringReader;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;
import am.AMException;
import am.app.ontology.instance.Instance;
import am.app.ontology.instance.InstanceDataset;
import am.app.ontology.instance.endpoint.SparqlEndpoint;
import am.utility.HTTPUtility;
/**
* An instance dataset implementation based on the DBpedia API
*
* @author federico
*
*/
public class DBPediaApiInstanceDataset implements InstanceDataset{
String endpoint = "http://lookup.dbpedia.org/api/search.asmx/KeywordSearch";
HashMap<String, String> cache;
String xmlCacheFilename = "dbpediaXmlCache";
//String rdfCacheFilename = "dbpediaRDFCache";
SparqlEndpoint sparqlEndpoint;
public DBPediaApiInstanceDataset(){
loadCache();
sparqlEndpoint = new SparqlEndpoint("http://dbpedia.org/sparql", "dbpediaSingleLocationsCache");
}
@Override public long size() { return -1; }
@Override
public List<Instance> getCandidateInstances(String searchTerm, String type)
throws AMException {
System.out.println("API is providing results for: searchString=" + searchTerm + " type=" + type);
List<Instance> instances = new ArrayList<Instance>();
//http://lookup.dbpedia.org/api/search.asmx/KeywordSearch?QueryClass=place&QueryString=Bilbao
try {
searchTerm = URLEncoder.encode(searchTerm, "UTF-8");
} catch (UnsupportedEncodingException e) {
System.err.println("Problems encoding the url");
return instances;
}
String url = endpoint + "?QueryString=" + searchTerm + "&MaxHits=20";
if(type != null)
url += "&QueryClass=" + type;
String xml = null;
//System.out.println("Querying: " + url);
xml = cache.get(url);
if(xml == null){
System.out.println(url);
try {
xml = HTTPUtility.getPage(url);
} catch (IOException e) {
System.err.println("Problems getting the page");
return instances;
}
}
//System.out.println("xml:" + xml);
cache.put(url, xml);
DocumentBuilderFactory dbf =
DocumentBuilderFactory.newInstance();
dbf.setNamespaceAware(true);
dbf.setIgnoringComments(true);
dbf.setIgnoringElementContentWhitespace(true);
Document doc = null;
try {
DocumentBuilder db = dbf.newDocumentBuilder();
StringReader reader = new StringReader(xml);
InputSource inputSource = new InputSource( reader );
doc = db.parse(inputSource);
} catch (Exception e) {
e.printStackTrace();
return instances;
}
NodeList results = doc.getElementsByTagName("Result");
NodeList children;
Node result;
for (int i = 0; i < results.getLength(); i++) {
result = results.item(i);
children = result.getChildNodes();
Instance instance = new Instance(null, null);
for (int j = 0; j < children.getLength(); j++) {
Node child = children.item(j);
String name = child.getNodeName();
Element el;
if(name.equals("Label")){
el = (Element)child;
instance.setProperty("label", el.getTextContent());
}
else if(name.equals("URI")){
el = (Element)child;
instance.setURI(el.getTextContent());
}
else if(name.equals("Description")){
el = (Element)child;
instance.setProperty("comment", el.getTextContent());
}
// else if(name.equals("Classes")){
// NodeList classes = child.getChildNodes();
//
// for (int k = 0; k < classes.getLength(); k++) {
// //classes.
// }
// }
}
instances.add(instance);
//System.out.println(result);
}
//System.out.println(results);
// for (int i = 0; i < instances.size(); i++) {
// List<Statement> stmts = sparqlEndpoint.singleEntityQuery(instances.get(i).getUri());
// instances.get(i).setStatements(stmts);
// }
return instances;
}
@Override
public boolean isIterable() {
return false;
}
/**
* @return Will always return null since this dataset is not iterable.
*
* @see {@link #isIterable()}
*/
@Override
public Iterator<Instance> getInstances() throws AMException {
return null;
}
@Override
public Instance getInstance(String uri) throws AMException {
// TODO Auto-generated method stub
return null;
}
@Override
public List<Instance> getInstances(String type, int limit)
throws AMException {
// TODO Auto-generated method stub
return null;
}
public void persistCache() throws FileNotFoundException, IOException{
System.out.println("Writing to file...");
ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream(xmlCacheFilename));
out.writeObject(cache);
out.close();
System.out.println("Done");
sparqlEndpoint.persistCache();
}
private void loadCache() {
FileInputStream fis = null;
ObjectInputStream in;
Object input = null;
try { fis = new FileInputStream(xmlCacheFilename); }
catch (FileNotFoundException e1) {
System.err.println("The cache file doesn't exist");
cache = new HashMap<String, String>();
return;
}
try {
in = new ObjectInputStream(fis);
input = in.readObject();
cache = (HashMap<String, String>) input;
} catch (IOException e1) {
System.err.println("The cache will be empty");
cache = new HashMap<String, String>();
return;
} catch (ClassNotFoundException e) {
System.err.println("The cache will be empty");
cache = new HashMap<String, String>();
return;
}
}
}
| [
"[email protected]"
]
| |
b3c37cf69b39d85bb3ad2f9d8cd3017443e27ded | c77fd7caef83aaf13308de6f1cff5fecdb99d10e | /app/src/main/java/com/match/android/Base/ActivityCollector.java | 491af7a15d173a899a62f2b25407f20cb0cef0d4 | [
"Apache-2.0"
]
| permissive | aptkid/decoy | 22ce090a1c5bc2a2c952d1a7122935a44d67da3a | 7f802da829c5f28c0ec69474af39a5c538747b3a | refs/heads/master | 2021-06-25T06:56:33.863660 | 2017-09-06T04:14:11 | 2017-09-06T04:14:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 658 | java | package com.match.android.Base;
import android.app.Activity;
import java.util.ArrayList;
import java.util.List;
/**
* Created by 花花不花花 on 2017/5/7.
*/
public class ActivityCollector {
public static List<Activity> activities = new ArrayList<>();
public static void removeActivity(Activity activity){
activities.remove(activity);
}
public static void addActivity(Activity activity){
activities.add(activity);
}
public static void finishAll(){
for (Activity activity : activities){
if (!activity.isFinishing()){
activity.finish();
}
}
}
}
| [
"[email protected]"
]
| |
e2771a88e945a4a5dc2b13b74e8ee2f7b4fcb164 | 60c0067fdfa849cdb87f5585b4cf188cafc8999c | /src/main/java/com/domain/Location.java | 4e155adcd8bfee36c9c4ae50ca7f66b6d74658cd | []
| no_license | Pushkar-Singh-Rawat/spring-rest-client-Demo | 62af06f3af2c6e5014d45e4c16653dfb86975052 | 6f1413ee433464eac9125442bfcf9170c7e8b584 | refs/heads/master | 2020-03-13T12:01:29.661005 | 2018-04-29T11:34:54 | 2018-04-29T11:34:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,924 | java |
package com.domain;
import java.util.HashMap;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"street",
"city",
"state",
"postcode"
})
public class Location {
@JsonProperty("street")
private String street;
@JsonProperty("city")
private String city;
@JsonProperty("state")
private String state;
@JsonProperty("postcode")
private String postcode;
@JsonIgnore
private Map<String, Object> additionalProperties = new HashMap<String, Object>();
@JsonProperty("street")
public String getStreet() {
return street;
}
@JsonProperty("street")
public void setStreet(String street) {
this.street = street;
}
@JsonProperty("city")
public String getCity() {
return city;
}
@JsonProperty("city")
public void setCity(String city) {
this.city = city;
}
@JsonProperty("state")
public String getState() {
return state;
}
@JsonProperty("state")
public void setState(String state) {
this.state = state;
}
@JsonProperty("postcode")
public String getPostcode() {
return postcode;
}
@JsonProperty("postcode")
public void setPostcode(String postcode) {
this.postcode = postcode;
}
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}
| [
"[email protected]"
]
| |
2b6607bcc0cc9718e779691e7071325991e3985a | c04002191868b70fcb136295cdec4c54360a5567 | /src/main/java/com/fsabino/javacodingtips/patterns_of_design/creational/builder/pluralsight/LunchOrder.java | b2c94f0e768dd279540e864f5ec0c91b53fb8a60 | []
| no_license | fjsabino022/javatips | 01d85cddfbc7120668021e284182731cff2ce26a | b1a429f7ab5770c8af1dea2afde542584a982891 | refs/heads/master | 2022-07-07T02:11:11.650642 | 2022-02-13T18:26:04 | 2022-02-13T18:26:04 | 105,532,236 | 0 | 0 | null | 2020-10-13T22:37:41 | 2017-10-02T12:35:28 | Java | UTF-8 | Java | false | false | 1,461 | java | package com.fsabino.javacodingtips.patterns_of_design.creational.builder.pluralsight;
/**
* En este caso una vez que creamos el objeto LunchOrder
* el mismo es inmutable porque no existen los metodos "set" de las propiedades
* */
public class LunchOrder {
public static class Builder {
// the variables are mutable
private String bread;
private String condiments;
private String meat;
private String dressing;
public Builder setCondiments(String condiments) {
this.condiments = condiments;
return this;
}
public Builder setMeat(String meat) {
this.meat = meat;
return this;
}
public Builder setBread(String bread) {
this.bread = bread;
return this;
}
public Builder setDressing(String dressing) {
this.dressing = dressing;
return this;
}
public LunchOrder build() {
return new LunchOrder(this);
}
}
// inmutable variables
private final String bread;
private final String condiments;
private final String meat;
private final String dressing;
private LunchOrder(Builder builder) {
this.bread = builder.bread;
this.condiments = builder.condiments;
this.dressing = builder.dressing;
this.meat = builder.meat;
}
// only getters because the variables are inmutable
public String getBread() {
return bread;
}
public String getCondiments() {
return condiments;
}
public String getMeat() {
return meat;
}
public String getDressing() {
return dressing;
}
}
| [
"[email protected]"
]
| |
bb3828acd33cb693c94608561f8232a85e7c835c | 0165c6d31e500238d213469141ad01939a9c93d3 | /base/src/nju/software/nio/ChannelBase.java | b1cefc49aab8e809cb584f2e834fdd38ca9901ac | []
| no_license | Xiejiayun/homework | 76dcf0ab1d99f6449d95814a4ddf21eb0fc628d7 | e76445cab46bdb08992eb6a9b59357efc59f7d4e | refs/heads/master | 2021-01-10T14:40:13.601256 | 2016-01-04T13:14:27 | 2016-01-04T13:14:27 | 48,229,807 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,638 | java | package nju.software.nio;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.*;
/**
* Using the channels in nio package
* Created by Xie on 2016/1/2.
*/
public class ChannelBase {
public static void main(String[] args) {
ChannelBase channelBase = new ChannelBase();
channelBase.writeFileChannel();
channelBase.writeFileChannelFromStream();
// channelBase.readFileChannel();
// channelBase.transferBetweenChannels();
}
public void gather(FileChannel channel, ByteBuffer[] byteBuffers) {
try {
channel.write(byteBuffers);
} catch (IOException e) {
e.printStackTrace();
}
}
public void scatter (FileChannel channel, ByteBuffer[] byteBuffers) {
try {
channel.read(byteBuffers);
} catch (IOException e) {
e.printStackTrace();
}
}
public void readSocketChannel() {
try {
SocketChannel socketChannel = SocketChannel.open();
socketChannel.connect(new InetSocketAddress("127.0.0.1", 6666));
ServerSocketChannel serverSocketChannel = ServerSocketChannel.open();
serverSocketChannel.socket().bind(new InetSocketAddress(6666));
DatagramChannel datagramChannel = DatagramChannel.open();
datagramChannel.connect(new InetSocketAddress("127.0.0.1", 6666)).socket().bind(new InetSocketAddress(6666));
} catch (IOException e) {
e.printStackTrace();
}
}
public void writeFileChannelFromStream() {
try {
FileInputStream fileInputStream = new FileInputStream("from.txt");
FileChannel fileChannel = fileInputStream.getChannel();
String str = "hello xjy!";
ByteBuffer byteBuffer = ByteBuffer.allocate(66);
byteBuffer.clear();
byteBuffer.put(str.getBytes());
byteBuffer.flip();
while (byteBuffer.hasRemaining()) {
fileChannel.write(byteBuffer);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
public void readFileChannel() {
try (RandomAccessFile randomAccessFile = new RandomAccessFile("demo.txt", "rw");
FileChannel fileChannel = randomAccessFile.getChannel();
) {
printChannelData(fileChannel);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
public void writeFileChannel() {
try (RandomAccessFile randomAccessFile = new RandomAccessFile("from.txt", "rw");
FileChannel fileChannel = randomAccessFile.getChannel();
) {
String str = "hello world!";
ByteBuffer byteBuffer = ByteBuffer.allocate(66);
byteBuffer.clear();
byteBuffer.put(str.getBytes());
byteBuffer.flip();
while (byteBuffer.hasRemaining()) {
fileChannel.write(byteBuffer);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
public void transferBetweenChannels() {
try (RandomAccessFile fromFile = new RandomAccessFile("from.txt", "rw");
FileChannel fromChannel = fromFile.getChannel();
RandomAccessFile toFile = new RandomAccessFile("to.txt", "rw");
FileChannel toChannel = toFile.getChannel();
) {
long position = 0;
long count = fromChannel.size();
fromChannel.transferTo(position, count, toChannel);
printChannelData(toChannel);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
private void printChannelData(FileChannel toChannel) throws IOException {
ByteBuffer byteBuffer = ByteBuffer.allocate(66);
byteBuffer.clear();
toChannel.read(byteBuffer);
// byteBuffer.flip();
StringBuilder stringBuilder = new StringBuilder("");
while (byteBuffer.hasRemaining()) {
char ch = (char) byteBuffer.get();
stringBuilder.append(ch);
}
System.out.println(stringBuilder.toString());
}
}
| [
"[email protected]"
]
| |
f00a7603c7f1e88fd5c6b26019ad4c813859e753 | 4b0bf4787e89bcae7e4759bde6d7f3ab2c81f849 | /aliyun-java-sdk-ecs/src/main/java/com/aliyuncs/ecs/model/v20140526/DescribePhysicalConnectionsResponse.java | 55f7a6bd0db4c9425e6bffbecb271325717d876c | [
"Apache-2.0"
]
| permissive | aliyun/aliyun-openapi-java-sdk | a263fa08e261f12d45586d1b3ad8a6609bba0e91 | e19239808ad2298d32dda77db29a6d809e4f7add | refs/heads/master | 2023-09-03T12:28:09.765286 | 2023-09-01T09:03:00 | 2023-09-01T09:03:00 | 39,555,898 | 1,542 | 1,317 | NOASSERTION | 2023-09-14T07:27:05 | 2015-07-23T08:41:13 | Java | UTF-8 | Java | false | false | 5,835 | java | /*
* 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.aliyuncs.ecs.model.v20140526;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ecs.transform.v20140526.DescribePhysicalConnectionsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribePhysicalConnectionsResponse extends AcsResponse {
private String requestId;
private Integer pageNumber;
private Integer pageSize;
private Integer totalCount;
private List<PhysicalConnectionType> physicalConnectionSet;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<PhysicalConnectionType> getPhysicalConnectionSet() {
return this.physicalConnectionSet;
}
public void setPhysicalConnectionSet(List<PhysicalConnectionType> physicalConnectionSet) {
this.physicalConnectionSet = physicalConnectionSet;
}
public static class PhysicalConnectionType {
private String adLocation;
private String creationTime;
private String status;
private String type;
private String portNumber;
private String circuitCode;
private String spec;
private Long bandwidth;
private String description;
private String portType;
private String enabledTime;
private String businessStatus;
private String lineOperator;
private String name;
private String redundantPhysicalConnectionId;
private String peerLocation;
private String accessPointId;
private String physicalConnectionId;
public String getAdLocation() {
return this.adLocation;
}
public void setAdLocation(String adLocation) {
this.adLocation = adLocation;
}
public String getCreationTime() {
return this.creationTime;
}
public void setCreationTime(String creationTime) {
this.creationTime = creationTime;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getPortNumber() {
return this.portNumber;
}
public void setPortNumber(String portNumber) {
this.portNumber = portNumber;
}
public String getCircuitCode() {
return this.circuitCode;
}
public void setCircuitCode(String circuitCode) {
this.circuitCode = circuitCode;
}
public String getSpec() {
return this.spec;
}
public void setSpec(String spec) {
this.spec = spec;
}
public Long getBandwidth() {
return this.bandwidth;
}
public void setBandwidth(Long bandwidth) {
this.bandwidth = bandwidth;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getPortType() {
return this.portType;
}
public void setPortType(String portType) {
this.portType = portType;
}
public String getEnabledTime() {
return this.enabledTime;
}
public void setEnabledTime(String enabledTime) {
this.enabledTime = enabledTime;
}
public String getBusinessStatus() {
return this.businessStatus;
}
public void setBusinessStatus(String businessStatus) {
this.businessStatus = businessStatus;
}
public String getLineOperator() {
return this.lineOperator;
}
public void setLineOperator(String lineOperator) {
this.lineOperator = lineOperator;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getRedundantPhysicalConnectionId() {
return this.redundantPhysicalConnectionId;
}
public void setRedundantPhysicalConnectionId(String redundantPhysicalConnectionId) {
this.redundantPhysicalConnectionId = redundantPhysicalConnectionId;
}
public String getPeerLocation() {
return this.peerLocation;
}
public void setPeerLocation(String peerLocation) {
this.peerLocation = peerLocation;
}
public String getAccessPointId() {
return this.accessPointId;
}
public void setAccessPointId(String accessPointId) {
this.accessPointId = accessPointId;
}
public String getPhysicalConnectionId() {
return this.physicalConnectionId;
}
public void setPhysicalConnectionId(String physicalConnectionId) {
this.physicalConnectionId = physicalConnectionId;
}
}
@Override
public DescribePhysicalConnectionsResponse getInstance(UnmarshallerContext context) {
return DescribePhysicalConnectionsResponseUnmarshaller.unmarshall(this, context);
}
}
| [
"[email protected]"
]
| |
4565e662e0f964afd48c160d58956f94e848e130 | 1481738da43fdc0433f204598229a2d084780b92 | /Proyect/Team 3 BackSquad Programming/03 Codigo/FastPay/src/ec/edu/espe/FastPay/view/FastPay.java | dd54ffb75be93d1b001e90e442630f38204138ef | []
| no_license | Stalin0/P.O.O_2963 | 45a7dd4d18776bd04d86eba3e100b2132166f354 | 471ae55469ad9ec9339ec29925beaf7e2f77997b | refs/heads/master | 2020-08-21T10:00:53.651756 | 2020-01-28T15:05:12 | 2020-01-28T15:05:12 | 216,136,066 | 0 | 0 | null | 2020-01-25T23:53:16 | 2019-10-19T02:08:48 | Java | UTF-8 | Java | false | false | 1,123 | java | package ec.edu.espe.FastPay.view;
import com.mongodb.MongoClient;
import com.mongodb.client.MongoDatabase;
import ec.edu.espe.FastPay.controller.Entry;
import java.util.List;
import java.util.Scanner;
public class FastPay {
public static void main(String[] args) {
Inicio inicio = new Inicio();
inicio.setVisible(true);
//Connecting With Server Please add the external jar file first
MongoClient mongoClient = new MongoClient( "localhost" , 27017 );
System.out.println("server connection successfully done");
//Connecting with database
MongoDatabase dbs = mongoClient.getDatabase("test");
System.out.println("Connect to database successfully");
System.out.println("Database Name"+dbs.getName());
// To get all database names
List<String> dbNames=mongoClient.getDatabaseNames();
System.out.println(dbNames);
//Drop Database
mongoClient.dropDatabase("newDb");
dbNames=mongoClient.getDatabaseNames();
System.out.println(dbNames);
}
}
| [
"[email protected]"
]
| |
7e44f1f0dc5bff526d0ccb6829af997f4068125b | 21d748e3318633635b78e0365726171e23b5562c | /sql-dsl/src/main/java/com/neaterbits/query/sql/dsl/api/Classic_Collector_MapToResult_Single.java | 63a5b72362a41ec44dc405bdd6c8a5f8bbc3a425 | []
| no_license | neaterbits/query | ee9419737e39c53261c01fd31d0679561a303f15 | eaec0deaa91e90ec44402af6fbba41ed9c2bf1a9 | refs/heads/master | 2022-05-04T02:21:42.605462 | 2017-09-10T14:49:35 | 2017-09-10T14:49:35 | 70,929,750 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 13,121 | java | package com.neaterbits.query.sql.dsl.api;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.sql.Time;
import java.sql.Timestamp;
import java.util.Calendar;
import java.util.Date;
import java.util.function.Supplier;
final class Classic_Collector_MapToResult_Single<MODEL, RESULT>
extends Classic_Collector_MapToResult_Base<
MODEL,
RESULT,
IClassicResult_Mapped_Single_Named<MODEL, RESULT>,
// single-entry so non result processing
ISQLLogical_WhereOrJoin_SingleResult_Named_And_Function<MODEL, RESULT>,
IClassicLogical_WhereOrJoin_SingleResult_Alias_And_Function<MODEL, RESULT>,
Void
>
implements IClassicResult_Mapped_Single_All<MODEL, RESULT>,
IClassicResult_Mapped_Single_Named<MODEL, RESULT>,
IClassicResult_Mapped_Single_Alias<MODEL, RESULT> {
Classic_Collector_MapToResult_Single(ClassicSelect select, Class<?> resultType, ModelCompiler<MODEL> modelCompiler) {
super(select, new CollectedQueryResult_Mapped_Single(resultType), modelCompiler);
}
/*
@Override
public <T, R> ISharedResultMapperTo<MODEL, RESULT, R, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>
map(Function<T, R> getter) {
return new ResultMapperToImpl<>(getter, this);
}
*/
@Override
public <R> ISharedMap_To<MODEL, RESULT, R, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>> map(Supplier<R> getter) {
return new ResultMapperToImpl<>(new FieldExpression(getter), this);
}
@Override
ISQLLogical_WhereOrJoin_SingleResult_Named_And_Function<MODEL, RESULT> createWhereOrJoinForNamed() {
return new Classic_Collector_WhereOrJoin_SingleResult_Named<>(getThisInitial());
}
@Override
IClassicLogical_WhereOrJoin_SingleResult_Alias_And_Function<MODEL, RESULT> createWhereOrJoinForAlias() {
return new Classic_Collector_WhereOrJoin_SingleResult_Alias<>(getThisInitial());
}
@Override
CollectedQueryResult getCollectedQueryResult() {
throw new UnsupportedOperationException("Should never be invoked since passes " + CollectedQueryResult.class.getSimpleName() + " in constructor");
}
@Override
public ISharedMap_Functions_All_Undecided<
MODEL,
RESULT,
IClassicResult_Mapped_Single_Named<MODEL, RESULT>,
IClassicResult_Mapped_Single_Alias<MODEL, RESULT>, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>,
ISharedMap_OpsAndTo_Comparable_Named<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Named<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Named<MODEL, RESULT, Integer, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Named<MODEL, RESULT, Byte, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Named<MODEL, RESULT, Short, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Named<MODEL, RESULT, Integer, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Named<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Named<MODEL, RESULT, BigInteger, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Named<MODEL, RESULT, Float, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Named<MODEL, RESULT, Double, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Named<MODEL, RESULT, BigDecimal, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_String_Named<MODEL, RESULT, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Named<MODEL, RESULT, Date, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Named<MODEL, RESULT, Calendar, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_SQLTimeType_Named<MODEL, RESULT, java.sql.Date, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_SQLTimeType_Named<MODEL, RESULT, Time, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_SQLTimeType_Named<MODEL, RESULT, Timestamp, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Integer, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Byte, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Short, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Integer, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, BigInteger, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Float, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Double, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, BigDecimal, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, String, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Date, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Calendar, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, java.sql.Date, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Time, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Timestamp, IClassicResult_Mapped_Single_Named<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Alias<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Alias<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Alias<MODEL, RESULT, Integer, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Alias<MODEL, RESULT, Byte, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Alias<MODEL, RESULT, Short, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Alias<MODEL, RESULT, Integer, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Alias<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Alias<MODEL, RESULT, BigInteger, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Alias<MODEL, RESULT, Float, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Alias<MODEL, RESULT, Double, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Alias<MODEL, RESULT, BigDecimal, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_String_Alias<MODEL, RESULT, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Alias<MODEL, RESULT, Date, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Alias<MODEL, RESULT, Calendar, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_SQLTimeType_Alias<MODEL, RESULT, java.sql.Date, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_SQLTimeType_Alias<MODEL, RESULT, Time, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_SQLTimeType_Alias<MODEL, RESULT, Timestamp, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Integer, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Byte, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Short, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Integer, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, BigInteger, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Float, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Double, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, BigDecimal, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, String, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Date, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Calendar, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, java.sql.Date, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Time, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Timestamp, IClassicResult_Mapped_Single_Alias<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Undecided<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Undecided<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Undecided<MODEL, RESULT, Integer, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Undecided<MODEL, RESULT, Byte, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Undecided<MODEL, RESULT, Short, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Undecided<MODEL, RESULT, Integer, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Undecided<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Undecided<MODEL, RESULT, BigInteger, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Undecided<MODEL, RESULT, Float, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Undecided<MODEL, RESULT, Double, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Undecided<MODEL, RESULT, BigDecimal, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_String_Undecided<MODEL, RESULT, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Undecided<MODEL, RESULT, Date, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_Comparable_Undecided<MODEL, RESULT, Calendar, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_SQLTimeType_Undecided<MODEL, RESULT, java.sql.Date, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_SQLTimeType_Undecided<MODEL, RESULT, Time, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_OpsAndTo_SQLTimeType_Undecided<MODEL, RESULT, Timestamp, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Integer, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Byte, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Short, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Integer, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Long, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, BigInteger, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Float, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Double, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, BigDecimal, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, String,IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Date, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Calendar, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, java.sql.Date, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Time, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>,
ISharedMap_To<MODEL, RESULT, Timestamp, IClassicResult_Mapped_Single_Undecided<MODEL, RESULT>>
> map() {
throw new UnsupportedOperationException("TODO - map to result for classic");
}
}
| [
"[email protected]"
]
| |
a3889577d4bc3a90daae6e5acb0ed2bdfc806110 | 2e7dd960506be0fb6888213ce0150afbfad02bb8 | /src/test/java/br/com/notrash/notrash/service/UsuarioServiceTest.java | 8d668577fde4676124051e7287488fa4ee3428d4 | []
| no_license | lucas-jobs/notrash | 81df2f3aa28e41a6650f450befaebac7f34a58c6 | 4e6e2a2c174caca9b166620c9d3b6b809e02c556 | refs/heads/master | 2020-07-30T11:44:13.862350 | 2019-10-10T15:03:05 | 2019-10-10T15:03:05 | 210,221,406 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 279 | java | package br.com.notrash.notrash.service;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class UsuarioServiceTest {
}
| [
"[email protected]"
]
| |
2b3381cd4601d28a909085553a2bbf1e2c168db6 | c824c03bc9857525edeea7df02482f206ef87f2e | /src/main/java/net/perigrine3/cyberware2/Cyberware2ModElements.java | bf0f1b9378186a66b548d3da35eddb96196b6dcd | []
| no_license | perigrine333/Cyberware.exe | 0bed42e79d525aa2c799bd3167b9a92cfe4dba43 | 5e0b19fe0eeb1623f8e6aa7664de8853d346907b | refs/heads/master | 2023-06-23T09:52:38.073403 | 2021-07-21T14:06:13 | 2021-07-21T14:06:13 | 388,127,344 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,335 | java | /*
* MCreator note:
*
* This file is autogenerated to connect all MCreator mod elements together.
*
*/
package net.perigrine3.cyberware2;
import net.minecraftforge.forgespi.language.ModFileScanData;
import net.minecraftforge.fml.network.NetworkEvent;
import net.minecraftforge.fml.event.server.FMLServerStartingEvent;
import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent;
import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent;
import net.minecraftforge.fml.ModList;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.api.distmarker.OnlyIn;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraft.util.ResourceLocation;
import net.minecraft.tags.Tag;
import net.minecraft.network.PacketBuffer;
import net.minecraft.item.Item;
import net.minecraft.entity.EntityType;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.block.Block;
import java.util.function.Supplier;
import java.util.function.Function;
import java.util.function.BiConsumer;
import java.util.Set;
import java.util.Map;
import java.util.List;
import java.util.HashMap;
import java.util.Collections;
import java.util.ArrayList;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Retention;
public class Cyberware2ModElements {
public final List<ModElement> elements = new ArrayList<>();
public final List<Supplier<Block>> blocks = new ArrayList<>();
public final List<Supplier<Item>> items = new ArrayList<>();
public final List<Supplier<EntityType<?>>> entities = new ArrayList<>();
public final List<Supplier<Enchantment>> enchantments = new ArrayList<>();
public static Map<ResourceLocation, net.minecraft.util.SoundEvent> sounds = new HashMap<>();
public Cyberware2ModElements() {
try {
ModFileScanData modFileInfo = ModList.get().getModFileById("cyberware2").getFile().getScanResult();
Set<ModFileScanData.AnnotationData> annotations = modFileInfo.getAnnotations();
for (ModFileScanData.AnnotationData annotationData : annotations) {
if (annotationData.getAnnotationType().getClassName().equals(ModElement.Tag.class.getName())) {
Class<?> clazz = Class.forName(annotationData.getClassType().getClassName());
if (clazz.getSuperclass() == Cyberware2ModElements.ModElement.class)
elements.add((Cyberware2ModElements.ModElement) clazz.getConstructor(this.getClass()).newInstance(this));
}
}
} catch (Exception e) {
e.printStackTrace();
}
Collections.sort(elements);
elements.forEach(Cyberware2ModElements.ModElement::initElements);
MinecraftForge.EVENT_BUS.register(new Cyberware2ModVariables(this));
}
public void registerSounds(RegistryEvent.Register<net.minecraft.util.SoundEvent> event) {
for (Map.Entry<ResourceLocation, net.minecraft.util.SoundEvent> sound : sounds.entrySet())
event.getRegistry().register(sound.getValue().setRegistryName(sound.getKey()));
}
private int messageID = 0;
public <T> void addNetworkMessage(Class<T> messageType, BiConsumer<T, PacketBuffer> encoder, Function<PacketBuffer, T> decoder,
BiConsumer<T, Supplier<NetworkEvent.Context>> messageConsumer) {
Cyberware2Mod.PACKET_HANDLER.registerMessage(messageID, messageType, encoder, decoder, messageConsumer);
messageID++;
}
public List<ModElement> getElements() {
return elements;
}
public List<Supplier<Block>> getBlocks() {
return blocks;
}
public List<Supplier<Item>> getItems() {
return items;
}
public List<Supplier<EntityType<?>>> getEntities() {
return entities;
}
public List<Supplier<Enchantment>> getEnchantments() {
return enchantments;
}
public static class ModElement implements Comparable<ModElement> {
@Retention(RetentionPolicy.RUNTIME)
public @interface Tag {
}
protected final Cyberware2ModElements elements;
protected final int sortid;
public ModElement(Cyberware2ModElements elements, int sortid) {
this.elements = elements;
this.sortid = sortid;
}
public void initElements() {
}
public void init(FMLCommonSetupEvent event) {
}
public void serverLoad(FMLServerStartingEvent event) {
}
@OnlyIn(Dist.CLIENT)
public void clientLoad(FMLClientSetupEvent event) {
}
@Override
public int compareTo(ModElement other) {
return this.sortid - other.sortid;
}
}
}
| [
"[email protected]"
]
| |
cfa5ae407212ed318966ba47b1a9e2ce8a50fbc0 | 27f8a9f22cdc11863882317a8cd565a43ca2c4a2 | /src/main/java/Factory/SportsCar.java | e6bc3de08738a439cda119aa7b96841ec66dddc1 | []
| no_license | mframir3/DesignPatterns | ea640fdce5ad70dab9060cdb1a1404ab95e5bfee | 06eebe299145b671f5cd29c721f7e8b3b5d1bc02 | refs/heads/master | 2020-05-09T20:38:08.342927 | 2019-05-03T08:22:46 | 2019-05-03T08:22:46 | 181,414,743 | 0 | 0 | null | 2019-04-16T01:10:26 | 2019-04-15T04:57:18 | Java | UTF-8 | Java | false | false | 246 | java | package Factory;
public class SportsCar extends Car {
protected SportsCar(Color color, int price) {
super(CarType.SPORT, color, 220, 24, 2, price);
}
@Override
public boolean isSport() {
return true;
}
}
| [
"[email protected]"
]
| |
31f954dac8a41272faf4cb65fbd9720a7fc414ee | 56b5e1e26b4db51907572768ca73f7ecbebc65b7 | /PruebaCriaturas/src/logica/Valquiria.java | aebf692dd7cc94819fe5cec42d5bfd5e55e1c3e3 | []
| no_license | esthefaniarivera/Fabrica-Criaturas | b87411a595663a92b044f5de5fa694dbf357100c | 8e81753c0930242a467cc65ae85e15174fe8abd2 | refs/heads/master | 2020-05-15T14:45:57.518877 | 2019-04-21T02:13:08 | 2019-04-21T02:13:08 | 182,347,781 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,220 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package logica;
/**
*
* @author User
*/
public class Valquiria implements FabricaAbstracta{
private Lanza arma;
private ArmaduraUru Armadura;
private DescripcionValquiria Descripcion;
@Override
public void crearArma() {
arma = new Lanza();
}
@Override
public void crearArmadura() {
Armadura = new ArmaduraUru();
}
@Override
public void crearDescripcion() {
Descripcion = new DescripcionValquiria();
}
@Override
public ArmaAbstracta getArma() {
return arma;
}
@Override
public ArmaduraAbstracta getArmadura() {
return Armadura;
}
@Override
public DescripcionAbstracta getDescripcion() {
return Descripcion;
}
public Valquiria() {
this.crearArma();
this.crearArmadura();
this.crearDescripcion();
this.getArma();
this.getDescripcion();
this.getArmadura();
}
}
| [
"[email protected]"
]
| |
93ddd081d6cc3a44e608a65567fe08de9fae4dc8 | 5979994b215fabe125cd756559ef2166c7df7519 | /aimir-model-hibernate/src/main/java/com/aimir/dao/mvm/impl/LpGMDaoImpl.java | 0a34e40a3b8e36261033a03b260620220f014f78 | []
| no_license | TechTinkerer42/Haiti | 91c45cb1b784c9afc61bf60d43e1d5623aeba888 | debaea96056d1d4611b79bd846af8f7484b93e6e | refs/heads/master | 2023-04-28T23:39:43.176592 | 2021-05-03T10:49:42 | 2021-05-03T10:49:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,759 | java | package com.aimir.dao.mvm.impl;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hibernate.Criteria;
import org.hibernate.Query;
import org.hibernate.SQLQuery;
import org.hibernate.SessionFactory;
import org.hibernate.criterion.Criterion;
import org.hibernate.criterion.ProjectionList;
import org.hibernate.criterion.Projections;
import org.hibernate.transform.Transformers;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;
import com.aimir.dao.AbstractHibernateGenericDao;
import com.aimir.dao.mvm.LpGMDao;
import com.aimir.model.mvm.LpGM;
import com.aimir.util.Condition;
import com.aimir.util.SearchCondition;
@Repository(value="lpgmDao")
public class LpGMDaoImpl extends AbstractHibernateGenericDao<LpGM, Integer> implements LpGMDao{
private static Log log = LogFactory.getLog(LpGMDaoImpl.class);
@Autowired
protected LpGMDaoImpl(SessionFactory sessionFactory) {
super(LpGM.class);
super.setSessionFactory(sessionFactory);
}
public List<LpGM> getLpGMsByListCondition(Set<Condition> set) {
return findByConditions(set);
}
public List<Object> getLpGMsCountByListCondition(Set<Condition> set) {
return findTotalCountByConditions(set);
}
@SuppressWarnings("unchecked")
public List<Object> getLpGMsMaxMinSumAvg(Set<Condition> conditions, String div) {
Criteria criteria = getSession().createCriteria(LpGM.class);
if(conditions != null) {
Iterator it = conditions.iterator();
while(it.hasNext()){
Condition condition = (Condition)it.next();
Criterion addCriterion = SearchCondition.getCriterion(condition);
if(addCriterion != null){
criteria.add(addCriterion);
}
}
}
ProjectionList pjl = Projections.projectionList();
if("max".equals(div)) {
pjl.add(Projections.max("value_00"));
}
else if("min".equals(div)) {
pjl.add(Projections.min("value_00"));
}
else if("avg".equals(div)) {
pjl.add(Projections.avg("value_00"));
}
else if("sum".equals(div)) {
pjl.add(Projections.sum("value_00"));
}
criteria.setProjection(pjl);
return criteria.list();
}
@SuppressWarnings("unchecked")
public List<Object> getLpGMsByNoSended() {
StringBuffer sbQuery = new StringBuffer();
sbQuery.append("SELECT A.CHANNEL, A.YYYYMMDDHH, A.DST, A.MDEV_ID, A.MDEV_TYPE, A.VALUE, A.VALUE_00, A.VALUE_15, A.VALUE_30, A.VALUE_45 ")
.append(", B.VALUE_00 AS VALUE_00_RESULT , B.VALUE_15 AS VALUE_15_RESULT, B.VALUE_30 AS VALUE_30_RESULT, B.VALUE_45 AS VALUE_45_RESULT ")
.append("FROM LP_GM A ")
.append("JOIN (SELECT * FROM LP_GM ")
.append("WHERE CHANNEL = 98 ")
.append("AND (VALUE_00 = 0 OR VALUE_15 = 0 OR VALUE_30 = 0 OR VALUE_45 = 0 )) B ")
.append("ON A.YYYYMMDDHH = B.YYYYMMDDHH ")
.append("AND A.DST = B.DST ")
.append("AND A.MDEV_TYPE = B.MDEV_TYPE ")
.append("AND A.MDEV_ID = B.MDEV_ID ")
.append("AND A.CHANNEL = 1 ")
.append("AND A.MDEV_TYPE = ?");
SQLQuery query = getSession().createSQLQuery(sbQuery.toString());
return query.setResultTransformer(Transformers.ALIAS_TO_ENTITY_MAP).list();
}
@SuppressWarnings("unchecked")
public List<Object> getLpGMsByNoSended(String mdevType) {
StringBuffer sbQuery = new StringBuffer();
sbQuery.append("SELECT A.CHANNEL, A.YYYYMMDDHH, A.DST, A.MDEV_ID, A.MDEV_TYPE, A.VALUE, A.VALUE_00, A.VALUE_15, A.VALUE_30, A.VALUE_45 ")
.append(", B.VALUE_00 AS VALUE_00_RESULT , B.VALUE_15 AS VALUE_15_RESULT, B.VALUE_30 AS VALUE_30_RESULT, B.VALUE_45 AS VALUE_45_RESULT ")
.append("FROM LP_GM A ")
.append("JOIN (SELECT * FROM LP_GM ")
.append("WHERE CHANNEL = 98 ")
.append("AND (VALUE_00 = 0 OR VALUE_15 = 0 OR VALUE_30 = 0 OR VALUE_45 = 0 )) B ")
.append("ON A.YYYYMMDDHH = B.YYYYMMDDHH ")
.append("AND A.DST = B.DST ")
.append("AND A.MDEV_TYPE = B.MDEV_TYPE ")
.append("AND A.MDEV_ID = B.MDEV_ID ")
.append("AND A.CHANNEL = 1 ")
.append("AND A.MDEV_TYPE = ?");
SQLQuery query = getSession().createSQLQuery(sbQuery.toString());
query.setString(0, mdevType);
return query.setResultTransformer(Transformers.ALIAS_TO_ENTITY_MAP).list();
}
public void updateSendedResult(LpGM lpgm) {
//OPF-610 정규화 관련 처리로 내용 삭제. 호출 하는 함수 없음
}
public List<Object> getConsumptionGmCo2LpValuesParentId(Map<String, Object> condition) {
log.info("최상위 위치별 총합\n==== conditions ====\n" + condition);
@SuppressWarnings("unused")
Integer locationId = (Integer) condition.get("locationId");
Integer channel = (Integer) condition.get("channel");
// 탄소일 경우만 0 ,
// 수도/온도/습도의
// 사용량일때는 1
String startDate = (String) condition.get("startDate");
//String hh0 = (String) condition.get("hh0");
StringBuffer sb = new StringBuffer();
sb.append("\n SELECT SUM(VALUE_00) AS SUMVALUE");
sb.append("\n FROM LP_GM LP INNER JOIN (SELECT ID FROM LOCATION WHERE PARENT_ID=:parentId) L ");
sb.append("\n ON LP.LOCATION_ID = L.ID ");
sb.append("\n WHERE LP.CHANNEL=:channel AND YYYYMMDDHH =:startDate ");
SQLQuery query = getSession().createSQLQuery(sb.toString());
query.setInteger("parentId", locationId);
query.setInteger("channel", channel);
query.setString("startDate", startDate);
return query.setResultTransformer(Transformers.ALIAS_TO_ENTITY_MAP)
.list();
}
public int getLpInterval( String mdevId ) {
/*
* select * from meter m
* inner join ( select lp.meter_id from lp_em lp where lp.mdev_id =
*/
//주기 ( lpInterval ) 구해오기
StringBuffer buffer = new StringBuffer();
buffer.append("\n SELECT DISTINCT M.LP_INTERVAL FROM METER M ");
buffer.append("\n INNER JOIN (SELECT METER_ID FROM LP_EM WHERE MDEV_ID=:mdevId) LP ");
buffer.append("\n ON M.ID = LP.METER_ID ");
SQLQuery query = getSession().createSQLQuery(buffer.toString());
query.setString("mdevId", mdevId);
List<Object> result = query.list();
return Integer.parseInt(String.valueOf(result.get(0)));
}
}
| [
"[email protected]"
]
| |
74bd22cc7dc1882cf2f420585585cf7abc7130f3 | 7b40d383ff3c5d51c6bebf4d327c3c564eb81801 | /src/com/facebook/internal/Validate.java | f9e3c0b55a4eb0c70afa254a3bcc24593691ae26 | []
| no_license | reverseengineeringer/com.yik.yak | d5de3a0aea7763b43fd5e735d34759f956667990 | 76717e41dab0b179aa27f423fc559bbfb70e5311 | refs/heads/master | 2021-01-20T09:41:04.877038 | 2015-07-16T16:44:44 | 2015-07-16T16:44:44 | 38,577,543 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,648 | java | package com.facebook.internal;
import java.util.Collection;
import java.util.Iterator;
public final class Validate
{
public static void containsNoNullOrEmpty(Collection<String> paramCollection, String paramString)
{
notNull(paramCollection, paramString);
paramCollection = paramCollection.iterator();
while (paramCollection.hasNext())
{
String str = (String)paramCollection.next();
if (str == null) {
throw new NullPointerException("Container '" + paramString + "' cannot contain null values");
}
if (str.length() == 0) {
throw new IllegalArgumentException("Container '" + paramString + "' cannot contain empty values");
}
}
}
public static <T> void containsNoNulls(Collection<T> paramCollection, String paramString)
{
notNull(paramCollection, paramString);
paramCollection = paramCollection.iterator();
while (paramCollection.hasNext()) {
if (paramCollection.next() == null) {
throw new NullPointerException("Container '" + paramString + "' cannot contain null values");
}
}
}
public static <T> void notEmpty(Collection<T> paramCollection, String paramString)
{
if (paramCollection.isEmpty()) {
throw new IllegalArgumentException("Container '" + paramString + "' cannot be empty");
}
}
public static <T> void notEmptyAndContainsNoNulls(Collection<T> paramCollection, String paramString)
{
containsNoNulls(paramCollection, paramString);
notEmpty(paramCollection, paramString);
}
public static void notNull(Object paramObject, String paramString)
{
if (paramObject == null) {
throw new NullPointerException("Argument '" + paramString + "' cannot be null");
}
}
public static void notNullOrEmpty(String paramString1, String paramString2)
{
if (Utility.isNullOrEmpty(paramString1)) {
throw new IllegalArgumentException("Argument '" + paramString2 + "' cannot be null or empty");
}
}
public static void oneOf(Object paramObject, String paramString, Object... paramVarArgs)
{
int j = paramVarArgs.length;
int i = 0;
while (i < j)
{
Object localObject = paramVarArgs[i];
if (localObject != null)
{
if (!localObject.equals(paramObject)) {}
}
else {
while (paramObject == null) {
return;
}
}
i += 1;
}
throw new IllegalArgumentException("Argument '" + paramString + "' was not one of the allowed values");
}
}
/* Location:
* Qualified Name: com.facebook.internal.Validate
* Java Class Version: 6 (50.0)
* JD-Core Version: 0.7.1
*/ | [
"[email protected]"
]
| |
19f30da19043959fb898b2f9777e8b41aeb137b4 | 8d7988400470b9e8f94322adba33b11ea19a8d5c | /augusteiner-poo-dao-jdbc/src/main/java/br/eng/augusteiner/poo/PessoaFisica.java | 298e2f009d9fc5ff320fca71a897589517ecc3e9 | []
| no_license | augusteiner/augusteiner-poo-dao | 383348bb6f1ea8ae20dfb9bcbfe48d55a65abb8c | 9cfe3d95613286c6283e2c6b34272bce7b90903b | refs/heads/master | 2021-01-20T19:57:03.014307 | 2016-06-18T23:54:27 | 2016-06-19T00:00:19 | 61,251,780 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 713 | java |
package br.eng.augusteiner.poo;
/**
* @author José Nascimento <[email protected]>
*/
public class PessoaFisica extends Pessoa {
private String cpf;
public PessoaFisica() {
super();
}
public PessoaFisica(String nome) {
super(nome);
}
public PessoaFisica(
String cpf,
String nome) {
this(nome);
this.cpf = cpf;
}
public String getCpf() {
return cpf;
}
public void setCpf(String cpf) {
this.cpf = cpf;
}
@Override
public String toString() {
return String.format(
"#%s - %s",
this.getCpf(),
this.getNome());
}
}
| [
"[email protected]"
]
| |
2758a7fe4fa3f6608dd3f4611cc2f011f6953de9 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/31/31_71dc59510d788b0753446b4c7fb0539822fbc7c0/RegionFilterBuilder/31_71dc59510d788b0753446b4c7fb0539822fbc7c0_RegionFilterBuilder_t.java | eca6551a9351bde2a106cd53d05208538753341a | []
| no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 1,836 | java | /*******************************************************************************
* Copyright (c) 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.virgo.kernel.osgi.region;
import org.osgi.framework.InvalidSyntaxException;
/**
* A builder for creating {@link RegionFilter} instances. A builder instance can be obtained from the
* {@link RegionDigraph#createRegionFilterBuilder()} method.
* <p />
* <strong>Concurrent Semantics</strong><br />
*
* Implementations of this interface must be thread safe.
*/
public interface RegionFilterBuilder {
/**
* Allow capabilities with the given name space matching the given filter.
*
* @param namespace the name space of the capabilities to be allowed
* @param filter the filter matching the capabilities to be allowed
* @return this builder (for method chaining)
*/
RegionFilterBuilder allow(String namespace, String filter) throws InvalidSyntaxException;
/**
* Allow all capabilities with the given name space.
*
* @param namespace the name space of the capabilities to be allowed
* @return this builder (for method chaining)
*/
RegionFilterBuilder allowAll(String namespace);
/**
* Build a {@link RegionFilter} from the current state of this builder.
*
* @return the {@link RegionFilter} built
*/
RegionFilter build();
}
| [
"[email protected]"
]
| |
a6aea71b2dc410b2379092dfa30876af5375a167 | e52e64fdfe2915897bf97d10893784af74a38f51 | /src/main/java/com/cia/lojao/repositories/EstadoRepository.java | 97aa7bc8c76bbd25426cfa18e26ed25c88ba3552 | []
| no_license | erickluz/lojao-backend | 7a7e08185b80d769e4c19c28911a5b512f883c74 | 6f3a3a5e27897a9b60bd29b2b5d957056c3b5ea1 | refs/heads/master | 2020-04-04T18:06:09.411414 | 2019-03-27T01:01:22 | 2019-03-27T01:01:22 | 156,149,851 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 277 | java | package com.cia.lojao.repositories;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import com.cia.lojao.domain.Estado;
@Repository
public interface EstadoRepository extends JpaRepository<Estado, Integer>{
}
| [
"[email protected]"
]
| |
210c725b485ffd81a36906d216722dc8f0d4a123 | 0a397d33881c9954f17db9dc64ebe3510028e56e | /src/main/java/com/platform/accountservice/domain/PasswordResetToken.java | fa0f09744da5446d57939fe29e19d239b90cbe61 | []
| no_license | AaviJit/Client-SidritLeka | d7f125690a11f50ef1fa078a109443053d04efd9 | 8d0fee517c3dd33a8f79350284ad0e6991bb0cda | refs/heads/master | 2022-09-29T11:51:29.085786 | 2019-11-06T12:46:06 | 2019-11-06T12:46:06 | 219,907,402 | 0 | 0 | null | 2022-09-08T01:03:46 | 2019-11-06T03:51:28 | Java | UTF-8 | Java | false | false | 1,717 | java | package com.platform.accountservice.domain;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.Calendar;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.OneToOne;
@Entity
public class PasswordResetToken {
private static final int EXPIRATION = 60 * 24;
@Id
@Column(name = "reset_token_id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer resetTokenId;
@Column(nullable = false)
private String token;
@OneToOne(targetEntity = User.class, fetch = FetchType.EAGER)
@JoinColumn(nullable = false, name = "user_id")
private User user;
@Column(nullable = false, name = "expiry_date")
private Date expiryDate;
public PasswordResetToken(User user, String token) {
this.token = token;
this.user = user;
this.expiryDate = calculateExpiryDate(EXPIRATION);
}
private Date calculateExpiryDate(int expiryTimeInMinutes) {
Calendar cal = Calendar.getInstance();
cal.setTime(new Timestamp(cal.getTime().getTime()));
cal.add(Calendar.MINUTE, expiryTimeInMinutes);
return new Date(cal.getTime().getTime());
}
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public Date getExpiryDate() {
return expiryDate;
}
}
| [
"[email protected]"
]
| |
bfdb8f32f6a1ff4c47625b048580d16dedd60ebb | 036d64506ea828c0faabbe78a9c4effa48c49f2a | /4.JavaCollections/src/com/javarush/task/task37/task3708/retrievers/CachingProxyRetriever.java | a28eb84141795ca4eb828dbd8c8b4080fb2652a2 | []
| no_license | 7true/JavaRushTasks | 2248432ba24bbb72ba6d32e263d0ac67526773e7 | f0962065839c6b1fcaf055b501557c542825fda2 | refs/heads/master | 2021-07-04T04:46:40.786568 | 2020-12-05T11:52:44 | 2020-12-05T11:52:44 | 206,956,995 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 708 | java | package com.javarush.task.task37.task3708.retrievers;
import com.javarush.task.task37.task3708.cache.LRUCache;
import com.javarush.task.task37.task3708.storage.Storage;
public class CachingProxyRetriever implements Retriever {
private OriginalRetriever originalRetriever;
private LRUCache cache;
public CachingProxyRetriever(Storage storage) {
this.originalRetriever = new OriginalRetriever(storage);
cache = new LRUCache(16);
}
public Object retrieve(long id) {
Object cached = cache.find(id);
if (cached == null) {
cached = originalRetriever.retrieve(id);
cache.set(id, cached);
}
return cached;
}
}
| [
"[email protected]"
]
| |
893eec50b7b0dee1e57ec04691370560dd4e860c | 412692eaea4791d7807d7a507e570e9dcd132a01 | /src/test/java/de/pdark/decentxml/XMLParserTest.java | 4b1cb5a37804717ac031e07cd831c51421d08680 | []
| no_license | haroldo-ok/decentxml | 509c3a89fb5f89984d368c303488f09447774536 | 841f46446fb0caba10f804954457dff299cc2805 | refs/heads/main | 2023-03-14T19:56:57.622293 | 2021-03-18T10:34:12 | 2021-03-18T10:34:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 27,535 | java | /*
* Copyright (c) 2008, Aaron Digulla
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Aaron Digulla nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
package de.pdark.decentxml;
import static org.junit.Assert.*;
import de.pdark.decentxml.XMLTokenizer.Type;
import java.io.ByteArrayInputStream;
import java.util.List;
import java.util.Map;
import org.junit.After;
import org.junit.Test;
public class XMLParserTest {
public static final String POM_XML =
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n"
+ "\r\n"
+ "<project xmlns=\"http://maven.apache.org/POM/4.0.0\""
+ " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\""
+ " xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0"
+ " http://maven.apache.org/maven-v4_0_0.xsd\">\r\n"
+ " <modelVersion>4.0.0</modelVersion>\r\n"
+ "\r\n"
+ " <!-- Ignore this <parent>\r\n"
+ " <groupId>org.codehaus.mojo</groupId>\r\n"
+ " <artifactId>mojo</artifactId>\r\n"
+ " <version>15</version>\r\n"
+ " </parent> -->\r\n"
+ " <parent>\r\n"
+ " <groupId>org.codehaus.mojo</groupId>\r\n"
+ " <artifactId>mojo</artifactId>\r\n"
+ " <version>16</version>\r\n"
+ " </parent>\r\n"
+ "\r\n"
+ " <groupId>org.codehaus.mojo</groupId>\r\n"
+ " <artifactId>versions-maven-plugin</artifactId>\r\n"
+ " <version>1.0-SNAPSHOT</version>\r\n"
+ " <packaging>maven-plugin</packaging>\r\n"
+ "</project>\r\n";
@Test
public void testRoundtrip() throws Exception {
setUp(XMLTokenizerTest.XML);
assertEquals(XMLTokenizerTest.XML, doc.toXML());
}
@Test
public void testCopy() throws Exception {
setUp(XMLTokenizerTest.XML);
assertEquals(doc.toXML(), doc.copy().toXML());
}
@Test
public void testBOM() throws Exception {
XMLParser parser = new XMLParser();
byte[] data = XMLTokenizerTest.XML.getBytes("UnicodeBig");
assertEquals(XMLTokenizerTest.XML.length() * 2 + 2, data.length);
assertEquals(-2, data[0]);
assertEquals(-1, data[1]);
ByteArrayInputStream in = new ByteArrayInputStream(data);
XMLIOSource source = new XMLIOSource(in);
assertEquals(XMLTokenizerTest.XML.length(), source.length());
assertEquals('<', source.charAt(0));
doc = parser.parse(source);
}
@Test
public void testNavigation() throws Exception {
// System.out.println (XML);
setUp(XMLTokenizerTest.XML);
Element root = doc.getRootElement();
assertNotNull(root);
Element e = root.getChild("e");
assertNotNull(e);
assertEquals("e", e.getName());
}
@Test
public void testNavigation2() throws Exception {
setUp(XMLTokenizerTest.XML);
Element root = doc.getRootElement();
List<Element> l = root.getChildren("e");
assertNotNull(l);
assertEquals(1, l.size());
assertEquals(root.getChild("e"), l.get(0));
}
@Test
public void testNavigation3() throws Exception {
setUp(XMLTokenizerTest.XML);
Element root = doc.getRootElement();
List<Element> l = root.getChildren("a");
assertNotNull(l);
assertEquals(2, l.size());
}
@Test
public void testNavigation4() throws Exception {
setUp(XMLTokenizerTest.XML);
Element root = doc.getRootElement();
List<Element> l = root.getChildren("a");
Element a = l.get(0);
Attribute attr = a.getAttribute("x");
assertEquals("x", attr.getName());
assertEquals("1", attr.getValue());
}
@Test
public void testDocumentType() throws Exception {
setUp(XMLTokenizerTest.XML);
assertEquals(Type.DOCUMENT, doc.getType());
}
@Test
public void testElementType() throws Exception {
setUp(XMLTokenizerTest.XML);
assertEquals(Type.ELEMENT, doc.getRootElement().getType());
}
@Test
public void testElementChild() throws Exception {
setUp("<a/>");
assertNull(doc.getRootElement().getChild("xxx"));
}
@Test
public void testCreateElement() throws Exception {
Element e = new Element("e");
assertEquals(-1, e.getStartOffset());
assertEquals(-1, e.getEndOffset());
}
@Test
public void testRemove() throws Exception {
setUp(XMLTokenizerTest.XML);
Node n;
n = doc.removeNode(2);
assertEquals(Type.COMMENT, n.getType());
n = doc.getNode(2);
assertTrue(doc.removeNode(n));
Element root = doc.getRootElement();
root.clearNodes();
root.addNode(new Text("a")).addNode(new Text("c")).addNode(1, new Text("b"));
assertEquals(
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n" + "\n" + "<root>abc</root>\n" + "",
doc.toXML());
}
@Test
public void testAttributeMap() throws Exception {
setUp("<a/>");
Map<String, Attribute> map = doc.getRootElement().getAttributeMap();
assertEquals("{}", map.toString());
}
@Test
public void testAttributeMap2() throws Exception {
setUp("<a />");
Map<String, Attribute> map = doc.getRootElement().getAttributeMap();
assertEquals("{}", map.toString());
}
@Test
public void testAttributeMap3() throws Exception {
setUp("<a x='1' y='2' />");
Map<String, Attribute> map = doc.getRootElement().getAttributeMap();
assertEquals("{x= x='1', y= y='2'}", map.toString());
}
@Test
public void testAttributeMapSequence() throws Exception {
setUp("<a y='2' x='1' />");
Map<String, Attribute> map = doc.getRootElement().getAttributeMap();
assertEquals("{y= y='2', x= x='1'}", map.toString());
}
@Test
public void testAttributes() throws Exception {
setUp("<a/>");
List<Attribute> list = doc.getRootElement().getAttributes();
assertEquals("[]", list.toString());
}
@Test
public void testAttributes2() throws Exception {
setUp("<a />");
List<Attribute> list = doc.getRootElement().getAttributes();
assertEquals("[]", list.toString());
}
@Test
public void testAttributes3() throws Exception {
setUp("<a y='2' x='1' />");
List<Attribute> list = doc.getRootElement().getAttributes();
assertEquals("[ y='2', x='1']", list.toString());
}
@Test
public void testAttributes4() throws Exception {
Attribute a = new Attribute("a", "\"", '"');
assertEquals(" a=\""\"", a.toXML());
}
@Test
public void testAttributes5() throws Exception {
Attribute a = new Attribute("a", "'", '\'');
assertEquals(" a='''", a.toXML());
}
@Test
public void testAttributes6() throws Exception {
Attribute a = new Attribute("a", "\"'", '\'');
assertEquals(" a='\"''", a.toXML());
}
@Test
public void testAttributes7() throws Exception {
Attribute a = new Attribute("a", "\"'", '\'');
a.setQuoteChar('"');
assertEquals(" a=\""'\"", a.toXML());
}
@Test
public void testAttributes8() throws Exception {
Attribute a = new Attribute("a", "x");
assertEquals(" a=\"x\"", a.toXML());
assertEquals('\"', a.getQuoteChar());
a.setQuoteChar('\'');
assertEquals('\'', a.getQuoteChar());
assertEquals(" a='x'", a.toXML());
}
@Test
public void testAttributesNameNull() throws Exception {
try {
new Attribute(null, null);
fail("No exception was thrown");
} catch (IllegalArgumentException ex) {
assertEquals("name is null", ex.getMessage());
}
}
@Test
public void testAttributesValueNull() throws Exception {
try {
new Attribute("a", null);
fail("No exception was thrown");
} catch (IllegalArgumentException ex) {
assertEquals("value is null", ex.getMessage());
}
}
@Test
public void testIllegalQuoteChar() throws Exception {
try {
new Attribute("a", "\"", 'x');
fail("No exception was thrown");
} catch (XMLParseException ex) {
assertEquals("Illegal quote charater: \"x\" (120)", ex.getMessage());
}
}
@Test
public void testGetAttribute() throws Exception {
setUp("<a/>");
Attribute a = doc.getRootElement().getAttribute("x");
assertNull(a);
}
@Test
public void testGetAttribute2() throws Exception {
setUp("<a />");
Attribute a = doc.getRootElement().getAttribute("x");
assertNull(a);
}
@Test
public void testGetAttribute3() throws Exception {
setUp("<a y='2' x='1' />");
Attribute a = doc.getRootElement().getAttribute("x");
assertEquals(" x='1'", a.toString());
}
@Test
public void testGetAttributeValue() throws Exception {
setUp("<a/>");
String a = doc.getRootElement().getAttributeValue("x");
assertNull(a);
}
@Test
public void testGetAttributeValue2() throws Exception {
setUp("<a />");
String a = doc.getRootElement().getAttributeValue("x");
assertNull(a);
}
@Test
public void testGetAttributeValue3() throws Exception {
setUp("<a y='2' x='1' />");
String a = doc.getRootElement().getAttributeValue("x");
assertEquals("1", a.toString());
}
@Test
public void testGetAttributeValue4() throws Exception {
setUp("<a y='2' x='<>&"'' />");
String a = doc.getRootElement().getAttributeValue("x");
assertEquals("<>&\"'", a.toString());
}
@Test
public void testIsCompactEmpty() throws Exception {
setUp("<a/>");
assertTrue(doc.getRootElement().isCompactEmpty());
}
@Test
public void testIsCompactEmpty2() throws Exception {
setUp("<a />");
assertTrue(doc.getRootElement().isCompactEmpty());
}
@Test
public void testIsCompactEmpty3() throws Exception {
setUp("<a></a>");
assertFalse(doc.getRootElement().isCompactEmpty());
assertEquals("<a></a>", doc.toXML());
}
@Test
public void testIsCompactEmpty4() throws Exception {
setUp("<a />");
doc.getRootElement().addNode(new Element("e"));
assertFalse(doc.getRootElement().isCompactEmpty());
}
@Test
public void testGetChildNodes() throws Exception {
setUp("<a />");
assertEquals("[]", doc.getRootElement().getNodes().toString());
}
@Test
public void testGetChildNodes2() throws Exception {
setUp("<a> </a>");
assertEquals("[ ]", doc.getRootElement().getNodes().toString());
}
@Test
public void testRemoveChildNode() throws Exception {
setUp("<a> <b/></a>");
Node n = doc.getRootElement().removeNode(0);
assertNotNull(n);
assertEquals("<a><b/></a>", doc.toXML());
}
@Test
public void testRemoveChildNode2() throws Exception {
setUp("<a> <b/></a>");
Node n = doc.getRootElement().removeNode(1);
assertNotNull(n);
assertEquals("<a> </a>", doc.toXML());
}
@Test
public void testRemoveChildNode3() throws Exception {
setUp("<a> <b/></a>");
Node n = doc.getRootElement().getNode(0);
assertTrue(doc.getRootElement().removeNode(n));
assertEquals("<a><b/></a>", doc.toXML());
}
@Test
public void testRemoveChildNode4() throws Exception {
Element e = new Element("e");
assertFalse(e.removeNode(null));
}
@Test
public void testGetChildren() throws Exception {
setUp("<a />");
assertEquals("[]", doc.getRootElement().getChildren().toString());
}
@Test
public void testGetChildren2() throws Exception {
setUp("<a> <b/></a>");
assertEquals("[<b/>]", doc.getRootElement().getChildren().toString());
}
@Test
public void testGetText() throws Exception {
setUp("<a />");
assertEquals("", doc.getRootElement().getText());
}
@Test
public void testGetText2() throws Exception {
setUp("<a> x \n y </a>");
assertEquals(" x \n y ", doc.getRootElement().getText());
}
@Test
public void testGetText3() throws Exception {
setUp("<a>a<b>x</b>a</a>");
assertEquals("axa", doc.getRootElement().getText());
}
@Test
public void testGetTrimmedText() throws Exception {
setUp("<a> x \n y </a>");
assertEquals("x \n y", doc.getRootElement().getTrimmedText());
}
@Test
public void testGetNormalizedText() throws Exception {
setUp("<a> <b> x \n y </b> </a>");
assertEquals("x y", doc.getRootElement().getNormalizedText());
}
@Test
public void testNothingFound() throws Exception {
setUp(POM_XML);
Element match = root.getChild("xxx");
assertNull(match == null ? "" : match.toString(), match);
}
@Test
public void testProject() throws Exception {
setUp(POM_XML);
assertEquals("project", root.getName());
assertEquals(42, root.getStartToken().getStartOffset());
}
@Test
public void testParent() throws Exception {
setUp(POM_XML);
Element match = root.getChild("parent");
assertEquals(437, match.getStartOffset());
assertEquals(562, match.getEndOffset());
assertEquals(
"<parent>\r\n"
+ " <groupId>org.codehaus.mojo</groupId>\r\n"
+ " <artifactId>mojo</artifactId>\r\n"
+ " <version>16</version>\r\n"
+ " </parent>",
match.getStartToken().getSource().substring(match.getStartOffset(), match.getEndOffset()));
}
@Test
public void testParentVersion() throws Exception {
setUp(POM_XML);
Element match = root.getChild("parent");
Element version = match.getChild("version");
assertEquals(528, version.getStartToken().getStartOffset());
assertEquals("<version>16</version>", version.toXML());
assertEquals("16", version.getNormalizedText());
}
@Test
public void testReplaceParentVersion() throws Exception {
setUp(POM_XML);
Element match = root.getChild("parent");
Element version = match.getChild("version");
version.setText("17");
assertEquals(POM_XML.replaceAll("16", "17"), doc.toXML());
}
@Test
public void testParentXXX() throws Exception {
setUp(POM_XML);
Element parent = root.getChild("parent");
Element match = parent.getChild("xxx");
assertNull(match == null ? "" : match.toString(), match);
}
@Test
public void testProjectArtifactId() throws Exception {
setUp(POM_XML);
Element artifactId = root.getChild("artifactId");
assertEquals("versions-maven-plugin", artifactId.getNormalizedText());
}
@Test
public void testNoAttributeXXX() throws Exception {
setUp("<a />");
Attribute a = root.getAttribute("xxx");
assertNull(a);
}
@Test
public void testNoAttributeXXX2() throws Exception {
setUp("<a x='1' />");
Attribute a = root.getAttribute("xxx");
assertNull(a);
}
@Test
public void testSetAttributeName() throws Exception {
setUp("<a x='1' />");
Attribute a = root.getAttribute("x");
a.setName("y");
assertEquals("<a y='1' />", doc.toXML());
}
@Test
public void testSetAttributeValue() throws Exception {
setUp("<a x='1' />");
Attribute a = root.getAttribute("x");
a.setValue("2");
assertEquals("<a x='2' />", doc.toXML());
}
@Test
public void testSetAttributeValue2() throws Exception {
setUp("<a x='1' />");
Attribute a = root.getAttribute("x");
a.setValue("\"x\"");
assertEquals("<a x='\"x\"' />", doc.toXML());
}
@Test
public void testSetAttributeValue3() throws Exception {
setUp("<a x='1' />");
Attribute a = root.getAttribute("x");
a.setValue("'b'");
assertEquals("<a x=''b'' />", doc.toXML());
}
@Test
public void testSetAttributeValue4() throws Exception {
setUp("<a x='1' />");
Attribute a = root.getAttribute("x");
a.setValue("'\"");
assertEquals("<a x=''\"' />", doc.toXML());
}
@Test
public void testAttributeToXML() throws Exception {
setUp("<a x='1' />");
Attribute a = root.getAttribute("x");
assertEquals(" x='1'", a.toXML());
}
@Test
public void testAttributeType() throws Exception {
setUp("<a x='1' />");
Attribute a = root.getAttribute("x");
assertEquals(Type.ATTRIBUTE, a.getType());
}
@Test
public void testAttributeOffsets() throws Exception {
setUp("<a x='1' />");
Attribute a = root.getAttribute("x");
assertEquals(2, a.getStartOffset());
assertEquals(8, a.getEndOffset());
}
@Test
public void testNoRootElement() throws Exception {
try {
setUp("<?xml version='1.0'?>");
fail("No exception was thrown");
} catch (XMLParseException e) {
assertEquals("No root element found", e.getMessage());
}
}
@Test
public void testTwoRootElements() throws Exception {
try {
setUp("<?xml version='1.0'?><a /><b/>");
fail("No exception was thrown");
} catch (XMLParseException e) {
assertEquals("Line 1, column 27: Only one root element allowed per document", e.getMessage());
}
}
@Test
public void testUnexpectedEOF() throws Exception {
try {
setUp("<?xml version='1.0'?>\n<a");
fail("No exception was thrown");
} catch (XMLParseException e) {
assertEquals("Line 2, column 3: Missing '>' of start tag", e.getMessage());
}
}
@Test
public void testUnexpectedEOF2() throws Exception {
try {
setUp("<?xml version='1.0'?>\n<a>");
fail("No exception was thrown");
} catch (XMLParseException e) {
assertEquals(
"Line 2, column 1: Unexpected end-of-file while parsing children of element a",
e.getMessage());
}
}
@Test
public void testElementMismatch() throws Exception {
try {
setUp("<?xml version='1.0'?>\n<a></b>");
fail("No exception was thrown");
} catch (XMLParseException e) {
assertEquals(
"Line 2, column 1: End element 'b' at line 2, column 4 doesn't match with 'a'",
e.getMessage());
}
}
@Test
public void testElementMismatch2() throws Exception {
try {
setUp("<?xml version='1.0'?>\n<a>\n<b></b>\n<b>\n<b></b>\n</a>");
fail("No exception was thrown");
} catch (XMLParseException e) {
assertEquals(
"Line 4, column 1: End element 'a' at line 6, column 1 doesn't match with 'b'",
e.getMessage());
}
}
@Test
public void testDocumentXMLDecl1() throws Exception {
try {
setUp("<?xml version = '2.1' ?>\n<root />");
fail("No exception was thrown");
} catch (XMLParseException e) {
assertEquals(
"Line 1, column 19: only versions '1.0' and '1.1' are supported: [2.1]", e.getMessage());
}
}
@Test
public void testDocumentXMLDecl2() throws Exception {
setUp("<?xml version = '1.1' encoding = 'Utf-8' ?>\n<root />");
assertEquals("1.1", doc.getVersion());
assertEquals("Utf-8", doc.getEncoding());
assertFalse(doc.isStandalone());
}
@Test
public void testDocumentXMLDecl3() throws Exception {
setUp("<?xml version = '1.1' encoding = 'Utf-8' standalone = 'yes' ?>\n<root />");
assertEquals("1.1", doc.getVersion());
assertEquals("Utf-8", doc.getEncoding());
assertTrue(doc.isStandalone());
}
@Test
public void testDocumentXMLDecl4() throws Exception {
setUp("<?xml version = '1.1' encoding = 'Utf-8' standalone = 'no' ?>\n<root />");
assertEquals("1.1", doc.getVersion());
assertEquals("Utf-8", doc.getEncoding());
assertFalse(doc.isStandalone());
}
@Test
public void testDocumentXMLDecl5() throws Exception {
Document doc = new Document();
try {
doc.addNode(new ProcessingInstruction("xml"));
fail("No exception was thrown");
} catch (XMLParseException e) {
assertEquals("Line 1, column 1: Missing version attribute", e.getMessage());
}
}
@Test
public void testDocumentXMLDecl6() throws Exception {
Document doc = new Document();
try {
doc.addNode(new ProcessingInstruction("xml", "encoding='utf-8'"));
fail("No exception was thrown");
} catch (XMLParseException e) {
assertEquals("Line 1, column 1: Version must be before encoding", e.getMessage());
}
}
@Test
public void testDocumentXMLDecl7() throws Exception {
Document doc = new Document();
try {
doc.addNode(new ProcessingInstruction("xml", "version='1.1' encoding=''"));
fail("No exception was thrown");
} catch (XMLParseException e) {
assertEquals("Line 1, column 1: Value for encoding is empty", e.getMessage());
}
}
@Test
public void testDocumentXMLDecl8() throws Exception {
Document doc = new Document();
try {
doc.addNode(
new ProcessingInstruction("xml", "version='1.1' encoding='utf-8' standalone='' "));
fail("No exception was thrown");
} catch (XMLParseException e) {
assertEquals("Line 1, column 1: Value for standalone is empty", e.getMessage());
}
}
@Test
public void testDocumentXMLDecl9() throws Exception {
Document doc = new Document();
try {
doc.addNode(
new ProcessingInstruction("xml", " version='1.1' encoding='utf-8' standalone='xxx' "));
fail("No exception was thrown");
} catch (XMLParseException e) {
assertEquals(
"Line 1, column 1: Allowed values for standalone are 'yes' and 'no', found 'xxx'",
e.getMessage());
}
}
@Test
public void testDocumentXMLDecl10() throws Exception {
Document doc = new Document();
doc.addNode(new Element("e"));
doc.setVersion("1.1");
assertEquals("<?xml version=\"1.1\"?>\n<e/>", doc.toXML());
}
@Test
public void testDocumentXMLDecl11() throws Exception {
Document doc = new Document();
doc.addNode(new Element("e"));
doc.setEncoding(XMLInputStreamReader.ENCODING_ISO_Latin_1);
assertEquals("<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n<e/>", doc.toXML());
}
@Test
public void testDocumentXMLDecl12() throws Exception {
Document doc = new Document();
doc.addNode(new Element("e"));
doc.setStandalone(true);
// The spec demands that an encoding is set if standalone is specified
// but the W3C test suite has examples which omit the encoding in this case.
// assertEquals ("<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<e/>",
// doc.toXML ());
assertEquals("<?xml version=\"1.0\" standalone=\"yes\"?>\n<e/>", doc.toXML());
}
@Test
public void testDocumentXMLDecl13() throws Exception {
Document doc = new Document();
doc.addNode(new Element("e"));
doc.setStandalone(true);
doc.setEncoding(XMLInputStreamReader.ENCODING_ISO_Latin_1);
assertEquals(
"<?xml version=\"1.0\" encoding=\"ISO-8859-1\" standalone=\"yes\"?>\n<e/>", doc.toXML());
}
@Test
public void testDocumentXMLDecl14() throws Exception {
Document doc = new Document();
doc.addNode(new Element("e"));
doc.setEncoding(XMLInputStreamReader.ENCODING_ISO_Latin_1);
try {
doc.addNode(0, new Text("xxx"));
fail("No exception was thrown");
} catch (XMLParseException e) {
assertEquals(
"Line 1, column 1: It is not allowed to have content before the XML declaration",
e.getMessage());
}
}
@Test
public void testDocumentXMLDecl15() throws Exception {
Document doc = new Document();
doc.addNode(new Element("e"));
doc.setVersion(null);
assertEquals("<?xml version=\"1.0\"?>\n<e/>", doc.toXML());
}
@Test
public void testEntityResolver() throws Exception {
XMLParser parser = new XMLParser();
// Default is not to expand entites; in fact they are treated as text
assertNull(parser.getEntityResolver());
assertFalse(parser.isExpandEntities());
assertTrue(parser.isTreatEntitiesAsText());
parser.setEntityResolver(new HTMLEntityResolver());
// Make sure this enables entity resolution
assertTrue(parser.isExpandEntities());
assertFalse(parser.isTreatEntitiesAsText());
doc =
parser.parse(
new XMLStringSource("<?xml version=\"1.0\"?>\n" + "<xml><a> </xml>\n"));
Element root = doc.getRootElement();
assertEquals("<a>\u00a0", root.getText());
Text entity = (Text) root.getNode(0);
assertEquals("<", entity.getValue());
assertEquals("<", entity.getText());
}
@Test
public void testWithoutEntityResolver() throws Exception {
XMLParser parser = new XMLParser();
parser.setEntityResolver(new HTMLEntityResolver());
parser.setExpandEntities(false);
assertFalse(parser.isExpandEntities());
assertFalse(parser.isTreatEntitiesAsText());
doc =
parser.parse(
new XMLStringSource("<?xml version=\"1.0\"?>\n" + "<xml><a> </xml>\n"));
Element root = doc.getRootElement();
assertEquals("<a>\u00a0", root.getText());
Entity entity = (Entity) root.getNode(0);
assertEquals("lt", entity.getName());
assertEquals("<", entity.getValue());
assertEquals("<", entity.getText());
entity = (Entity) root.getNode(3);
assertEquals("nbsp", entity.getName());
assertEquals(" ", entity.getValue());
assertEquals("\u00a0", entity.getText());
}
private Document doc;
private Element root;
public void setUp(String xml) {
XMLParser parser = new XMLParser();
doc = parser.parse(new XMLStringSource(xml));
root = doc.getRootElement();
}
@After
public void tearDown() {
doc = null;
root = null;
}
}
| [
"[email protected]"
]
| |
266bbf8f5b9194db529bea732dec4d5c041bf237 | 897ddd88be15520688945351d74263f6f8569ba6 | /src/ui/subWindow/TextCtl.java | 1941ce315579ecdc3b53f7458833874e281e9ec7 | []
| no_license | xrlin/Tetris | af9f59e82496de3ad737e28f4bf9a08205d732e3 | a3d9b61258aa922efe0bcedb439c2e1d78233dba | refs/heads/master | 2021-01-12T08:40:19.988177 | 2016-12-05T13:20:20 | 2016-12-05T13:20:20 | 76,654,130 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,267 | java | package ui.subWindow;
import java.awt.TextField;
import java.awt.event.KeyListener;
import java.awt.event.KeyEvent;
/**
* 实现按键设置的文本框类
* @author archer
*
*/
public class TextCtl extends TextField {
private String menthod;
private int keyCode;
/**
* 构造函数
* 通过x,y,width,height参数设定文本框的位置、大小
* @param x
* @param y
* @param width
* @param height
*/
public TextCtl(int x ,int y, int width, int height, String menthod) {
this.menthod = menthod;
this.setBounds(x, y, width, height);
this.addKeyListener(new KeyListener() {
@Override
public void keyTyped(KeyEvent e) {
}
@Override
public void keyReleased(KeyEvent e) {
keyCode = e.getKeyCode();
setText(KeyEvent.getKeyText(e.getKeyCode()));
}
@Override
public void keyPressed(KeyEvent e) {
setText(null);
}
});
}
public void setKeyCode(int keyCode) {
this.keyCode = keyCode;
}
/**
* 根据keycode设置keychar
* @param keyCode
*/
public void setKeyCahrByCode(int keyCode) {
this.setText(KeyEvent.getKeyText(keyCode));
}
/**
* 获取Keycode
* @return
*/
public int getKeyCode() {
return keyCode;
}
public String getMenthod() {
return menthod;
}
}
| [
"[email protected]"
]
| |
3bdecc40043fc718634d1c850f7b16037f59f3f1 | b2c17008630d1742455131238ae998b55c8d9773 | /OOPSConcepts/inheritance/hasA/BusDemo.java | fab781f3112ba56ff98445508d969ba184c5ed76 | []
| no_license | mnarendra333/batch23 | 66362817fb598f2aa0306bdde19e3bd1b67dfbda | 54e3c7ae3954efc5d07a28e816d29ebd78c38254 | refs/heads/master | 2022-12-21T08:31:24.224187 | 2020-02-01T03:45:29 | 2020-02-01T03:45:29 | 204,832,319 | 0 | 2 | null | 2022-12-15T23:35:22 | 2019-08-28T02:37:20 | Java | UTF-8 | Java | false | false | 1,631 | java | class BusDemo
{
public void getBusses(Bus[] busses, String busType)
{
for(int i=0;i<busses.length;i++)
{
Bus obj = busses[i];
if(obj.getBusType().equals(busType))
{
System.out.println(obj.getBusId()+" "+obj.getBusName()+" "+
obj.getFare()+" "+obj.getBusType());
}else
{
System.out.println("No Busses!!!! with given criteria");
}
}
}
public void getBusses(Bus[] busses, String busType, double fare)
{
for(int i=0;i<busses.length;i++)
{
Bus busObj = busses[i];
if(busObj.getBusType().equals(busType) && busObj.getFare() <=fare)
{
System.out.println(busObj.getBusId()+" "+busObj.getBusName()+" "+busObj.getFare()+" "+busObj.getBusType());
}
}
}
public static void main(String args[])
{
Bus obj1 = new Bus(1001,"Kaveri",900,"sleeper");
Bus obj2 = new Bus(1002,"",1000,"semi-sleeper");
Bus obj3 = new Bus(1003,"Komitla",1900,"sleeper");
Bus obj4 = new Bus(1004,"MorningStar",2900,"sleeper");
Bus obj5 = new Bus(1005,"Vaibhav",850,"sleeper");
Bus obj6 = new Bus(1006,"KMBT",1900,"semi-sleeper");
Bus obj7 = new Bus(1007,"Orange",3600,"sleeper");
Bus obj8 = new Bus(1008,"Green",500,"semi-sleeper");
Bus obj9 = new Bus(1009,"REDT",700,"sleeper");
Bus obj10 = new Bus(1010,"Test",1000,"semi-sleeper");
Bus busses[] = new Bus[]{obj1,obj2,obj3,obj4,obj5,obj6,obj7,obj8,obj9,obj10};
BusDemo obj = new BusDemo();
obj.getBusses(busses,"non-ac");
System.out.println("============================================");
obj.getBusses(busses,"sleeper",900);
}
} | [
"[email protected]"
]
| |
85cc84f4bc115788f5abbe6f2ccc0c6ae70a4d46 | 251f8d10913af579ac03ef943d431ba023a5a8f0 | /spring-boot-dubbo-zkconfig/boot-dubbo-zkconfig-api/src/main/java/com/github/vspro/zk/api/IHelloService.java | c7aee8489309787ee4a098ed03ab76dc241214a7 | []
| no_license | mraye/dubbo-demo-parent | 06e78b52c0fc88c1ca1d7dcef68ff2b53b25e9f0 | ef803313d210974bdb6f66193372484ec29122e6 | refs/heads/master | 2020-05-18T11:07:43.133900 | 2019-05-01T08:00:01 | 2019-05-01T08:00:01 | 184,370,534 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 432 | java | package com.github.vspro.zk.api;
import javax.ws.rs.*;
import javax.ws.rs.core.MediaType;
@Path("hello")
@Consumes({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
@Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
public interface IHelloService {
@GET
@Path("sayHi")
public String sayHi(@QueryParam("to") String to);
@GET
@Path("getWxConfig")
public String getWxConfig();
}
| [
"[email protected]"
]
| |
91e982821ad599a47eb33c260dfb2ed52ae7ca35 | 59d5bbbb427c8ee871b1603d337a7cda3f3a57af | /Java/Assignments/asgmt_m4_cao/asgmt6/TestAverage.java | 89f780d0e5985342ec1da996f8afa20c28b4c7e5 | []
| no_license | chaitanya7199/ASFT-Repo | a92bdedaf2191769df61fe0282a37e465744dcaa | 52f74419f95a7eeaf5cfa3e1cac60dbfbac4120f | refs/heads/master | 2022-12-31T11:47:33.319995 | 2020-10-25T11:27:22 | 2020-10-25T11:27:22 | 307,050,779 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 858 | java | package asgmt6;
import java.text.DecimalFormat;
class Averager {
public static double avg(int a, int b) {
int sum = a+b;
double average = (double)(sum/2);
return average;
}
public static double avg(int a, int b, int c) {
int sum = a+b+c;
double average = (double)(sum/3);
return average;
}
public static double avg(double a, double b) {
double sum = a+b;
double average = (double)(sum/2);
return average;
}
}
public class TestAverage {
public static void main(String[] args) {
// TODO Auto-generated method stub
DecimalFormat df = new DecimalFormat("#0.00");
System.out.println("Average of 2 and 3 is "+df.format(Averager.avg(2, 3)));
System.out.println("Average of 2, 3 and 4 is "+df.format(Averager.avg(2, 3, 4)));
System.out.println("Average of 2.0 and 3.0 is "+df.format(Averager.avg(2.0, 3.0)));
}
}
| [
"[email protected]"
]
| |
164e881ded56dd78e0d16c7706835b4618cca378 | b93ae3a29f7bf37509dca21e8190c631d1be6822 | /sepa-jar/src/test/java/at/metalab/iban/test/TestBo.java | 283365e4d4ef0033314c4a5f1b6f904fcb4e1a07 | []
| no_license | Metalab/sepa | 7a53df66d8d0cbfc3e165847849ecb3950b9c39c | d319d4a86f225767bb47244a97fd6b219412ce75 | refs/heads/master | 2021-01-19T06:24:06.980815 | 2014-01-04T03:50:57 | 2014-01-04T03:50:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 628 | java | package at.metalab.iban.test;
import org.junit.Assert;
import org.junit.Test;
import at.metalab.sepa.bo.IbanKonto;
public class TestBo {
@Test
public void testEquals() {
IbanKonto ibanKonto1 = new IbanKonto("1234", "567");
IbanKonto ibanKonto2 = new IbanKonto("1234", "567");
Assert.assertEquals(ibanKonto1, ibanKonto2);
}
@Test
public void testGetBic() {
IbanKonto ibanKonto = new IbanKonto("1234", "567");
Assert.assertEquals("1234", ibanKonto.getBic());
}
@Test
public void testGetIban() {
IbanKonto ibanKonto = new IbanKonto("1234", "567");
Assert.assertEquals("567", ibanKonto.getIban());
}
}
| [
"[email protected]"
]
| |
fbf03f266e98356be71ebe0e733307eea4b433d0 | 7f202c1aba4bdb1e01d6563ce101c371d3cf7ade | /src/main/java/com/cours/allo/docteur/dao/ConnectionHelper.java | f49bc7195b79f1c55e59190f49dcb271eef99c0c | []
| no_license | mor02/etape5-allo-docteur | eba7105dab1d1c3e3b46a5e6e48713be63d96e9e | 24c0f9fd224f218f74a07035d39294c7f2e4ab2b | refs/heads/master | 2020-04-16T15:21:18.957010 | 2019-01-14T16:58:33 | 2019-01-14T16:58:33 | 165,699,559 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 660 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.cours.allo.docteur.dao;
import java.sql.Connection;
import javax.persistence.EntityManager;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
*
* @author ElHadji
*/
public class ConnectionHelper {
private static final Log log = LogFactory.getLog(ConnectionHelper.class);
public static void closeSqlResources(EntityManager em) {
}
public static void closeSqlResources(Connection connection) {
}
}
| [
"[email protected]"
]
| |
dc44e6b9bbfc207fffc50dea2f791cd99b57fe4d | c4321aae57a94a9b67eea4ac75948c4400cc89d4 | /platforms/android/wear/src/main/java/com/example/wear/DataCollectionService.java | 00f42c14f737ba20a7b88b69ceffed142b932306 | []
| no_license | dangnguyenn/Fall-Detection | ab6edd08820762ef139e23219c2dc140005acf01 | 2d6f09ae1a180b5431d2537604fe90e10f0ac1f8 | refs/heads/master | 2023-05-30T02:00:51.883594 | 2021-06-18T22:56:55 | 2021-06-18T22:56:55 | 348,872,920 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,052 | java | package com.example.wear;
import android.app.IntentService;
import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.os.Build;
import android.os.IBinder;
import android.util.Log;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.app.NotificationCompat;
import androidx.core.content.ContextCompat;
import com.google.android.gms.tasks.Task;
import com.google.android.gms.tasks.Tasks;
import com.google.android.gms.wearable.DataClient;
import com.google.android.gms.wearable.DataItem;
import com.google.android.gms.wearable.MessageClient;
import com.google.android.gms.wearable.MessageEvent;
import com.google.android.gms.wearable.Node;
import com.google.android.gms.wearable.PutDataMapRequest;
import com.google.android.gms.wearable.PutDataRequest;
import com.google.android.gms.wearable.Wearable;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.Serializable;
import java.sql.Timestamp;
import java.util.Iterator;
import java.util.List;
public class DataCollectionService extends Service implements SensorEventListener, MessageClient.OnMessageReceivedListener {
private SensorManager sensorManager;
private Sensor accelerometer;
private float[] values;
JSONArray sensorData = new JSONArray();
private String selectedActivity;
DataClient dataClient;
JSONObject obj;
private Node mNode;
int count = 0;
public void connect() {
Task<List<Node>> nodeListTask = Wearable.getNodeClient(getApplicationContext()).getConnectedNodes();
new Thread(new Runnable() {
@Override
public void run() {
try {
List<Node> nodeList = Tasks.await(nodeListTask);
for(Node node: nodeList){
if (node.isNearby()) {
mNode = node;
break;
}
mNode = node;
}
} catch (Exception e) {
e.printStackTrace();
}
}
}).start();
}
@Override
public void onCreate() {
super.onCreate();
Wearable.getMessageClient(this).addListener(this);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.d("DataCollectionService :", "onStartCommand()");
connect();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel serviceChannel = new NotificationChannel(
"ForegroundServiceChannel",
"Foreground Service Channel",
NotificationManager.IMPORTANCE_DEFAULT
);
NotificationManager manager = getSystemService(NotificationManager.class);
manager.createNotificationChannel(serviceChannel);
}
Intent notificationIntent = new Intent(this, MainActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this,
0, notificationIntent, 0);
Notification notification = new NotificationCompat.Builder(this, "ForegroundServiceChannel")
.setContentTitle("Foreground Service")
.setContentText(selectedActivity)
.setSmallIcon(R.drawable.ic_cc_checkmark)
.setContentIntent(pendingIntent)
.build();
startForeground(1, notification);
sensorManager = (SensorManager) getSystemService(Context.SENSOR_SERVICE);
accelerometer = sensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
return START_NOT_STICKY;
}
@Override
public void onDestroy() {
super.onDestroy();
sensorManager.unregisterListener(this);
Log.d("DataCollectionService :", "onDestroy()");
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
Log.d("DataCollectionService :", "onBind()");
return null;
}
@Override
public void onSensorChanged(SensorEvent event) {
values = event.values;
try {
obj = new JSONObject();
obj.put("x", values[0] / -9.8);
obj.put("y", values[1] / -9.8);
obj.put("z", values[2] / -9.8);
obj.put("timestamp", new Timestamp(System.currentTimeMillis()));
Log.d("Message Created: ", obj.toString());
count++;
Log.d("Count: ", "" + count);
Wearable.getMessageClient(getApplicationContext()).sendMessage(mNode.getId(), "/fall_data", obj.toString().getBytes());
} catch (JSONException e) {
e.printStackTrace();
}
}
@Override
public void onAccuracyChanged(Sensor sensor, int accuracy) {
Log.d("DataCollectionService :", "onAccuracyChanged()");
}
@Override
public void onMessageReceived(@NonNull MessageEvent messageEvent) {
try {
JSONObject jsonObject = new JSONObject(new String(messageEvent.getData()));
Log.d("Message from phone", "onMessageReceived: "+ jsonObject.toString());
String message = jsonObject.getString("message");
if(message.equals("start")) {
Log.d("start sensor", String.valueOf(SensorManager.SENSOR_DELAY_GAME));
sensorManager.registerListener(this, accelerometer, SensorManager.SENSOR_DELAY_GAME);
}
else if(message.equals("fall")) {
sensorManager.unregisterListener(this);
}
} catch (JSONException | NullPointerException e) {
e.printStackTrace();
}
}
}
| [
"[email protected]"
]
| |
a253f952dc6df8af4b9c7cc11c72c5c53ab0f9a9 | 11ed287dea2f24d4cc60fddc58f808f16b9c36f7 | /Q33.java | cd4299ccf98c2f286f6f574824776ee0643cfb05 | []
| no_license | Supriya-Deshmukh/Core_Java | 7734382938c15626875887de602fd566fb5d17f5 | 5870ab7df1b176f443f90105eb1ce1f4b4a28170 | refs/heads/main | 2022-12-26T18:08:39.655718 | 2020-10-06T13:24:05 | 2020-10-06T13:24:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 365 | java | class Employee{
private int empId;
private String empName;
void set(int empId,String empName)
{
this.empId=empId;
this.empName=empName;
}
void show()
{
System.out.println(empId+" "+empName);
}
}
class EmployeeDemo{
public static void main(String args[])
{
Employee e = new Employee();
e.set(124,"Supriya");
e.show();
}
} | [
"[email protected]"
]
| |
cc55591c7f60d2d38b58457b2cc7f080ff3bee8b | 48b31397faa9c198b511d6db3751b80db5736d4b | /src/main/java/ar/com/nefre/modelo/Numero.java | 1a4de32497678ea36a9f3755a89aced87577e4f6 | []
| no_license | davidosvaldoperez/iterator-visitor-pof | eecbd4cddc7d729a6414548ce4f86d905917cbf4 | e6a4ca0c021603ae306ab808b8d1ccfc500435f7 | refs/heads/master | 2020-04-24T18:56:08.446912 | 2019-02-23T09:26:24 | 2019-02-23T09:30:13 | 172,195,876 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 584 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package ar.com.nefre.modelo;
/**
*
* @author nefre
*/
public class Numero implements Simbolo {
Integer numero;
public Numero(Integer numero) {
this.numero = numero;
}
@Override
public String getStringRepresentation() {
return String.format("Es un %s", numero);
}
@Override
public String toString() {
return numero.toString();
}
}
| [
"[email protected]"
]
| |
3754458c6de6a72789df6c4ddc500b14db96ac46 | 575eeee79c4737814328c955b9aaf154b9efe161 | /21-SB-StudentRegistration/src/main/java/in/synerzip/service/StudentService.java | e09c7a6d98277323f539c164242a4ef9c5267f44 | []
| no_license | Saudagarsarfaraz/SpringBoot | 865706c49b37d12d7ea9a89105fcd3287742dd18 | dfed393fc68c967df1d6c21101b63709926561bd | refs/heads/main | 2023-08-13T03:22:18.944849 | 2021-09-20T05:42:43 | 2021-09-20T05:42:43 | 406,110,777 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,357 | java | package in.synerzip.service;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import in.synerzip.entity.Courses;
import in.synerzip.entity.Genders;
import in.synerzip.entity.Timings;
import in.synerzip.repository.CoursesRepository;
import in.synerzip.repository.GendersRepository;
import in.synerzip.repository.TimingsRepository;
@Service
public class StudentService {
@Autowired
private CoursesRepository coursesRepo;
@Autowired
private GendersRepository gendersRepo;
@Autowired
private TimingsRepository timingsRepo;
public List<String> getCourses() {
List<Courses> findAll = coursesRepo.findAll();
List<String> courses = new ArrayList<>();
findAll.forEach(course -> courses.add(course.getCourseName()));
return courses;
}
public List<String> getGenders() {
List<Genders> findAll = gendersRepo.findAll();
List<String> genders = new ArrayList<>();
findAll.forEach(gender -> genders.add(gender.getGenderName()));
return genders;
}
public List<String> getTimings() {
List<Timings> findAll = timingsRepo.findAll();
List<String> timings = new ArrayList<>();
findAll.forEach(timing -> timings.add(timing.getTimingName()));
return timings;
}
}
| [
"[email protected]"
]
| |
ae98990f2cd420360e3977b0ba97202db214a1ba | 69a4f2d51ebeea36c4d8192e25cfb5f3f77bef5e | /method_33.java | 81755569e86ba598a16fe55be571b57b65ceabe5 | []
| no_license | P79N6A/icse_20_user_study | 5b9c42c6384502fdc9588430899f257761f1f506 | 8a3676bc96059ea2c4f6d209016f5088a5628f3c | refs/heads/master | 2020-06-24T08:25:22.606717 | 2019-07-25T15:31:16 | 2019-07-25T15:31:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 120 | java | @Override public void _XXXXX_(PartitionedEvent partitionedEvent){
outputCollector.ack(partitionedEvent.getAnchor());
} | [
"[email protected]"
]
| |
d06dff69706cae6655fcec159cc0b104a7978101 | a1cb9ad1122b1923e700583dc84884e4415e3489 | /Week 5/IsGraphBipartite.java | d43e8d521e060ca2b61b7643d9e43abea5aac36c | []
| no_license | OliverAkhtar/WallbreakersAssignments | 1365c3e51920ce236ae3cdba530f46d25e8a6b6b | e36bb129208c85ffd57ba0b9477ba30251a0263b | refs/heads/master | 2020-06-11T13:40:02.345647 | 2019-08-06T22:22:42 | 2019-08-06T22:22:42 | 193,984,843 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 842 | java | class Solution {
public boolean isBipartite(int[][] graph) {
int len = graph.length;
int[] colors = new int[len];
for (int i = 0; i < len; i++) {
if (colors[i] != 0) continue;
Queue<Integer> queue = new LinkedList<>();
queue.offer(i);
colors[i] = 1;
while (!queue.isEmpty()) {
int cur = queue.poll();
for (int next : graph[cur]) {
if (colors[next] == 0) {
colors[next] = -colors[cur];
queue.offer(next);
} else if (colors[next] != -colors[cur]) {
return false;
}
}
}
}
return true;
}
} | [
"[email protected]"
]
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.