blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
410
content_id
stringlengths
40
40
detected_licenses
listlengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
684M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
132 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
9.45M
extension
stringclasses
28 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
352
72c0567c0c8af0a02064e28c84e05b4d327b3658
b675d109567b2e106a2cc169012243edb4e60b11
/src/main/java/com/hrm/qa/pages/LoginPage.java
46db026a984c2c85a043ad1edd92b9884418f65a
[]
no_license
Naween-Kumar/PageObjectModel
e493939cf7edc53aa18f284e142b3d3398af5519
cdb70169fe40d2a42468a0884b6b9429db176a44
refs/heads/master
2023-04-24T06:47:34.480107
2021-05-16T21:57:08
2021-05-16T21:57:08
367,992,650
0
0
null
null
null
null
UTF-8
Java
false
false
780
java
package com.hrm.qa.pages; import java.io.IOException; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.PageFactory; import com.hrm.qa.base.TestBase; public class LoginPage extends TestBase { @FindBy(name = "txtUsername") WebElement Username; @FindBy(name = "txtPassword") WebElement Password; @FindBy(name = "Submit") WebElement btnLogin; // Initializtion of all objects public LoginPage() throws IOException { PageFactory.initElements(driver, this); } public String validationLoginPageTitle() { return driver.getTitle(); } public HomePage login(String un, String pwd) { Username.sendKeys(un); Password.sendKeys(pwd); btnLogin.click(); return new HomePage(); } }
[ "naween.goyal@gmail.com" ]
naween.goyal@gmail.com
3b4a98206fc57c30723646684da63fc66790bd3b
9415646910b04fa12718ea128a096629dcc22733
/2. godina/oop vezbe/cas01 - uvod/ParniBrojevi.java
cecc48d4e7c6b34db345de9ae6bcde1262ef14dc
[]
no_license
SvetlanaBicanin/MATF-materijali
306b25fe8c28ea3a8077c83147e27316d55c892f
21d7da5c62839115eda126819c7fd34a3399c022
refs/heads/master
2023-06-01T14:43:47.176006
2021-06-13T13:40:24
2021-06-13T13:40:24
null
0
0
null
null
null
null
UTF-8
Java
false
false
383
java
import java.util.Scanner; public class ParniBrojevi { static void prikaziparne(int n){ for(int i = 2; i <= n; i += 2) System.out.print(i + " "); System.out.println(); } public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); prikaziparne(n); sc.close(); } }
[ "mikimina98@gmail.com" ]
mikimina98@gmail.com
99798c1bb2f8e31df7afb7f5cdb6872ca278c598
7224a3106edfb9ddc7d5d5d8a0a0d5a9c4b3e06f
/canalmate-api/src/main/java/com/ppdai/canalmate/api/dao/canal/server/DestinationsConfigMapper.java
ab7be22aac43b0397d91d949f7cbd9165e6c0594
[]
no_license
waters321/canal-manager
5acb0536c74130bcdafedb71db33d0af0b475f22
da3db461a33f1814079a652c9abb39ecd7cdfc64
refs/heads/master
2020-04-11T15:20:35.488187
2018-12-20T04:03:47
2018-12-20T04:03:47
161,888,623
0
1
null
2018-12-20T04:00:18
2018-12-15T09:11:00
Java
UTF-8
Java
false
false
894
java
package com.ppdai.canalmate.api.dao.canal.server; import java.util.Map; import org.apache.ibatis.annotations.Mapper; import com.ppdai.canalmate.api.model.canal.server.DestinationsConfig; @Mapper public interface DestinationsConfigMapper { int deleteByPrimaryKey(Long id); int insert(DestinationsConfig record); int insertSelective(DestinationsConfig record); DestinationsConfig selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(DestinationsConfig record); int updateByPrimaryKey(DestinationsConfig record); Long selectCanalId(String canalServerName); void deleteDestinationByDestinationName(String destinationName); Map<String, Object> selectDestinationOldConfigByDestinationName(String destinationName); void updateDestinationByDestinationName(DestinationsConfig record); Map<String, Object> selectDestinationDeployInfo(String destinationName); }
[ "zhangmiao@udesk.cn" ]
zhangmiao@udesk.cn
eb1388e0ae37d946bb24ada7a1eeca92637532cc
b19cd20d6f10d3c85b686481b3624c038716a8f2
/src/main/java/com/hwj/server/core/HttpServer.java
8d2d8898e6a920282c087484338675c15d08afdc
[]
no_license
HWJun94/HttpServer
ad1c5b14086ef7017d6bf6fa0ffbf4156e7175b2
d93701bfc1f5ab3bb635d797857f14e4899335b4
refs/heads/master
2020-04-03T09:40:21.014746
2018-10-29T07:59:47
2018-10-29T07:59:47
155,172,661
1
0
null
null
null
null
UTF-8
Java
false
false
2,055
java
package com.hwj.server.core; import com.hwj.server.RequestDispatcher; import io.netty.bootstrap.ServerBootstrap; import io.netty.channel.Channel; import io.netty.channel.ChannelOption; import io.netty.channel.EventLoopGroup; import io.netty.channel.nio.NioEventLoopGroup; import io.netty.channel.socket.nio.NioServerSocketChannel; import io.netty.handler.logging.LogLevel; import io.netty.handler.logging.LoggingHandler; import io.netty.handler.ssl.SslContext; public class HttpServer { private static boolean ssl; private static SslContext sslContext; private static String ip; private static int serverPort; private RequestDispatcher requestDispatcher; //constructor public HttpServer(RequestDispatcher rd) { this("localhost", 8080, rd); } public HttpServer(String ip, int serverPort, RequestDispatcher rd) { this(ip, serverPort, false, null, rd); } public HttpServer(String ip, int serverPort, boolean ssl, SslContext sslContext, RequestDispatcher rd) { this.ip = ip; this.serverPort = serverPort; this.ssl = ssl; this.sslContext = sslContext; this.requestDispatcher = rd; } public void start() throws Exception { //Configure the server EventLoopGroup bossGroup = new NioEventLoopGroup(1); EventLoopGroup workerGroup = new NioEventLoopGroup(); try { ServerBootstrap boot = new ServerBootstrap(); boot.option(ChannelOption.SO_BACKLOG, 1024); boot.group(bossGroup, workerGroup) .channel(NioServerSocketChannel.class) .handler(new LoggingHandler(LogLevel.INFO)) .childHandler(new HttpServerInitializer(sslContext, requestDispatcher)); Channel channel = boot.bind(ip, serverPort).sync().channel(); channel.closeFuture().sync(); } finally { //Shutdown Gracefully bossGroup.shutdownGracefully(); workerGroup.shutdownGracefully(); } } }
[ "hwj_xxx0210@163.com" ]
hwj_xxx0210@163.com
bfea5a54135e4b710d9db70aed2ae97b9f8b356b
7ce6aa156a447e25f6c0aaf292b27a35245b73cb
/src/org/rapla/gui/internal/ConnectionOption.java
a58924e1255666feec7693223855d4638c56e9ae
[]
no_license
snadahalli/snadahalli-rapla
a1e4b5bb46b15c1a1be223a49f6872c792d6992f
5305b50e61e9c31db602be2ef67cf1956f8ee530
refs/heads/master
2021-01-19T05:54:50.488074
2013-12-23T03:32:31
2013-12-23T03:32:31
32,133,039
0
0
null
null
null
null
UTF-8
Java
false
false
2,954
java
/*--------------------------------------------------------------------------* | Copyright (C) 2006 Christopher Kohlhaas | | | | 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. A copy of the license has been included with | | these distribution in the COPYING file, if not go to www.fsf.org | | | | As a special exception, you are granted the permissions to link this | | program with every library, which license fulfills the Open Source | | Definition as published by the Open Source Initiative (OSI). | *--------------------------------------------------------------------------*/ package org.rapla.gui.internal; import java.util.Locale; import javax.swing.JComponent; import javax.swing.JLabel; import javax.swing.JPanel; import org.rapla.components.calendar.RaplaNumber; import org.rapla.components.layout.TableLayout; import org.rapla.entities.configuration.Preferences; import org.rapla.facade.UpdateModule; import org.rapla.framework.RaplaContext; import org.rapla.framework.RaplaException; import org.rapla.gui.OptionPanel; import org.rapla.gui.RaplaGUIComponent; public class ConnectionOption extends RaplaGUIComponent implements OptionPanel { JPanel panel = new JPanel(); RaplaNumber seconds = new RaplaNumber(new Double(10),new Double(10),null, false); Preferences preferences; public ConnectionOption(RaplaContext sm) { super( sm); seconds.getNumberField().setBlockStepSize( 60); seconds.getNumberField().setStepSize( 10); double pre = TableLayout.PREFERRED; double fill = TableLayout.FILL; panel.setLayout( new TableLayout(new double[][] {{pre, 5, pre,5, pre}, {pre,fill}})); panel.add( new JLabel(getString("refresh") + ": " + getI18n().format("interval.format", "","")),"0,0" ); panel.add( seconds,"2,0"); panel.add( new JLabel(getString("seconds")),"4,0" ); addCopyPaste( seconds.getNumberField()); } public JComponent getComponent() { return panel; } public String getName(Locale locale) { return getString("connection"); } public void setPreferences( Preferences preferences) { this.preferences = preferences; } public void show() throws RaplaException { int delay = preferences.getEntryAsInteger( UpdateModule.REFRESH_INTERVAL_ENTRY, UpdateModule.REFRESH_INTERVAL_DEFAULT); seconds.setNumber( new Long(delay / 1000)); } public void commit() { int delay = seconds.getNumber().intValue() * 1000; preferences.putEntry( UpdateModule.REFRESH_INTERVAL_ENTRY, delay ); } }
[ "christopher.kohlhaas@gmail.com@f78d5ace-84b9-81af-d60f-742a6fa3a8cb" ]
christopher.kohlhaas@gmail.com@f78d5ace-84b9-81af-d60f-742a6fa3a8cb
3125936caea36d1709658ae18b7bfb7819d5a45b
15b5c401aa32b5af7ab964ce2df7804cd1a88629
/src/main/java/org/acme/emailservice/model/enums/ELabelRole.java
ab4903fe804128a77a0c5c92deb1d458c6c901a6
[]
no_license
uma-email/email-service
3eb6a6266f58003189b332032224c315847e1a2c
14bec276f8a83c8bc430a421977c00a2ae7e981a
refs/heads/master
2023-05-01T23:10:45.781862
2021-05-18T17:27:03
2021-05-18T17:27:03
335,661,641
1
0
null
null
null
null
UTF-8
Java
false
false
383
java
package org.acme.emailservice.model.enums; public enum ELabelRole { INBOX, SNOOZED, SENT, DRAFTS, OUTGOING, INCOMING, SPAM, TRASH, UNREAD, STARRED, IMPORTANT, INVOICE, CATEGORY_PERSONAL, CATEGORY_SOCIAL, CATEGORY_PROMOTIONS, CATEGORY_UPDATES, CATEGORY_FORUMS, CATEGORY_BUSINESS, CATEGORY_HEALTHCARE }
[ "zboran@federizer.com" ]
zboran@federizer.com
c69b33bb2597ed29eeb490f27ff00f5e2232e906
ed5159d056e98d6715357d0d14a9b3f20b764f89
/test/irvine/oeis/a002/A002082Test.java
e63173bddbeea187a078a3581ae34d11c8aa814a
[]
no_license
flywind2/joeis
c5753169cf562939b04dd246f8a2958e97f74558
e5efd6971a0062ac99f4fae21a7c78c9f9e74fea
refs/heads/master
2020-09-13T18:34:35.080552
2019-11-19T05:40:55
2019-11-19T05:40:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
195
java
package irvine.oeis.a002; import irvine.oeis.AbstractSequenceTest; /** * Tests the corresponding class. * @author Sean A. Irvine */ public class A002082Test extends AbstractSequenceTest { }
[ "sairvin@gmail.com" ]
sairvin@gmail.com
e8b1154ef45ae3dc3795a467ec32d3d23bb75057
a0ac0c37201059354221d115b4383a5a6e7bc997
/BurgerKing/src/main/java/com/burger/event/model/NStoreDAO.java
8ec9b741157bcd2b0603200fda09b18035aac3a9
[]
no_license
hyeeerin/BurgerKing
c04cb63c93e747a7a31ce904c6ecd0db4c717fc0
7873683ce439bc6cf0d84a94931afc291a6d8f51
refs/heads/main
2023-06-30T01:43:43.171353
2021-08-03T06:54:06
2021-08-03T06:54:06
391,600,409
0
0
null
null
null
null
UTF-8
Java
false
false
946
java
package com.burger.event.model; import java.util.List; import com.burger.cs.model.PageDTO; public interface NStoreDAO { public int getListCount(); // 전체 게시물 수를 확인하는 메서드. public List<NStoreDTO> getStoreList(PageDTO dto); // 전체 리스트를 호출 추상메서드. public int insertStore(NStoreDTO dto); // 게시물 추가 호출 추상메서드. public void readCount(int no); // 조회수를 증가시키는 추상메서드. public NStoreDTO storeCont(int no); // 게시물 상세 내역 호출 추상메서드. public int updateStore(NStoreDTO dto); // 게시물 수정 호출 추상메서드. public int deleteStore(int no); // 게시물 삭제 호출 추상메서드. public void reSequence(int no); // 삭제 시 게시물 번호 재작업 추상메서드. }
[ "crown1693@naver.com" ]
crown1693@naver.com
4828fbe0bc9b4dd71ea1da02afc1e22b0378eab8
6ada090d9654721ad8f61f7119d18595925c72e3
/src/org/engine/graph/InstancedMesh.java
b941feef14bd8a86ed400c21928527e4e974ade6
[]
no_license
Ajikozau/MirajiEngineLWJGL
a456dc53b90e5db97086328582835b34a39a7f64
1b7ada52692c0d34682c0b05a57c0e7869a80b29
refs/heads/master
2021-01-11T16:39:42.746426
2017-03-04T10:53:29
2017-03-04T10:53:29
80,134,008
0
0
null
null
null
null
UTF-8
Java
false
false
6,006
java
package org.engine.graph; import java.nio.FloatBuffer; import java.util.List; import org.joml.Matrix4f; import static org.lwjgl.opengl.GL11.*; import static org.lwjgl.opengl.GL15.*; import static org.lwjgl.opengl.GL20.*; import static org.lwjgl.opengl.GL30.*; import static org.lwjgl.opengl.GL31.*; import static org.lwjgl.opengl.GL33.*; import org.lwjgl.system.MemoryUtil; import org.engine.elements.GameElement; public class InstancedMesh extends Mesh { private static final int FLOAT_SIZE_BYTES = 4; private static final int VECTOR4F_SIZE_BYTES = 4 * FLOAT_SIZE_BYTES; private static final int MATRIX_SIZE_FLOATS = 4 * 4; private static final int MATRIX_SIZE_BYTES = MATRIX_SIZE_FLOATS * FLOAT_SIZE_BYTES; private static final int INSTANCE_SIZE_BYTES = MATRIX_SIZE_BYTES * 2 + FLOAT_SIZE_BYTES * 2; private static final int INSTANCE_SIZE_FLOATS = MATRIX_SIZE_FLOATS * 2 + 2; private final int numInstances; private final int instanceDataVBO; private FloatBuffer instanceDataBuffer; public InstancedMesh(float[] positions, float[] textCoords, float[] normals, int[] indices, int numInstances, float[] bounds) { super(positions, textCoords, normals, indices, createEmptyIntArray(MAX_WEIGHTS * positions.length / 3, 0), createEmptyFloatArray(MAX_WEIGHTS * positions.length / 3, 0), bounds); this.numInstances = numInstances; glBindVertexArray(vaoId); // Model View Matrix instanceDataVBO = glGenBuffers(); vboIdList.add(instanceDataVBO); instanceDataBuffer = MemoryUtil.memAllocFloat(numInstances * INSTANCE_SIZE_FLOATS); glBindBuffer(GL_ARRAY_BUFFER, instanceDataVBO); int start = 5; int strideStart = 0; for (int i = 0; i < 4; i++) { glVertexAttribPointer(start, 4, GL_FLOAT, false, INSTANCE_SIZE_BYTES, strideStart); glVertexAttribDivisor(start, 1); start++; strideStart += VECTOR4F_SIZE_BYTES; } // Light view matrix for (int i = 0; i < 4; i++) { glVertexAttribPointer(start, 4, GL_FLOAT, false, INSTANCE_SIZE_BYTES, strideStart); glVertexAttribDivisor(start, 1); start++; strideStart += VECTOR4F_SIZE_BYTES; } // Texture offsets glVertexAttribPointer(start, 2, GL_FLOAT, false, INSTANCE_SIZE_BYTES, strideStart); glVertexAttribDivisor(start, 1); glBindBuffer(GL_ARRAY_BUFFER, 0); glBindVertexArray(0); } @Override public void cleanUp() { super.cleanUp(); if (this.instanceDataBuffer != null) { MemoryUtil.memFree(this.instanceDataBuffer); this.instanceDataBuffer = null; } } @Override protected void initRender() { super.initRender(); int start = 5; int numElements = 4 * 2 + 1; for (int i = 0; i < numElements; i++) { glEnableVertexAttribArray(start + i); } } @Override protected void endRender() { int start = 5; int numElements = 4 * 2 + 1; for (int i = 0; i < numElements; i++) { glDisableVertexAttribArray(start + i); } super.endRender(); } public void renderListInstanced(List<GameElement> gameItems, Transformation transformation, Matrix4f viewMatrix, Matrix4f lightViewMatrix) { renderListInstanced(gameItems, false, transformation, viewMatrix, lightViewMatrix); } public void renderListInstanced(List<GameElement> gameItems, boolean billBoard, Transformation transformation, Matrix4f viewMatrix, Matrix4f lightViewMatrix) { initRender(); int chunkSize = numInstances; int length = gameItems.size(); for (int i = 0; i < length; i += chunkSize) { int end = Math.min(length, i + chunkSize); List<GameElement> subList = gameItems.subList(i, end); renderChunkInstanced(subList, billBoard, transformation, viewMatrix, lightViewMatrix); } endRender(); } private void renderChunkInstanced(List<GameElement> gameItems, boolean billBoard, Transformation transformation, Matrix4f viewMatrix, Matrix4f lightViewMatrix) { this.instanceDataBuffer.clear(); int i = 0; Texture text = getMaterial().getTexture(); for (GameElement gameItem : gameItems) { Matrix4f modelMatrix = transformation.buildModelMatrix(gameItem); if (viewMatrix != null) { if (billBoard) { viewMatrix.transpose3x3(modelMatrix); } Matrix4f modelViewMatrix = transformation.buildModelViewMatrix(modelMatrix, viewMatrix); modelViewMatrix.get(INSTANCE_SIZE_FLOATS * i, instanceDataBuffer); } if (lightViewMatrix != null) { Matrix4f modelLightViewMatrix = transformation.buildModelLightViewMatrix(modelMatrix, lightViewMatrix); modelLightViewMatrix.get(INSTANCE_SIZE_FLOATS * i + MATRIX_SIZE_FLOATS, this.instanceDataBuffer); } if (text != null) { int col = gameItem.getTextPos() % text.getNumCols(); int row = gameItem.getTextPos() / text.getNumCols(); float textXOffset = (float) col / text.getNumCols(); float textYOffset = (float) row / text.getNumRows(); int buffPos = INSTANCE_SIZE_FLOATS * i + MATRIX_SIZE_FLOATS * 2; this.instanceDataBuffer.put(buffPos, textXOffset); this.instanceDataBuffer.put(buffPos + 1, textYOffset); } i++; } glBindBuffer(GL_ARRAY_BUFFER, instanceDataVBO); glBufferData(GL_ARRAY_BUFFER, instanceDataBuffer, GL_DYNAMIC_DRAW); glDrawElementsInstanced( GL_TRIANGLES, getVertexCount(), GL_UNSIGNED_INT, 0, gameItems.size()); glBindBuffer(GL_ARRAY_BUFFER, 0); } }
[ "angeloalvisi@gmail.com" ]
angeloalvisi@gmail.com
43ffa45e53be88b99f44c6b380dd1aeaa294a284
8a59fc6208231e2d7843e523cfdc9a3a362813b4
/org.caleydo.view.stratomex/src/org/caleydo/view/stratomex/brick/IContextMenuBrickFactory.java
770c6ce43b4ec0f3270b5c8d4fd5f4518e06074b
[]
no_license
Caleydo/caleydo
17c51b10a465512a0c077e680da648d9a6061136
c2f1433baf5bd2c0c5bea8c0990d67e946ed5412
refs/heads/develop
2020-04-07T06:26:03.464510
2016-12-15T17:07:08
2016-12-15T17:07:08
9,451,506
37
11
null
2016-12-15T17:07:08
2013-04-15T15:13:38
Java
UTF-8
Java
false
false
1,075
java
/******************************************************************************* * Caleydo - Visualization for Molecular Biology - http://caleydo.org * Copyright (c) The Caleydo Team. All rights reserved. * Licensed under the new BSD license, available at http://caleydo.org/license ******************************************************************************/ package org.caleydo.view.stratomex.brick; import org.caleydo.core.data.perspective.table.TablePerspective; import org.caleydo.core.view.contextmenu.AContextMenuItem; import org.caleydo.view.stratomex.column.BrickColumn; /** * extension point interface for creating context menu entries for the gl brick used for triggering scoring * * @author Samuel Gratzl * */ public interface IContextMenuBrickFactory { public static final String EXTENSION_ID = "org.caleydo.view.stratomex.brick.contextmenu"; public Iterable<AContextMenuItem> createGroupEntries(BrickColumn referenceColumn, TablePerspective groupTable); public Iterable<AContextMenuItem> createStratification(BrickColumn referenceColumn); }
[ "marc.streit@jku.at" ]
marc.streit@jku.at
9ec3d6e7331ee16d2bcda7ee4fa77a0184fbd73c
a3a6250b107cdd064d713996496c1d29a3e6184e
/target/tomcat/work/Tomcat/localhost/_/org/apache/jsp/WEB_002dINF/view/loginPage/dlsb_jsp.java
ab8def781178e68020e57d149deab275c4abaf72
[]
no_license
BiptPA/TheFirstMVCDemo1
1ce4b1dc92c1c1525aefd55cd8502c131d3d94f7
5406744355353cf01bc9ac9dcd68edc061d8da5d
refs/heads/master
2022-12-25T08:27:39.770361
2019-05-28T12:54:53
2019-05-28T12:54:53
172,691,399
1
1
null
2022-12-16T09:45:10
2019-02-26T10:39:14
Java
UTF-8
Java
false
false
7,324
java
/* * Generated by the Jasper component of Apache Tomcat * Version: Apache Tomcat/7.0.47 * Generated at: 2019-05-27 14:01:45 UTC * Note: The last modified time of this file was set to * the last modified time of the source file after * generation to assist with modification tracking. */ package org.apache.jsp.WEB_002dINF.view.loginPage; import javax.servlet.*; import javax.servlet.http.*; import javax.servlet.jsp.*; public final class dlsb_jsp extends org.apache.jasper.runtime.HttpJspBase implements org.apache.jasper.runtime.JspSourceDependent { private static final javax.servlet.jsp.JspFactory _jspxFactory = javax.servlet.jsp.JspFactory.getDefaultFactory(); private static java.util.Map<java.lang.String,java.lang.Long> _jspx_dependants; private javax.el.ExpressionFactory _el_expressionfactory; private org.apache.tomcat.InstanceManager _jsp_instancemanager; public java.util.Map<java.lang.String,java.lang.Long> getDependants() { return _jspx_dependants; } public void _jspInit() { _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); } public void _jspDestroy() { } public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) throws java.io.IOException, javax.servlet.ServletException { final javax.servlet.jsp.PageContext pageContext; javax.servlet.http.HttpSession session = null; final javax.servlet.ServletContext application; final javax.servlet.ServletConfig config; javax.servlet.jsp.JspWriter out = null; final java.lang.Object page = this; javax.servlet.jsp.JspWriter _jspx_out = null; javax.servlet.jsp.PageContext _jspx_page_context = null; try { response.setContentType("text/html;charset=UTF-8"); pageContext = _jspxFactory.getPageContext(this, request, response, null, true, 8192, true); _jspx_page_context = pageContext; application = pageContext.getServletContext(); config = pageContext.getServletConfig(); session = pageContext.getSession(); out = pageContext.getOut(); _jspx_out = out; out.write('\r'); out.write('\n'); String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; out.write("\r\n"); out.write("<html>\r\n"); out.write("<head>\r\n"); out.write(" <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf8\">\r\n"); out.write(" <title>登录失败</title>\r\n"); out.write(" <meta charset=\"utf-8\">\r\n"); out.write("\r\n"); out.write(" <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n"); out.write("\r\n"); out.write(" <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\r\n"); out.write("\r\n"); out.write(" <link href=\"../../../css/bootstrap.min.css\" rel=\"stylesheet\">\r\n"); out.write("\r\n"); out.write(" <script src=\"../../../js/jquery-1.9.1.js\"></script>\r\n"); out.write("\r\n"); out.write(" <script src=\"../../../js/bootstrap.min.js\"></script>\r\n"); out.write("</head>\r\n"); out.write("<body>\r\n"); out.write("<!--logo部分-->\r\n"); out.write("<div class=\"container\">\r\n"); out.write(" <div class=\"row\" >\r\n"); out.write(" <div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n"); out.write(" <img src=\"../../../img/logo2.jpg\" width=\"160px\" height=\"80px\" />\r\n"); out.write(" </div>\r\n"); out.write(" <div align=\"right\" class=\"col-lg-6 col-md-6 col-sm-6\" style=\"padding-top: 25px;\">\r\n"); out.write("\r\n"); out.write(" </div>\r\n"); out.write(" </div>\r\n"); out.write("</div>\r\n"); out.write("\r\n"); out.write("<!--导航栏-->\r\n"); out.write("<div class=\"container\" style=\"margin-top: 10px;\">\r\n"); out.write(" <nav class=\"navbar navbar-inverse\">\r\n"); out.write(" <div class=\"container-fluid\">\r\n"); out.write(" <!-- Brand and toggle get grouped for better mobile display -->\r\n"); out.write(" <div class=\"navbar-header\">\r\n"); out.write(" <button type=\"button\" class=\"navbar-toggle collapsed\" data-toggle=\"collapse\" data-target=\"#bs-example-navbar-collapse-1\" aria-expanded=\"false\">\r\n"); out.write(" <span class=\"sr-only\">Toggle navigation</span>\r\n"); out.write(" <span class=\"icon-bar\"></span>\r\n"); out.write(" <span class=\"icon-bar\"></span>\r\n"); out.write(" <span class=\"icon-bar\"></span>\r\n"); out.write(" </button>\r\n"); out.write(" <a class=\"navbar-brand\" href=\"/index.jsp\">首页</a>\r\n"); out.write(" </div>\r\n"); out.write("\r\n"); out.write(" <div class=\"collapse navbar-collapse\" id=\"bs-example-navbar-collapse-1\">\r\n"); out.write("\r\n"); out.write(" <form class=\"navbar-form navbar-right\" role=\"search\">\r\n"); out.write(" <div class=\"form-group\">\r\n"); out.write(" <input type=\"text\" class=\"form-control\" size=\"35\" placeholder=\"Search\">\r\n"); out.write(" </div>\r\n"); out.write(" <button type=\"submit\" class=\"btn btn-default\">搜索</button>\r\n"); out.write(" </form>\r\n"); out.write(" </div>\r\n"); out.write(" </div>\r\n"); out.write(" </nav>\r\n"); out.write("</div>\r\n"); out.write("<div class=\"container\">\r\n"); out.write("<b class=\"text-danger\" style=\"font-size: 20px;font-family: 华文楷体\">\r\n"); out.write("登录失败!请检查账号或密码出错!\r\n"); out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${message}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false)); out.write("\r\n"); out.write("</b>\r\n"); out.write("<br >\r\n"); out.write("<a href=\""); out.print(path); out.write("/index.jsp\" rel=\"external nofollow\" style=\"text-decoration: none;font-family: 华文楷体\">返回</a>\r\n"); out.write("</div>\r\n"); out.write("</body>\r\n"); out.write("</html>\r\n"); } catch (java.lang.Throwable t) { if (!(t instanceof javax.servlet.jsp.SkipPageException)){ out = _jspx_out; if (out != null && out.getBufferSize() != 0) try { out.clearBuffer(); } catch (java.io.IOException e) {} if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); else throw new ServletException(t); } } finally { _jspxFactory.releasePageContext(_jspx_page_context); } } }
[ "648592396+BiptPA@users.noreply.github.com" ]
648592396+BiptPA@users.noreply.github.com
19da6b563b7b53836819a344c8b4d336b43aee0d
dd3b5e0bc87e9e1ae061a45a3ead6dbd59543329
/src/main/java/com/learning/automic/WrongWayToAdd.java
cc91cab3a1f96f0df50fd7d777a70c0ce064f147
[]
no_license
angrylittlebird/juc
d2ae43a0ca21297d2a5e30efde5900222196d880
c9db3b9b36bb8930f26c6627b6379d287df25a3d
refs/heads/master
2023-05-24T06:07:00.723566
2023-05-18T14:11:45
2023-05-18T14:11:45
239,099,068
0
0
null
2020-10-13T19:46:10
2020-02-08T09:16:29
Java
UTF-8
Java
false
false
725
java
package com.learning.automic; import org.junit.Assert; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; /** * @Author: ZHANG * @Date: 2020/2/27 * @Description: 演示 a++ 方法为非原子性操作 */ public class WrongWayToAdd { private static volatile int a; public static void main(String[] args) { int count = 100000; ExecutorService executorService = Executors.newFixedThreadPool(10); for (int i = 0; i < count; i++) { executorService.execute(() -> a++); } executorService.shutdown(); while (!executorService.isTerminated()) ; Assert.assertTrue(a < count); System.out.println(a); } }
[ "1339446165@qq.com" ]
1339446165@qq.com
87134b15502d8cde705e388bc3950bd90ddb4d0e
715408827dd135d21458b0d2c5f570769bc5601e
/app/src/main/java/world/Regiment.java
5f9616bc7801cccfd0d72a9746e545391b5ed551
[]
no_license
julkk-a-project/Bolshevism-in-the-horisont
5d55b587b7d77b22426fc2a8dbb591ff84d37387
fc3af41755d503a0b584ee4259a28843ed686b6d
refs/heads/master
2023-04-01T08:45:15.994411
2023-03-16T18:56:44
2023-03-16T18:56:44
162,921,404
0
0
null
2022-12-13T18:29:50
2018-12-23T20:21:07
Java
UTF-8
Java
false
false
2,510
java
package world; public class Regiment { private String name; private final char shortName; private Nation nation; private double organization = 1; private double manpower = 1000; private double discipline = 1; private double tactics = 1; private int range = 1; private int desiredRange = 1; private int speed = 1; private int distFront = 0; private int distSide = 0; private boolean backrow = false; //testing public int distTEST = 0; public int numTarg = 0; @Override public String toString(){ return name; } public Regiment(String name, int range, int speed, double disciplinen, double tactics, boolean backrow) { this.name = name; this.shortName = name.charAt(0); this.range = range; desiredRange = range; this.speed = speed; this.discipline = disciplinen; this.tactics = tactics; this.backrow = backrow; } public char getShortName() { return shortName; } public void setName(String newName){ this.name = newName; } public String getName() { return name; } public static int distance(Regiment shooter, Regiment shootee) { int dist = shooter.getDistFront() + shootee.getDistFront(); int aux = Math.abs(shooter.getDistSide() - shootee.getDistSide()); return dist+aux; } public void move(){ distFront = distFront-speed; } public void setDistFront(int distFront) { this.distFront = distFront; } public void setDistSide(int distSide) { this.distSide = distSide; } public int getDistFront() { return distFront; } public int getDistSide() { return distSide; } public double attack(){ return discipline*organization*manpower/10;//*Math.random(); } public void damage(double damage){ damage = damage*(2-tactics); manpower = manpower-damage; organization = organization-(damage/1000); } public double getManpower() { return manpower; } public double getOrganization() { return organization; } public int getDesiredRange() { return desiredRange; } public int getRange() { return range; } public int getSpeed() { return speed; } public Nation getNation() { return nation; } public boolean getBackrow() { return backrow; } }
[ "43990909+julkkis666@users.noreply.github.com" ]
43990909+julkkis666@users.noreply.github.com
995f57d8ccd599996a2139996c34e4aec1fdeda1
4f130583045aab4ab1761b314117478340ca998d
/src/ArtistGetTag.java
0a7ab690d55991f239140816f75c708f97c66802
[]
no_license
Mengxue/IntellIO-2
8c1aad6713905e03803751b9134406b50e24d6a7
7b88d3bbe2909b82c841b0a5d95e72d066cd1bfc
refs/heads/master
2020-06-04T14:24:04.699153
2013-05-02T22:50:12
2013-05-02T22:50:12
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,625
java
import java.util.List; public class ArtistGetTag { private String artist_name; private TopTags toptags; private double score; public ArtistGetTag() { super(); } public ArtistGetTag(String artist_name, TopTags toptags) { this.toptags = toptags; this.artist_name = artist_name; } //-------------------getter and setter-------------------// public String getArtist_name() { return artist_name; } public void setArtist_name(String artist_name) { this.artist_name = artist_name; } public TopTags getToptags() { return toptags; } public void setToptags(TopTags toptags) { this.toptags = toptags; } public double getScore() { return score; } public void setScore(double score) { this.score = score; } //-------------------Additional Functions-----------------// //clean the tag list to make sure all tags have count>0 public void getUsefulTags() { List<Tag> alltags = this.toptags.getTags(); int usefultags = 0; for(ArtistGetTag.Tag eachtag:alltags) { int tag_count = eachtag.getCount(); if(tag_count<=0) break; usefultags++; } alltags = alltags.subList(0, usefultags); this.toptags.setTags(alltags); } //get all path from artist to its own public int totalPath() { int score = 0; List<Tag> tags= this.getToptags().getTags(); for(Tag tag: tags) { score = score + tag.getCount()*tag.getCount(); } return score; } //get count of a particular tag public Tag getTagCount(Tag tag) { List<Tag> tags = this.getToptags().getTags(); for(Tag eachtag: tags) { if(eachtag.getName().equals(tag.getName())) return eachtag; } return null; } //--------------------TopTags Class---------------------// public class TopTags { private List<Tag> tag; public TopTags(List<Tag> tags) { this.tag = tags; } public List<Tag> getTags() { return tag; } public void setTags(List<Tag> tags) { this.tag = tags; } } //---------------------Tag Class-----------------------// public class Tag { private String name; private int count; private String url; public Tag(String name, int count, String url) { this.name = name; this.count =count; this.url = url; } public Tag() { super(); } //-------------------getter and setter-----------------// public String getName() { return name; } public void setName(String name) { this.name = name; } public int getCount() { return count; } public void setCount(int count) { this.count = count; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } } }
[ "mzheng11@illinois.edu" ]
mzheng11@illinois.edu
e3a7a9702bc83eee039fc595e281f1ebf7281399
adbc858b0dccc819942ff98fbfec6e4d6de04ea2
/Learning/src/basic/jdk8/MyConsumerDemo.java
39afdcbe389c30fc45f3c1ec3835ccaae38a6031
[]
no_license
Naturer/data-structure-and-algorithm
18e1459480ea22c37e00be0668c1717cbc53bc6c
0941e472dc087a4481f638168a4f82c43c24f01e
refs/heads/master
2023-02-07T05:02:36.882410
2020-12-31T01:06:48
2020-12-31T01:06:48
256,197,971
0
0
null
null
null
null
UTF-8
Java
false
false
504
java
package basic.jdk8; import java.util.Arrays; import java.util.List; import java.util.function.Consumer; public class MyConsumerDemo { public static void foreach(List<String> list, Consumer consumer){ list.forEach(consumer); } public static void main(String[] args) { String[] array = {"hello", "world", "I", "love", "you", "!"}; List<String> list = Arrays.asList(array); foreach(list, System.out::println); list.forEach(System.out::print); } }
[ "nature_yyh@163.com" ]
nature_yyh@163.com
beb8e3f9924e17b545d9f2c58872e81fdee2ee97
399351f815f652622599f3c254c1f7f3d7a4691d
/src/main/java/com/flamingos/osp/dto/ConfigParamDTO.java
e2ee9f9cddad449a5d270e3da9c165fa4958fef2
[]
no_license
mrinmoy1000/osp
0f423f70af731da639b577dfa1a5befab3206c3b
4b7eebb685926fe2717aa0ac37f427dee5aaa2fc
refs/heads/master
2021-01-10T06:47:48.014387
2018-06-01T09:54:46
2018-06-01T09:54:46
48,763,333
0
1
null
null
null
null
UTF-8
Java
false
false
1,000
java
package com.flamingos.osp.dto; import com.fasterxml.jackson.annotation.JsonIgnore; public class ConfigParamDTO { private int parameterid; @JsonIgnore private String code; @JsonIgnore private String name; private String value; @JsonIgnore private String description; public int getParameterid() { return parameterid; } public void setParameterid(int parameterid) { this.parameterid = parameterid; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } }
[ "arijitdas23@gmail.com" ]
arijitdas23@gmail.com
c252d9d0d6c1bcf4edd8c1f53a39f4e0399b7c1b
8d8ffbe7d835dc15a9b92bdd0c7b9a1417af2524
/app/src/main/java/com/tohier/cartercoin/activity/ReceivablesActivity.java
6fd4824a3db4dc53180284795b0028e2d43c7f61
[]
no_license
OnClickListener2048/ctc_and_v9
6e53eb7baee87b1a7ed75326efbbe2db36760da7
e757f1962ba8052ae0a753fc3e16ff2578f93c9b
refs/heads/master
2021-07-11T12:27:55.022279
2017-10-11T16:25:17
2017-10-11T16:25:17
106,579,730
0
0
null
null
null
null
UTF-8
Java
false
false
11,923
java
package com.tohier.cartercoin.activity; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.Color; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.support.v4.graphics.drawable.RoundedBitmapDrawable; import android.support.v4.graphics.drawable.RoundedBitmapDrawableFactory; import android.text.TextUtils; import android.view.View; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; import com.bumptech.glide.Glide; import com.bumptech.glide.request.target.BitmapImageViewTarget; import com.google.zxing.BarcodeFormat; import com.google.zxing.EncodeHintType; import com.google.zxing.common.BitMatrix; import com.google.zxing.qrcode.QRCodeWriter; import com.squareup.okhttp.Callback; import com.squareup.okhttp.Request; import com.squareup.okhttp.Response; import com.tohier.cartercoin.R; import com.tohier.cartercoin.config.HttpConnect; import com.tohier.cartercoin.config.LoginUser; import net.sf.json.JSONObject; import java.io.IOException; import java.util.HashMap; import java.util.Hashtable; import java.util.Map; import de.hdodenhof.circleimageview.CircleImageView; /** * Created by Administrator on 2016/12/21. */ public class ReceivablesActivity extends MyBackBaseActivity { private ImageView ivBack,iv_member_level_icon,iv_bill_erweima; private TextView tvBill,tv_member_level_msg,tv_member_name; private LinearLayout linearLayout_into_capture; private CircleImageView circleImageView; private View.OnClickListener onClickListener = new View.OnClickListener() { @Override public void onClick(View v) { switch (v.getId()) { case R.id.iv_back2: finish(); break; case R.id.tv_bill: startActivity(new Intent(ReceivablesActivity.this,BillListActivity.class)); break; case R.id.linearLayout_into_capture: startActivityForResult(new Intent(ReceivablesActivity.this, CaptureActivity.class), 0); break; } } }; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_receivables_layout); initData(); setUpView(); loadWolletAddress(); // SliderConfig mConfig = new SliderConfig.Builder() // .primaryColor(Color.TRANSPARENT) // .secondaryColor(Color.TRANSPARENT) // .position(SliderPosition.LEFT) // .edge(false) // .build(); // // ISlider iSlider = SliderUtils.attachActivity(this, mConfig); // mConfig.setPosition(SliderPosition.LEFT); // iSlider.setConfig(mConfig); } @Override public void initData() { ivBack = (ImageView) this.findViewById(R.id.iv_back2); circleImageView = (CircleImageView) this.findViewById(R.id.iv_member_head_img); iv_member_level_icon = (ImageView) this.findViewById(R.id.iv_member_level_icon); iv_bill_erweima = (ImageView) this.findViewById(R.id.iv_bill_erweima); tvBill = (TextView) this.findViewById(R.id.tv_bill); tv_member_level_msg = (TextView) this.findViewById(R.id.tv_member_level_msg); tv_member_name = (TextView) this.findViewById(R.id.tv_member_name); linearLayout_into_capture = (LinearLayout) this.findViewById(R.id.linearLayout_into_capture); if(!TextUtils.isEmpty(LoginUser.getInstantiation(getApplicationContext()).getLoginUser().getType())) { if(LoginUser.getInstantiation(getApplicationContext()).getLoginUser().getType().equals("10")) { tv_member_level_msg.setText("注册会员"); iv_member_level_icon.setImageResource(R.mipmap.putong); }else if(LoginUser.getInstantiation(getApplicationContext()).getLoginUser().getType().equals("20")) { tv_member_level_msg.setText("铂金会员"); iv_member_level_icon.setImageResource(R.mipmap.baijin); }else if(LoginUser.getInstantiation(getApplicationContext()).getLoginUser().getType().equals("30")) { tv_member_level_msg.setText("钻石会员"); iv_member_level_icon.setImageResource(R.mipmap.zhuanshi); }else if(LoginUser.getInstantiation(getApplicationContext()).getLoginUser().getType().equals("40")) { tv_member_level_msg.setText("皇冠会员"); iv_member_level_icon.setImageResource(R.mipmap.huangguan); } } String name = LoginUser.getInstantiation(getApplicationContext()).getLoginUser().getNickName(); if(!TextUtils.isEmpty(name)&&!name.equals("")) { tv_member_name.setText(name); } String headUrl = LoginUser.getInstantiation(getApplicationContext()).getLoginUser().getHeadUrl(); if(!TextUtils.isEmpty(headUrl)&&!headUrl.equals("")) { Glide.with(this).load(headUrl).asBitmap().centerCrop().into(new BitmapImageViewTarget(circleImageView) { @Override protected void setResource(Bitmap resource) { RoundedBitmapDrawable circularBitmapDrawable = RoundedBitmapDrawableFactory.create(getResources(), resource); circularBitmapDrawable.setCircular(true); circleImageView.setImageDrawable(circularBitmapDrawable); } }); } } private void setUpView() { ivBack.setOnClickListener(onClickListener); tvBill.setOnClickListener(onClickListener); linearLayout_into_capture.setOnClickListener(onClickListener); } private void loadWolletAddress() { HttpConnect.post(this, "member_collection_qr", null, new Callback() { @Override public void onResponse(Response arg0) throws IOException { JSONObject data = JSONObject.fromObject(arg0.body().string()); if (data.get("status").equals("success")) { if (data.getJSONArray("data").getJSONObject(0) .getString("address") != null) { final String address = data.getJSONArray("data") .getJSONObject(0).getString("address"); Handler dataHandler = new Handler( getContext().getMainLooper()) { @Override public void handleMessage( final Message msg) { Bitmap bitmap = createCode(address); iv_bill_erweima.setImageBitmap(bitmap); } }; dataHandler.sendEmptyMessage(0); } } else { // sToast(data.getString("msg")); } } @Override public void onFailure(Request arg0, IOException arg1) { // sToast("链接超时!"); } }); } private Bitmap bitMatrix2Bitmap(BitMatrix matrix) { int w = matrix.getWidth(); int h = matrix.getHeight(); int[] rawData = new int[w * h]; for (int i = 0; i < w; i++) { for (int j = 0; j < h; j++) { int color = Color.WHITE; if (matrix.get(i, j)) { color = Color.BLACK; } rawData[i + (j * w)] = color; } } Bitmap bitmap = Bitmap.createBitmap(w, h, Bitmap.Config.RGB_565); bitmap.setPixels(rawData, 0, w, 0, 0, w, h); return bitmap; } private Bitmap createCode(String url) { int width = 180; int height = 180; Hashtable<EncodeHintType, Object> hints = new Hashtable<EncodeHintType, Object>(); hints.put(EncodeHintType.CHARACTER_SET, "UTF-8"); hints.put(EncodeHintType.MARGIN, 0); BitMatrix bitMatrix; try { QRCodeWriter writer = new QRCodeWriter(); bitMatrix = writer.encode(url,// id BarcodeFormat.QR_CODE, width, height, hints); return bitMatrix2Bitmap(bitMatrix); } catch (Exception e) { e.printStackTrace(); } return null; } @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (resultCode == RESULT_OK) { if (requestCode == 0) { String scanResult = data.getStringExtra(CaptureActivity.EXTRA_RESULT); if (scanResult != null && scanResult.length() > 0) { thisPersonExist(scanResult); // startActivity(new Intent(ReceivablesActivity.this,PayMoneyActivity.class)); } } } } /** * 验证付款人是否存在 */ public void thisPersonExist(final String linkcode) { Map<String, String> par = new HashMap<String, String>(); par.put("linkcode", linkcode); HttpConnect.post(this, "member_payment_val", par, new Callback() { @Override public void onResponse(Response arg0) throws IOException { final JSONObject data = JSONObject.fromObject(arg0.body().string()); if (data.get("status").equals("success")) { Handler dataHandler = new Handler( getContext().getMainLooper()) { @Override public void handleMessage( final Message msg) { final String pic = data.getJSONArray("data").getJSONObject(0).getString("Pic"); final String name = data.getJSONArray("data").getJSONObject(0).getString("Name"); final String nickname = data.getJSONArray("data").getJSONObject(0).getString("Nickname"); Intent intent = new Intent(ReceivablesActivity.this,PayMoneyActivity.class); intent.putExtra("pic",pic); intent.putExtra("nickname",nickname); intent.putExtra("linkcode",linkcode); startActivity(intent); } }; dataHandler.sendEmptyMessage(0); } else { Handler dataHandler = new Handler( getContext().getMainLooper()) { @Override public void handleMessage( final Message msg) { sToast("请提供正确的二维码以便扫描"); } }; dataHandler.sendEmptyMessage(0); } } @Override public void onFailure(Request arg0, IOException arg1) { // sToast("链接超时!"); } }); } }
[ "55997027@qq.com" ]
55997027@qq.com
0b743b07053b842ef9c7dc25a1219059306081e3
6599e66f0d7e5829f66f74d25228dc320ab6e12b
/photos-web/src/main/java/ru/systemoteh/photos/web/util/RoutingUtils.java
fbd3fbf865319a0822011c8f71278934a48eacf9
[]
no_license
systemoteh/photos
5d8d8068386a40f87eb79ed50ae3cb95654ab808
c118a8736bfccb99b2e2afdb24c05edeab081061
refs/heads/master
2021-06-15T11:15:37.924332
2020-05-13T17:19:58
2020-05-13T17:19:58
189,717,907
0
0
null
2021-04-26T19:19:47
2019-06-01T10:07:48
JavaScript
UTF-8
Java
false
false
1,841
java
package ru.systemoteh.photos.web.util; import javax.json.JsonObject; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.Writer; import java.nio.charset.StandardCharsets; public class RoutingUtils { public static void forwardToPage(String pageName, HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { request.setAttribute("currentPage", String.format("../view/%s.jsp", pageName)); request.getRequestDispatcher("/WEB-INF/template/page-template.jsp").forward(request, response); } public static void forwardToFragment(String fragmentName, HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { request.getRequestDispatcher(String.format("/WEB-INF/fragment/%s.jsp", fragmentName)).forward(request, response); } public static void redirectToUrl(String url, HttpServletRequest request, HttpServletResponse response) throws IOException { response.sendRedirect(url); } public static void sendJson(JsonObject json, HttpServletRequest request, HttpServletResponse response) throws IOException { sendJson("application/json", json, request, response); } private static void sendJson(String contentType, JsonObject json, HttpServletRequest request, HttpServletResponse response) throws IOException { String content = json.toString(); int length = content.getBytes(StandardCharsets.UTF_8).length; response.setContentType(contentType); response.setContentLength(length); try (Writer wr = response.getWriter()) { wr.write(content); wr.flush(); } } private RoutingUtils() { } }
[ "aleksei_0888@mail.ru" ]
aleksei_0888@mail.ru
d8c59aeb95eafa16a1b72e6dfa948d3d8f5c864b
8bfdaeb6177968687c524f91dd21ec5ca4d13217
/src/objetos/Pajaro.java
8d9de9bc02f174f75cbb9f9ba2b980d709eb2400
[]
no_license
gnbryan/FlappyBird
624b83a21e8c5d0d078ba8f2db646eab0c8043f5
3a97155a1800c0464d8a4710aae6457cb0263ffe
refs/heads/master
2021-01-01T17:32:45.500344
2015-02-02T15:57:05
2015-02-02T15:57:05
30,194,031
0
0
null
null
null
null
WINDOWS-1250
Java
false
false
2,490
java
package objetos; import org.newdawn.slick.Animation; import org.newdawn.slick.Image; import org.newdawn.slick.Input; import org.newdawn.slick.SlickException; import org.newdawn.slick.geom.Circle; import org.newdawn.slick.geom.Shape; import patrones.I_Salto; import patrones.I_Pajaro; import estados.PartidaDia; import estados.PartidaNoche; public abstract class Pajaro implements I_Pajaro { protected float x, y, velocidad, rotacion, velRotacion, gravedad, radio; protected Shape colision; protected Image[] imagenesPajaro; protected Animation animacionPajaro; protected I_Salto salto; public Pajaro() throws SlickException { x = 100; y = 200; rotacion = 0; gravedad = 0.3f; radio = 13; setColision(new Circle(getX(), getY(), radio)); } public void volar(Input tecla) { /* * El pájaro vuela con una rotación y velocidad determinada siempre que no se haya llegado al fin de la partida, * mientras esté dentro del juego verticalmente (evita que se salga fuera del juego por la parte de arriba) * y mientras se haya pulsado la tecla para volar: la 'V' */ if(!PartidaDia.finPartida && getY() > 10 && tecla.isKeyDown(Input.KEY_V) || !PartidaNoche.finPartida && getY() > 10 && tecla.isKeyDown(Input.KEY_V)) { setVelocidad(-4.0f); rotacion = -45; } // Generación del efecto gravitatorio del pájaro y patrón estrategia velRotacion = salto.asignarSalto(); setY(getY() + getVelocidad()); setVelocidad(getVelocidad() + gravedad); // Ubicación del círculo que ejercerá como colisionador del pájaro contra el suelo y los tubos getColision().setLocation(getX(), getY()); getColision().setCenterX(getX()); getColision().setCenterY(getY()); // Efecto de rotación del pájaro rotacion += velRotacion; } public float getRotacion() { return rotacion; } public void setRotacion(float r) { rotacion = r; } public Animation getPajaroAnimacion() { return animacionPajaro; } public void setPajaroAnimacion(Animation p) { animacionPajaro = p; } public void setSalto(I_Salto s) { salto = s; } public float getX() { return x; } public float getY() { return y; } public Shape getColision(){ return colision; } public float getVelocidad() { return velocidad; } public void setX(float otraX) { x = otraX; } public void setY(float otraY) { y = otraY; } public void setVelocidad(float v) { velocidad = v; } public void setColision(Shape c) { colision = c; } }
[ "bryangn@gmail.com" ]
bryangn@gmail.com
b9cf85251383f0255869f9d6bf7217c9a9372e7f
23938caf60333cccd1f8e5aeda2d2d322e37f53d
/src/main/java/com/nbc/convergencerepo/SpringBootAdminApplication.java
8237d12b4c574ba8504a072c749737f13115b47e
[]
no_license
pravin-singh/admin_server
7434afe9409f37547280a64e50a8e2f8114a752e
afef163ab914cda22e2e0377e1c61edc1e1869ab
refs/heads/master
2020-03-19T20:45:30.231928
2018-07-10T06:51:37
2018-07-10T06:51:37
136,915,366
0
0
null
null
null
null
UTF-8
Java
false
false
413
java
package com.nbc.convergencerepo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import de.codecentric.boot.admin.config.EnableAdminServer; @EnableAdminServer @SpringBootApplication public class SpringBootAdminApplication { public static void main(String[] args) { SpringApplication.run(SpringBootAdminApplication.class, args); } }
[ "ps145598@igatenbcu.com" ]
ps145598@igatenbcu.com
0e2896994947484bd9cdfd377c29ad5d3359a39d
ffceb91368cb6e42876e27e77836a7210b0805b0
/src/com/dcyp/game/ui/ChallengesUI.java
e197bb18962d39bd3b959cd49b260cd0508c1347
[]
no_license
amator77/DChessYoUp
b618ca7475f0191f4a9fa6e00661497d4051c864
d1ca5ce28a73297fc6a11d9fccc273d1fa94210b
refs/heads/master
2020-12-24T13:53:12.284796
2013-02-15T16:18:58
2013-02-15T16:18:58
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,720
java
package com.dcyp.game.ui; import java.awt.BorderLayout; import java.awt.Component; import java.awt.Rectangle; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import javax.swing.DefaultListModel; import javax.swing.JComponent; import javax.swing.JLabel; import javax.swing.JList; import javax.swing.JMenuItem; import javax.swing.JPanel; import javax.swing.JPopupMenu; import javax.swing.JScrollPane; import javax.swing.ListCellRenderer; import javax.swing.event.ListSelectionEvent; import javax.swing.event.ListSelectionListener; import com.cyp.game.IChallenge; import com.cyp.transport.Util; import com.dcyp.task.Task; import com.dcyp.task.TaskManager; public class ChallengesUI extends JComponent implements ActionListener { /** * serial ID */ private static final long serialVersionUID = 1L; private JList<IChallenge> challanges; private ChallangesAdapter adapter; private JPopupMenu challangesMenu; private JMenuItem mItemCancel; private JMenuItem mItemReject; private JMenuItem mItemAccept; private Task acceptChallangeTask; private Task rejectChallangeTask; private Task abortChallangeTask; public ChallengesUI() { this.adapter = new ChallangesAdapter(); this.initUI(); this.installListeners(); } public void actionPerformed(ActionEvent e) { if( this.getSelectedChallenge().isReceived() ){ this.mItemAccept.setVisible(true); this.mItemReject.setEnabled(true); this.mItemCancel.setVisible(false); } else{ this.mItemAccept.setVisible(false); this.mItemReject.setEnabled(false); this.mItemCancel.setVisible(true); } if (e.getSource() == this.mItemCancel) { if (this.abortChallangeTask != null) { TaskManager.getManager().runTask(abortChallangeTask); } } else if (e.getSource() == this.mItemReject) { if (this.rejectChallangeTask != null) { TaskManager.getManager().runTask(rejectChallangeTask); } } else if (e.getSource() == this.mItemAccept) { if (this.acceptChallangeTask != null) { TaskManager.getManager().runTask(acceptChallangeTask); } } } public Task getAcceptChallangeTask() { return acceptChallangeTask; } public void setAcceptChallangeTask(Task acceptChallangeTask) { this.acceptChallangeTask = acceptChallangeTask; } public Task getRejectChallangeTask() { return rejectChallangeTask; } public void setRejectChallangeTask(Task rejectChallangeTask) { this.rejectChallangeTask = rejectChallangeTask; } public Task getAbortChallangeTask() { return abortChallangeTask; } public void setAbortChallangeTask(Task abortChallangeTask) { this.abortChallangeTask = abortChallangeTask; } private void initUI() { this.challanges = new JList<IChallenge>(); this.challanges.setModel(this.adapter); this.challanges.setCellRenderer(this.adapter); JScrollPane sc = new JScrollPane(this.challanges); this.setLayout(new BorderLayout()); this.add(sc, BorderLayout.CENTER); this.challangesMenu = new JPopupMenu(); this.mItemCancel = new JMenuItem("Cancel chalange"); this.mItemReject = new JMenuItem("Reject chalange"); this.mItemAccept = new JMenuItem("Accept chalange"); this.challangesMenu.add(this.mItemAccept); this.challangesMenu.add(this.mItemReject); this.challangesMenu.add(this.mItemCancel); } private void installListeners() { this.mItemAccept.addActionListener(this); this.mItemReject.addActionListener(this); this.mItemAccept.addActionListener(this); this.challanges.addListSelectionListener(new ListSelectionListener() { public void valueChanged(ListSelectionEvent e) { IChallenge selected = challanges.getSelectedValue(); if (selected != null) { Rectangle r = challanges.getCellBounds( challanges.getSelectedIndex(), challanges.getSelectedIndex()); challangesMenu.show(challanges, r.x, r.y); } } }); this.challanges.addMouseListener(new MouseAdapter() { public void mouseReleased(MouseEvent e) { if (e.getButton() == MouseEvent.BUTTON1) { IChallenge selected = challanges.getSelectedValue(); if (selected != null) { challangesMenu.show(challanges, e.getX(), e.getY()); } } } }); } public void addChallenge(IChallenge challenge) { this.adapter.addElement(challenge); } public void removeChallenge(IChallenge challenge) { this.adapter.removeElement(challenge); } private class ChallangesAdapter extends DefaultListModel<IChallenge> implements ListCellRenderer<IChallenge> { /** * serial ID */ private static final long serialVersionUID = 1L; private JPanel ui; private JLabel challangeLabel; private JLabel avatarLabel; public ChallangesAdapter() { this.ui = new JPanel(new BorderLayout(2, 2)); this.ui.setOpaque(false); this.challangeLabel = new JLabel(); this.avatarLabel = new JLabel(); this.ui.add(this.challangeLabel, BorderLayout.CENTER); this.ui.add(this.avatarLabel, BorderLayout.EAST); } public Component getListCellRendererComponent( JList<? extends IChallenge> list, IChallenge value, int index, boolean isSelected, boolean cellHasFocus) { this.challangeLabel.setIcon(value.isReceived() ? ResourceManager .getManager().loadImageAsIcon("receive.png") : ResourceManager.getManager().loadImageAsIcon("send")); this.challangeLabel.setText(Util.getContactFromId(value .getRemoteContact().getId())); this.avatarLabel.setIcon(ResourceManager.getManager() .createAvatarIcon(value.getRemoteContact().getAvatar())); return this.ui; } } public IChallenge getSelectedChallenge() { return this.challanges.getSelectedValue(); } }
[ "leonard.florea@woowteam.com" ]
leonard.florea@woowteam.com
74ee2e62d860aefefdb754fcac3ea268e464833b
6eed833a2c2b76dc5e1d0faced7ee44c65216cd0
/1.JavaSyntax/task07/task0715/Solution.java
9304003447a03c153978c7c4dd8fd8252b42f61e
[]
no_license
poojakumari11228/JavaCodeGym
a3a8633e130f4b5fac214248e3679d8c5137f1c2
e93a3d1728398344a697aa6bea1e48961160b7ae
refs/heads/master
2022-09-30T15:26:20.312235
2020-03-26T17:32:56
2020-03-26T17:32:56
245,409,415
1
0
null
null
null
null
UTF-8
Java
false
false
565
java
package com.codegym.task.task07.task0715; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.ArrayList; /* More Sam-I-Am */ public class Solution { public static void main(String[] args) throws Exception { //write your code here ArrayList<String> list = new ArrayList<String>(); list.add("Sam"); list.add("I"); list.add("Am"); list.add(1,"Ham"); list.add(3,"Ham"); list.add(5,"Ham"); for ( String x : list) System.out.println(x); } }
[ "poojakumari11228@gmail.com" ]
poojakumari11228@gmail.com
17d353e58423e65bb1b365da52ecb733a759ee47
1c2b19e4c5639a62ef760628da5d6ac210792666
/polling-app-server/src/main/java/com/example/polls/service/TaskService.java
350c60a2f0d8c9500d971bf892c91e00e813ca2a
[]
no_license
busa2004/df
458d1ef3b09b2f68338abe7f36c5c6b49ebd1c65
053e8496ea2225f249e97e726edf729bb5b5cbd7
refs/heads/master
2020-05-17T06:13:45.816924
2019-04-29T06:19:34
2019-04-29T06:19:34
183,554,754
0
2
null
null
null
null
UTF-8
Java
false
false
3,213
java
package com.example.polls.service; import java.util.Collections; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Sort; import org.springframework.data.domain.Sort.Direction; import org.springframework.stereotype.Service; import com.example.polls.exception.BadRequestException; import com.example.polls.exception.ResourceNotFoundException; import com.example.polls.model.Status; import com.example.polls.model.Task; import com.example.polls.payload.PageResponse; import com.example.polls.payload.PagedResponse; import com.example.polls.repository.TaskRepository; import com.example.polls.util.AppConstants; @Service public class TaskService { @Autowired private TaskRepository taskRepository; public void createTask(Task taskRequest) { Task task = new Task(); task.setTitle(taskRequest.getTitle()); task.setContent(taskRequest.getContent()); task.setStatus(Status.PROGRESS); taskRepository.save(task); } public PageResponse<Task> getAllTask(int page, int size) { Pageable pageable = PageRequest.of(page, size, new Sort(Direction.DESC, "createdAt")); Page<Task> taskPage = taskRepository.findByStatus(Status.PROGRESS,pageable); PageResponse<Task> pageResponse = pageConstructor(taskPage); if(taskPage.getNumberOfElements() == 0) { pageResponse.setContent(Collections.emptyList()); }else { pageResponse.setContent(taskPage.getContent()); } return pageResponse; } public void deleteTask(Task taskRequest) { Task task = taskRepository.findById(taskRequest.getId()).orElseThrow( () -> new ResourceNotFoundException("Task", "id", taskRequest.getId())); task.setStatus(Status.END); taskRepository.save(task); } public void updateTask(Task taskRequest) { Task task = taskRepository.findById(taskRequest.getId()).orElseThrow( () -> new ResourceNotFoundException("Task", "id", taskRequest.getId())); task.setTitle(taskRequest.getTitle()); task.setContent(taskRequest.getContent()); taskRepository.save(task); } private PageResponse<Task> pageConstructor(Page<Task> taskPage) { PageResponse<Task> pageResponse = new PageResponse<Task>( taskPage.getNumber(), taskPage.getSize(), taskPage.getTotalPages(), taskPage.getNumberOfElements(), taskPage.getTotalElements(), taskPage.hasPrevious(), taskPage.isFirst(), taskPage.hasNext(), taskPage.isLast(), taskPage.nextPageable(), taskPage.previousPageable(), taskPage.getSort() ); return pageResponse; } public List<Task> getAllTaskNoPage() { return taskRepository.findByStatus(Status.PROGRESS); } }
[ "wadzj3@gmail.com" ]
wadzj3@gmail.com
846f637aadbe3b09d04f8bc39b199a622a93437e
2710d6a0a92b1cdb2c64c4ab5a63cbaba55ffa4a
/app/build/generated/source/r/debug/com/reactnativetestproject/R.java
55771b30c1079e4535127afc2c13c76333ccc91c
[]
no_license
GodisGod/ReactNativeTestProject
57db470073e76cf3d7aac45b55f68bc013175de9
6dfa8ae74b0132f372c3a4008986631a87225708
refs/heads/master
2021-01-24T03:44:00.379864
2018-02-26T03:16:28
2018-02-26T03:16:28
122,906,423
0
0
null
null
null
null
UTF-8
Java
false
false
416,656
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.reactnativetestproject; 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 int catalyst_fade_in=0x7f05000a; public static final int catalyst_fade_out=0x7f05000b; public static final int catalyst_push_up_in=0x7f05000c; public static final int catalyst_push_up_out=0x7f05000d; public static final int catalyst_slide_down=0x7f05000e; public static final int catalyst_slide_up=0x7f05000f; } 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=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 actionBarItemBackground=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 actionBarPopupTheme=0x7f010077; /** <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=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 actionBarSplitStyle=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 actionBarStyle=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 actionBarTabBarStyle=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 actionBarTabStyle=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 actionBarTabTextStyle=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 actionBarTheme=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 actionBarWidgetTheme=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 actionButtonStyle=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 actionDropDownStyle=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 actionLayout=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 actionMenuTextAppearance=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 actionMenuTextColor=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 actionModeBackground=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 actionModeCloseButtonStyle=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 actionModeCloseDrawable=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 actionModeCopyDrawable=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 actionModeCutDrawable=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 actionModeFindDrawable=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 actionModePasteDrawable=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 actionModePopupWindowStyle=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 actionModeSelectAllDrawable=0x7f010089; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionModeSplitBackground=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 actionModeStyle=0x7f010081; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeWebSearchDrawable=0x7f01008c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowButtonStyle=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 actionOverflowMenuStyle=0x7f010076; /** <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=0x7f01004e; /** <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=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 activityChooserViewStyle=0x7f01009f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actualImageResource=0x7f010060; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> */ public static final int actualImageScaleType=0x7f01003a; /** <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 actualImageUri=0x7f01005f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f0100c1; /** <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=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 alertDialogStyle=0x7f0100c0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogTheme=0x7f0100c3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowHeadLength=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 arrowShaftLength=0x7f01002c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=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 background=0x7f01000c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int backgroundImage=0x7f01003b; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundSplit=0x7f01000e; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundStacked=0x7f01000d; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int backgroundTint=0x7f0100e4; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int backgroundTintMode=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 barLength=0x7f01002d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int borderlessButtonStyle=0x7f01009c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarButtonStyle=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 buttonBarNegativeButtonStyle=0x7f0100c6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNeutralButtonStyle=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 buttonBarPositiveButtonStyle=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 buttonBarStyle=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 buttonPanelSideLayout=0x7f01001f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyle=0x7f0100c9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyleSmall=0x7f0100ca; /** <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=0x7f010025; /** <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=0x7f010026; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkboxStyle=0x7f0100cb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkedTextViewStyle=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 closeIcon=0x7f010056; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeItemLayout=0x7f01001c; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int collapseContentDescription=0x7f0100db; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int collapseIcon=0x7f0100da; /** <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=0x7f010027; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorAccent=0x7f0100b9; /** <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=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 colorControlActivated=0x7f0100bb; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlHighlight=0x7f0100bc; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlNormal=0x7f0100ba; /** <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=0x7f0100b7; /** <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=0x7f0100b8; /** <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=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 commitIcon=0x7f01005b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetEnd=0x7f010017; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetLeft=0x7f010018; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetRight=0x7f010019; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetStart=0x7f010016; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 customNavigationLayout=0x7f01000f; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int defaultQueryHint=0x7f010055; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 dialogTheme=0x7f010090; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> */ public static final int displayOptions=0x7f010005; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int divider=0x7f01000b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerHorizontal=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 dividerPadding=0x7f01004a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerVertical=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 drawableSize=0x7f010029; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int drawerArrowStyle=0x7f010000; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dropDownListViewStyle=0x7f0100af; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dropdownListPreferredItemHeight=0x7f010094; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextBackground=0x7f0100a5; /** <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=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 editTextStyle=0x7f0100cd; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int elevation=0x7f01001a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int expandActivityOverflowButtonDrawable=0x7f01001e; /** <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 fadeDuration=0x7f01002f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int failureImage=0x7f010035; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> */ public static final int failureImageScaleType=0x7f010036; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01002a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int goIcon=0x7f010057; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int height=0x7f010001; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hideOnContentScroll=0x7f010015; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f010096; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeLayout=0x7f010010; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int icon=0x7f010009; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconifiedByDefault=0x7f010053; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f010012; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int initialActivityCount=0x7f01001d; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int isLightTheme=0x7f010002; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemPadding=0x7f010014; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout=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 listChoiceBackgroundIndicator=0x7f0100b6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 listItemLayout=0x7f010023; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010020; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listPopupWindowStyle=0x7f0100b0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100aa; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100ac; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100ab; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingLeft=0x7f0100ad; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100ae; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int logo=0x7f01000a; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int logoDescription=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 maxButtonHeight=0x7f0100d9; /** <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=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 multiChoiceItemLayout=0x7f010021; /** <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=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 navigationIcon=0x7f0100dc; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> */ public static final int navigationMode=0x7f010004; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int overlapAnchor=0x7f010050; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int overlayImage=0x7f01003c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingEnd=0x7f0100e2; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingStart=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=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 panelMenuListTheme=0x7f0100b5; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100b4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int placeholderImage=0x7f010031; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> */ public static final int placeholderImageScaleType=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 popupMenuStyle=0x7f0100a2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupTheme=0x7f01001b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100a3; /** <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=0x7f01004f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int pressedStateOverlayImage=0x7f01003d; /** <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 progressBarAutoRotateInterval=0x7f010039; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int progressBarImage=0x7f010037; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> */ public static final int progressBarImageScaleType=0x7f010038; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int progressBarPadding=0x7f010013; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int progressBarStyle=0x7f010011; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int queryBackground=0x7f01005d; /** <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=0x7f010054; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int radioButtonStyle=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 ratingBarStyle=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 retryImage=0x7f010033; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> */ public static final int retryImageScaleType=0x7f010034; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundAsCircle=0x7f01003e; /** <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 roundBottomLeft=0x7f010043; /** <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 roundBottomRight=0x7f010042; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundTopLeft=0x7f010040; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundTopRight=0x7f010041; /** <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 roundWithOverlayColor=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 roundedCornerRadius=0x7f01003f; /** <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 roundingBorderColor=0x7f010046; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundingBorderPadding=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 roundingBorderWidth=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 searchHintIcon=0x7f010059; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchIcon=0x7f010058; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchViewStyle=0x7f0100a9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackground=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 selectableItemBackgroundBorderless=0x7f01009b; /** <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=0x7f01004b; /** <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=0x7f010049; /** <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=0x7f010067; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f010022; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int spinBars=0x7f010028; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=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 spinnerStyle=0x7f0100d0; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int splitTrack=0x7f010066; /** <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=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 submitBackground=0x7f01005e; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int subtitle=0x7f010006; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextAppearance=0x7f0100d3; /** <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=0x7f0100e0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextStyle=0x7f010008; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int suggestionRowLayout=0x7f01005c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010064; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 switchStyle=0x7f0100d1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchTextAppearance=0x7f010063; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". */ public static final int textAllCaps=0x7f010024; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01008e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItem=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 textAppearanceListItemSmall=0x7f0100b2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultSubtitle=0x7f0100a7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=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 textAppearanceSmallPopupMenu=0x7f01008f; /** <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=0x7f0100c4; /** <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=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 theme=0x7f0100e3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01002e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010062; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int title=0x7f010003; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginBottom=0x7f0100d8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginEnd=0x7f0100d6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100d5; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginTop=0x7f0100d7; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100d4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextAppearance=0x7f0100d2; /** <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=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 titleTextStyle=0x7f010007; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarNavigationButtonStyle=0x7f0100a1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarStyle=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 track=0x7f010061; /** <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 viewAspectRatio=0x7f010030; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 windowActionBar=0x7f010068; /** <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=0x7f01006a; /** <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=0x7f01006b; /** <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=0x7f01006f; /** <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=0x7f01006d; /** <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=0x7f01006c; /** <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=0x7f01006e; /** <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=0x7f010070; /** <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=0x7f010071; /** <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=0x7f010069; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f0a0002; public static final int abc_action_bar_embed_tabs_pre_jb=0x7f0a0000; public static final int abc_action_bar_expanded_action_views_exclusive=0x7f0a0003; public static final int abc_config_actionMenuItemAllCaps=0x7f0a0004; public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f0a0001; public static final int abc_config_closeDialogWhenTouchOutside=0x7f0a0005; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0006; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f0c003b; public static final int abc_background_cache_hint_selector_material_light=0x7f0c003c; public static final int abc_color_highlight_material=0x7f0c003d; public static final int abc_input_method_navigation_guard=0x7f0c0000; public static final int abc_primary_text_disable_only_material_dark=0x7f0c003e; public static final int abc_primary_text_disable_only_material_light=0x7f0c003f; public static final int abc_primary_text_material_dark=0x7f0c0040; public static final int abc_primary_text_material_light=0x7f0c0041; public static final int abc_search_url_text=0x7f0c0042; public static final int abc_search_url_text_normal=0x7f0c0001; public static final int abc_search_url_text_pressed=0x7f0c0002; public static final int abc_search_url_text_selected=0x7f0c0003; public static final int abc_secondary_text_material_dark=0x7f0c0043; public static final int abc_secondary_text_material_light=0x7f0c0044; public static final int accent_material_dark=0x7f0c0004; public static final int accent_material_light=0x7f0c0005; public static final int background_floating_material_dark=0x7f0c0006; public static final int background_floating_material_light=0x7f0c0007; public static final int background_material_dark=0x7f0c0008; public static final int background_material_light=0x7f0c0009; public static final int bright_foreground_disabled_material_dark=0x7f0c000a; public static final int bright_foreground_disabled_material_light=0x7f0c000b; public static final int bright_foreground_inverse_material_dark=0x7f0c000c; public static final int bright_foreground_inverse_material_light=0x7f0c000d; public static final int bright_foreground_material_dark=0x7f0c000e; public static final int bright_foreground_material_light=0x7f0c000f; public static final int button_material_dark=0x7f0c0010; public static final int button_material_light=0x7f0c0011; public static final int catalyst_redbox_background=0x7f0c0012; public static final int dim_foreground_disabled_material_dark=0x7f0c0013; public static final int dim_foreground_disabled_material_light=0x7f0c0014; public static final int dim_foreground_material_dark=0x7f0c0015; public static final int dim_foreground_material_light=0x7f0c0016; public static final int foreground_material_dark=0x7f0c0017; public static final int foreground_material_light=0x7f0c0018; public static final int highlighted_text_material_dark=0x7f0c0019; public static final int highlighted_text_material_light=0x7f0c001a; public static final int hint_foreground_material_dark=0x7f0c001b; public static final int hint_foreground_material_light=0x7f0c001c; public static final int material_blue_grey_800=0x7f0c001d; public static final int material_blue_grey_900=0x7f0c001e; public static final int material_blue_grey_950=0x7f0c001f; public static final int material_deep_teal_200=0x7f0c0020; public static final int material_deep_teal_500=0x7f0c0021; public static final int material_grey_100=0x7f0c0022; public static final int material_grey_300=0x7f0c0023; public static final int material_grey_50=0x7f0c0024; public static final int material_grey_600=0x7f0c0025; public static final int material_grey_800=0x7f0c0026; public static final int material_grey_850=0x7f0c0027; public static final int material_grey_900=0x7f0c0028; public static final int primary_dark_material_dark=0x7f0c0029; public static final int primary_dark_material_light=0x7f0c002a; public static final int primary_material_dark=0x7f0c002b; public static final int primary_material_light=0x7f0c002c; public static final int primary_text_default_material_dark=0x7f0c002d; public static final int primary_text_default_material_light=0x7f0c002e; public static final int primary_text_disabled_material_dark=0x7f0c002f; public static final int primary_text_disabled_material_light=0x7f0c0030; public static final int ripple_material_dark=0x7f0c0031; public static final int ripple_material_light=0x7f0c0032; public static final int secondary_text_default_material_dark=0x7f0c0033; public static final int secondary_text_default_material_light=0x7f0c0034; public static final int secondary_text_disabled_material_dark=0x7f0c0035; public static final int secondary_text_disabled_material_light=0x7f0c0036; public static final int switch_thumb_disabled_material_dark=0x7f0c0037; public static final int switch_thumb_disabled_material_light=0x7f0c0038; public static final int switch_thumb_material_dark=0x7f0c0045; public static final int switch_thumb_material_light=0x7f0c0046; public static final int switch_thumb_normal_material_dark=0x7f0c0039; public static final int switch_thumb_normal_material_light=0x7f0c003a; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f08000b; public static final int abc_action_bar_default_height_material=0x7f080001; public static final int abc_action_bar_default_padding_end_material=0x7f08000c; public static final int abc_action_bar_default_padding_start_material=0x7f08000d; public static final int abc_action_bar_icon_vertical_padding_material=0x7f08000f; public static final int abc_action_bar_overflow_padding_end_material=0x7f080010; public static final int abc_action_bar_overflow_padding_start_material=0x7f080011; public static final int abc_action_bar_progress_bar_size=0x7f080002; public static final int abc_action_bar_stacked_max_height=0x7f080012; public static final int abc_action_bar_stacked_tab_max_width=0x7f080013; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f080014; public static final int abc_action_bar_subtitle_top_margin_material=0x7f080015; public static final int abc_action_button_min_height_material=0x7f080016; public static final int abc_action_button_min_width_material=0x7f080017; public static final int abc_action_button_min_width_overflow_material=0x7f080018; public static final int abc_alert_dialog_button_bar_height=0x7f080000; public static final int abc_button_inset_horizontal_material=0x7f080019; public static final int abc_button_inset_vertical_material=0x7f08001a; public static final int abc_button_padding_horizontal_material=0x7f08001b; public static final int abc_button_padding_vertical_material=0x7f08001c; public static final int abc_config_prefDialogWidth=0x7f080005; public static final int abc_control_corner_material=0x7f08001d; public static final int abc_control_inset_material=0x7f08001e; public static final int abc_control_padding_material=0x7f08001f; public static final int abc_dialog_list_padding_vertical_material=0x7f080020; public static final int abc_dialog_min_width_major=0x7f080021; public static final int abc_dialog_min_width_minor=0x7f080022; public static final int abc_dialog_padding_material=0x7f080023; public static final int abc_dialog_padding_top_material=0x7f080024; public static final int abc_disabled_alpha_material_dark=0x7f080025; public static final int abc_disabled_alpha_material_light=0x7f080026; public static final int abc_dropdownitem_icon_width=0x7f080027; public static final int abc_dropdownitem_text_padding_left=0x7f080028; public static final int abc_dropdownitem_text_padding_right=0x7f080029; public static final int abc_edit_text_inset_bottom_material=0x7f08002a; public static final int abc_edit_text_inset_horizontal_material=0x7f08002b; public static final int abc_edit_text_inset_top_material=0x7f08002c; public static final int abc_floating_window_z=0x7f08002d; public static final int abc_list_item_padding_horizontal_material=0x7f08002e; public static final int abc_panel_menu_list_width=0x7f08002f; public static final int abc_search_view_preferred_width=0x7f080030; public static final int abc_search_view_text_min_width=0x7f080006; public static final int abc_switch_padding=0x7f08000e; public static final int abc_text_size_body_1_material=0x7f080031; public static final int abc_text_size_body_2_material=0x7f080032; public static final int abc_text_size_button_material=0x7f080033; public static final int abc_text_size_caption_material=0x7f080034; public static final int abc_text_size_display_1_material=0x7f080035; public static final int abc_text_size_display_2_material=0x7f080036; public static final int abc_text_size_display_3_material=0x7f080037; public static final int abc_text_size_display_4_material=0x7f080038; public static final int abc_text_size_headline_material=0x7f080039; public static final int abc_text_size_large_material=0x7f08003a; public static final int abc_text_size_medium_material=0x7f08003b; public static final int abc_text_size_menu_material=0x7f08003c; public static final int abc_text_size_small_material=0x7f08003d; public static final int abc_text_size_subhead_material=0x7f08003e; public static final int abc_text_size_subtitle_material_toolbar=0x7f080003; public static final int abc_text_size_title_material=0x7f08003f; public static final int abc_text_size_title_material_toolbar=0x7f080004; public static final int dialog_fixed_height_major=0x7f080007; public static final int dialog_fixed_height_minor=0x7f080008; public static final int dialog_fixed_width_major=0x7f080009; public static final int dialog_fixed_width_minor=0x7f08000a; public static final int disabled_alpha_material_dark=0x7f080040; public static final int disabled_alpha_material_light=0x7f080041; public static final int highlight_alpha_material_colored=0x7f080042; public static final int highlight_alpha_material_dark=0x7f080043; public static final int highlight_alpha_material_light=0x7f080044; public static final int notification_large_icon_height=0x7f080045; public static final int notification_large_icon_width=0x7f080046; public static final int notification_subtext_size=0x7f080047; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; public static final int abc_action_bar_item_background_material=0x7f020001; public static final int abc_btn_borderless_material=0x7f020002; public static final int abc_btn_check_material=0x7f020003; public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; public static final int abc_btn_colored_material=0x7f020006; public static final int abc_btn_default_mtrl_shape=0x7f020007; public static final int abc_btn_radio_material=0x7f020008; public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b; public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; public static final int abc_cab_background_internal_bg=0x7f02000f; public static final int abc_cab_background_top_material=0x7f020010; public static final int abc_cab_background_top_mtrl_alpha=0x7f020011; public static final int abc_control_background_material=0x7f020012; public static final int abc_dialog_material_background_dark=0x7f020013; public static final int abc_dialog_material_background_light=0x7f020014; public static final int abc_edit_text_material=0x7f020015; public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; public static final int abc_ic_clear_mtrl_alpha=0x7f020017; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020019; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001f; public static final int abc_ic_search_api_mtrl_alpha=0x7f020020; public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020021; public static final int abc_item_background_holo_dark=0x7f020022; public static final int abc_item_background_holo_light=0x7f020023; public static final int abc_list_divider_mtrl_alpha=0x7f020024; public static final int abc_list_focused_holo=0x7f020025; public static final int abc_list_longpressed_holo=0x7f020026; public static final int abc_list_pressed_holo_dark=0x7f020027; public static final int abc_list_pressed_holo_light=0x7f020028; public static final int abc_list_selector_background_transition_holo_dark=0x7f020029; public static final int abc_list_selector_background_transition_holo_light=0x7f02002a; public static final int abc_list_selector_disabled_holo_dark=0x7f02002b; public static final int abc_list_selector_disabled_holo_light=0x7f02002c; public static final int abc_list_selector_holo_dark=0x7f02002d; public static final int abc_list_selector_holo_light=0x7f02002e; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f02002f; public static final int abc_popup_background_mtrl_mult=0x7f020030; public static final int abc_ratingbar_full_material=0x7f020031; public static final int abc_spinner_mtrl_am_alpha=0x7f020032; public static final int abc_spinner_textfield_background_material=0x7f020033; public static final int abc_switch_thumb_material=0x7f020034; public static final int abc_switch_track_mtrl_alpha=0x7f020035; public static final int abc_tab_indicator_material=0x7f020036; public static final int abc_tab_indicator_mtrl_alpha=0x7f020037; public static final int abc_text_cursor_material=0x7f020038; public static final int abc_textfield_activated_mtrl_alpha=0x7f020039; public static final int abc_textfield_default_mtrl_alpha=0x7f02003a; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02003b; public static final int abc_textfield_search_default_mtrl_alpha=0x7f02003c; public static final int abc_textfield_search_material=0x7f02003d; public static final int notification_template_icon_bg=0x7f02003e; } public static final class id { public static final int action0=0x7f0d0058; public static final int action_bar=0x7f0d0048; public static final int action_bar_activity_content=0x7f0d0000; public static final int action_bar_container=0x7f0d0047; public static final int action_bar_root=0x7f0d0043; public static final int action_bar_spinner=0x7f0d0001; public static final int action_bar_subtitle=0x7f0d002c; public static final int action_bar_title=0x7f0d002b; public static final int action_context_bar=0x7f0d0049; public static final int action_divider=0x7f0d005c; public static final int action_menu_divider=0x7f0d0002; public static final int action_menu_presenter=0x7f0d0003; public static final int action_mode_bar=0x7f0d0045; public static final int action_mode_bar_stub=0x7f0d0044; public static final int action_mode_close_button=0x7f0d002d; public static final int activity_chooser_view_content=0x7f0d002e; public static final int alertTitle=0x7f0d0038; public static final int always=0x7f0d0025; public static final int beginning=0x7f0d0022; public static final int buttonPanel=0x7f0d003e; public static final int cancel_action=0x7f0d0059; public static final int catalyst_redbox_title=0x7f0d0067; public static final int center=0x7f0d001a; public static final int centerCrop=0x7f0d001b; public static final int centerInside=0x7f0d001c; public static final int checkbox=0x7f0d0040; public static final int chronometer=0x7f0d005f; public static final int collapseActionView=0x7f0d0026; public static final int contentPanel=0x7f0d0039; public static final int custom=0x7f0d003d; public static final int customPanel=0x7f0d003c; public static final int decor_content_parent=0x7f0d0046; public static final int default_activity_button=0x7f0d0031; public static final int disableHome=0x7f0d000e; public static final int edit_query=0x7f0d004a; public static final int end=0x7f0d0023; public static final int end_padder=0x7f0d0064; public static final int expand_activities_button=0x7f0d002f; public static final int expanded_menu=0x7f0d003f; public static final int fitCenter=0x7f0d001d; public static final int fitEnd=0x7f0d001e; public static final int fitStart=0x7f0d001f; public static final int fitXY=0x7f0d0020; public static final int focusCrop=0x7f0d0021; public static final int fps_text=0x7f0d0057; public static final int home=0x7f0d0004; public static final int homeAsUp=0x7f0d000f; public static final int icon=0x7f0d0033; public static final int ifRoom=0x7f0d0027; public static final int image=0x7f0d0030; public static final int info=0x7f0d0063; public static final int line1=0x7f0d005d; public static final int line3=0x7f0d0061; public static final int listMode=0x7f0d000b; public static final int list_item=0x7f0d0032; public static final int media_actions=0x7f0d005b; public static final int middle=0x7f0d0024; public static final int multiply=0x7f0d0015; public static final int never=0x7f0d0028; public static final int none=0x7f0d0010; public static final int normal=0x7f0d000c; public static final int parentPanel=0x7f0d0035; public static final int progress_circular=0x7f0d0005; public static final int progress_horizontal=0x7f0d0006; public static final int radio=0x7f0d0042; public static final int react_test_id=0x7f0d0007; public static final int rn_frame_file=0x7f0d0066; public static final int rn_frame_method=0x7f0d0065; public static final int rn_redbox_copy_button=0x7f0d006e; public static final int rn_redbox_dismiss_button=0x7f0d006c; public static final int rn_redbox_line_separator=0x7f0d0069; public static final int rn_redbox_loading_indicator=0x7f0d006a; public static final int rn_redbox_reload_button=0x7f0d006d; public static final int rn_redbox_report_button=0x7f0d006f; public static final int rn_redbox_report_label=0x7f0d006b; public static final int rn_redbox_stack=0x7f0d0068; public static final int screen=0x7f0d0016; public static final int scrollView=0x7f0d003a; public static final int search_badge=0x7f0d004c; public static final int search_bar=0x7f0d004b; public static final int search_button=0x7f0d004d; public static final int search_close_btn=0x7f0d0052; public static final int search_edit_frame=0x7f0d004e; public static final int search_go_btn=0x7f0d0054; public static final int search_mag_icon=0x7f0d004f; public static final int search_plate=0x7f0d0050; public static final int search_src_text=0x7f0d0051; public static final int search_voice_btn=0x7f0d0055; public static final int select_dialog_listview=0x7f0d0056; public static final int shortcut=0x7f0d0041; public static final int showCustom=0x7f0d0011; public static final int showHome=0x7f0d0012; public static final int showTitle=0x7f0d0013; public static final int split_action_bar=0x7f0d0008; public static final int src_atop=0x7f0d0017; public static final int src_in=0x7f0d0018; public static final int src_over=0x7f0d0019; public static final int status_bar_latest_event_content=0x7f0d005a; public static final int submit_area=0x7f0d0053; public static final int tabMode=0x7f0d000d; public static final int text=0x7f0d0062; public static final int text2=0x7f0d0060; public static final int textSpacerNoButtons=0x7f0d003b; public static final int time=0x7f0d005e; public static final int title=0x7f0d0034; public static final int title_template=0x7f0d0037; public static final int topPanel=0x7f0d0036; public static final int up=0x7f0d0009; public static final int useLogo=0x7f0d0014; public static final int view_tag_native_id=0x7f0d000a; public static final int withText=0x7f0d0029; public static final int wrap_content=0x7f0d002a; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f0b0001; public static final int abc_config_activityShortDur=0x7f0b0002; public static final int abc_max_action_buttons=0x7f0b0000; public static final int cancel_button_image_alpha=0x7f0b0003; public static final int status_bar_notification_info_maxnum=0x7f0b0004; } 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_material=0x7f040009; public static final int abc_dialog_title_material=0x7f04000a; public static final int abc_expanded_menu_layout=0x7f04000b; public static final int abc_list_menu_item_checkbox=0x7f04000c; public static final int abc_list_menu_item_icon=0x7f04000d; public static final int abc_list_menu_item_layout=0x7f04000e; public static final int abc_list_menu_item_radio=0x7f04000f; public static final int abc_popup_menu_item_layout=0x7f040010; public static final int abc_screen_content_include=0x7f040011; public static final int abc_screen_simple=0x7f040012; public static final int abc_screen_simple_overlay_action_mode=0x7f040013; public static final int abc_screen_toolbar=0x7f040014; public static final int abc_search_dropdown_item_icons_2line=0x7f040015; public static final int abc_search_view=0x7f040016; public static final int abc_select_dialog_material=0x7f040017; public static final int dev_loading_view=0x7f040018; public static final int fps_view=0x7f040019; public static final int notification_media_action=0x7f04001a; public static final int notification_media_cancel_action=0x7f04001b; public static final int notification_template_big_media=0x7f04001c; public static final int notification_template_big_media_narrow=0x7f04001d; public static final int notification_template_lines=0x7f04001e; public static final int notification_template_media=0x7f04001f; public static final int notification_template_part_chronometer=0x7f040020; public static final int notification_template_part_time=0x7f040021; public static final int redbox_item_frame=0x7f040022; public static final int redbox_item_title=0x7f040023; public static final int redbox_view=0x7f040024; public static final int select_dialog_item_material=0x7f040025; public static final int select_dialog_multichoice_material=0x7f040026; public static final int select_dialog_singlechoice_material=0x7f040027; public static final int support_simple_spinner_dropdown_item=0x7f040028; } public static final class mipmap { public static final int ic_launcher=0x7f030000; } public static final class string { public static final int abc_action_bar_home_description=0x7f070000; public static final int abc_action_bar_home_description_format=0x7f070001; public static final int abc_action_bar_home_subtitle_description_format=0x7f070002; public static final int abc_action_bar_up_description=0x7f070003; public static final int abc_action_menu_overflow_description=0x7f070004; public static final int abc_action_mode_done=0x7f070005; public static final int abc_activity_chooser_view_see_all=0x7f070006; public static final int abc_activitychooserview_choose_application=0x7f070007; public static final int abc_search_hint=0x7f070008; public static final int abc_searchview_description_clear=0x7f070009; public static final int abc_searchview_description_query=0x7f07000a; public static final int abc_searchview_description_search=0x7f07000b; public static final int abc_searchview_description_submit=0x7f07000c; public static final int abc_searchview_description_voice=0x7f07000d; public static final int abc_shareactionprovider_share_with=0x7f07000e; public static final int abc_shareactionprovider_share_with_application=0x7f07000f; public static final int abc_toolbar_collapse_description=0x7f070010; public static final int app_name=0x7f070012; public static final int catalyst_copy_button=0x7f070013; public static final int catalyst_debugjs=0x7f070014; public static final int catalyst_debugjs_nuclide=0x7f070015; public static final int catalyst_debugjs_nuclide_failure=0x7f070016; public static final int catalyst_debugjs_off=0x7f070017; public static final int catalyst_dismiss_button=0x7f070018; public static final int catalyst_element_inspector=0x7f070019; public static final int catalyst_heap_capture=0x7f07001a; public static final int catalyst_hot_module_replacement=0x7f07001b; public static final int catalyst_hot_module_replacement_off=0x7f07001c; public static final int catalyst_jsload_error=0x7f07001d; public static final int catalyst_live_reload=0x7f07001e; public static final int catalyst_live_reload_off=0x7f07001f; public static final int catalyst_loading_from_url=0x7f070020; public static final int catalyst_perf_monitor=0x7f070021; public static final int catalyst_perf_monitor_off=0x7f070022; public static final int catalyst_poke_sampling_profiler=0x7f070023; public static final int catalyst_reload_button=0x7f070024; public static final int catalyst_reloadjs=0x7f070025; public static final int catalyst_remotedbg_error=0x7f070026; public static final int catalyst_remotedbg_message=0x7f070027; public static final int catalyst_report_button=0x7f070028; public static final int catalyst_settings=0x7f070029; public static final int catalyst_settings_title=0x7f07002a; public static final int status_bar_notification_info_overflow=0x7f070011; } public static final class style { public static final int AlertDialog_AppCompat=0x7f09007a; public static final int AlertDialog_AppCompat_Light=0x7f09007b; public static final int Animation_AppCompat_Dialog=0x7f09007c; public static final int Animation_AppCompat_DropDownUp=0x7f09007d; public static final int Animation_Catalyst_RedBox=0x7f09007e; /** Customize your theme here. */ public static final int AppTheme=0x7f09007f; public static final int Base_AlertDialog_AppCompat=0x7f090080; public static final int Base_AlertDialog_AppCompat_Light=0x7f090081; public static final int Base_Animation_AppCompat_Dialog=0x7f090082; public static final int Base_Animation_AppCompat_DropDownUp=0x7f090083; public static final int Base_DialogWindowTitle_AppCompat=0x7f090084; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f090085; public static final int Base_TextAppearance_AppCompat=0x7f09002d; public static final int Base_TextAppearance_AppCompat_Body1=0x7f09002e; public static final int Base_TextAppearance_AppCompat_Body2=0x7f09002f; public static final int Base_TextAppearance_AppCompat_Button=0x7f090018; public static final int Base_TextAppearance_AppCompat_Caption=0x7f090030; public static final int Base_TextAppearance_AppCompat_Display1=0x7f090031; public static final int Base_TextAppearance_AppCompat_Display2=0x7f090032; public static final int Base_TextAppearance_AppCompat_Display3=0x7f090033; public static final int Base_TextAppearance_AppCompat_Display4=0x7f090034; public static final int Base_TextAppearance_AppCompat_Headline=0x7f090035; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f090003; public static final int Base_TextAppearance_AppCompat_Large=0x7f090036; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f090004; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f090037; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f090038; public static final int Base_TextAppearance_AppCompat_Medium=0x7f090039; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f090005; public static final int Base_TextAppearance_AppCompat_Menu=0x7f09003a; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f090086; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f09003b; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f09003c; public static final int Base_TextAppearance_AppCompat_Small=0x7f09003d; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f090006; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f09003e; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f090007; public static final int Base_TextAppearance_AppCompat_Title=0x7f09003f; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f090008; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f090040; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f090041; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f090042; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f090043; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090044; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f090045; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f090046; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f090047; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f090076; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f090087; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f090048; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f090049; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f09004a; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f09004b; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f090088; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f09004c; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f09004d; public static final int Base_Theme_AppCompat=0x7f09004e; public static final int Base_Theme_AppCompat_CompactMenu=0x7f090089; public static final int Base_Theme_AppCompat_Dialog=0x7f090009; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f09008a; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f09008b; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f09008c; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f090001; public static final int Base_Theme_AppCompat_Light=0x7f09004f; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f09008d; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f09000a; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f09008e; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f09008f; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f090090; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f090002; public static final int Base_ThemeOverlay_AppCompat=0x7f090091; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f090092; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f090093; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f090094; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f090095; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f09000b; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f09000c; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f090014; public static final int Base_V12_Widget_AppCompat_EditText=0x7f090015; public static final int Base_V21_Theme_AppCompat=0x7f090050; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f090051; public static final int Base_V21_Theme_AppCompat_Light=0x7f090052; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f090053; public static final int Base_V22_Theme_AppCompat=0x7f090074; public static final int Base_V22_Theme_AppCompat_Light=0x7f090075; public static final int Base_V23_Theme_AppCompat=0x7f090077; public static final int Base_V23_Theme_AppCompat_Light=0x7f090078; public static final int Base_V7_Theme_AppCompat=0x7f090096; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f090097; public static final int Base_V7_Theme_AppCompat_Light=0x7f090098; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f090099; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f09009a; public static final int Base_V7_Widget_AppCompat_EditText=0x7f09009b; public static final int Base_Widget_AppCompat_ActionBar=0x7f09009c; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f09009d; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f09009e; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f090054; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f090055; public static final int Base_Widget_AppCompat_ActionButton=0x7f090056; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f090057; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f090058; public static final int Base_Widget_AppCompat_ActionMode=0x7f09009f; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0900a0; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f090016; public static final int Base_Widget_AppCompat_Button=0x7f090059; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f09005a; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f09005b; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900a1; public static final int Base_Widget_AppCompat_Button_Colored=0x7f090079; public static final int Base_Widget_AppCompat_Button_Small=0x7f09005c; public static final int Base_Widget_AppCompat_ButtonBar=0x7f09005d; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900a2; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f09005e; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f09005f; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900a3; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f090000; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900a4; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f090060; public static final int Base_Widget_AppCompat_EditText=0x7f090017; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0900a5; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900a6; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900a7; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f090061; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090062; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f090063; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f090064; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090065; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f090066; public static final int Base_Widget_AppCompat_ListView=0x7f090067; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f090068; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f090069; public static final int Base_Widget_AppCompat_PopupMenu=0x7f09006a; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f09006b; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0900a8; public static final int Base_Widget_AppCompat_ProgressBar=0x7f09000d; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f09000e; public static final int Base_Widget_AppCompat_RatingBar=0x7f09006c; public static final int Base_Widget_AppCompat_SearchView=0x7f0900a9; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900aa; public static final int Base_Widget_AppCompat_Spinner=0x7f09006d; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f09006e; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f09006f; public static final int Base_Widget_AppCompat_Toolbar=0x7f0900ab; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f090070; public static final int CalendarDatePickerDialog=0x7f0900ac; public static final int CalendarDatePickerStyle=0x7f0900ad; public static final int ClockTimePickerDialog=0x7f0900ae; public static final int ClockTimePickerStyle=0x7f0900af; public static final int DialogAnimationFade=0x7f0900b0; public static final int DialogAnimationSlide=0x7f0900b1; public static final int Platform_AppCompat=0x7f09000f; public static final int Platform_AppCompat_Light=0x7f090010; public static final int Platform_ThemeOverlay_AppCompat=0x7f090071; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f090072; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f090073; public static final int Platform_V11_AppCompat=0x7f090011; public static final int Platform_V11_AppCompat_Light=0x7f090012; public static final int Platform_V14_AppCompat=0x7f090019; public static final int Platform_V14_AppCompat_Light=0x7f09001a; public static final int Platform_Widget_AppCompat_Spinner=0x7f090013; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f090020; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f090021; public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f090022; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f090023; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f090024; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f090025; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f090026; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f090027; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f090028; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f090029; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f09002a; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f09002b; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f09002c; public static final int SpinnerDatePickerDialog=0x7f0900b2; public static final int SpinnerDatePickerStyle=0x7f0900b3; public static final int SpinnerTimePickerDialog=0x7f0900b4; public static final int SpinnerTimePickerStyle=0x7f0900b5; public static final int TextAppearance_AppCompat=0x7f0900b6; public static final int TextAppearance_AppCompat_Body1=0x7f0900b7; public static final int TextAppearance_AppCompat_Body2=0x7f0900b8; public static final int TextAppearance_AppCompat_Button=0x7f0900b9; public static final int TextAppearance_AppCompat_Caption=0x7f0900ba; public static final int TextAppearance_AppCompat_Display1=0x7f0900bb; public static final int TextAppearance_AppCompat_Display2=0x7f0900bc; public static final int TextAppearance_AppCompat_Display3=0x7f0900bd; public static final int TextAppearance_AppCompat_Display4=0x7f0900be; public static final int TextAppearance_AppCompat_Headline=0x7f0900bf; public static final int TextAppearance_AppCompat_Inverse=0x7f0900c0; public static final int TextAppearance_AppCompat_Large=0x7f0900c1; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0900c2; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900c3; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900c4; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900c5; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900c6; public static final int TextAppearance_AppCompat_Medium=0x7f0900c7; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0900c8; public static final int TextAppearance_AppCompat_Menu=0x7f0900c9; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900ca; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0900cb; public static final int TextAppearance_AppCompat_Small=0x7f0900cc; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0900cd; public static final int TextAppearance_AppCompat_Subhead=0x7f0900ce; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0900cf; public static final int TextAppearance_AppCompat_Title=0x7f0900d0; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0900d1; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900d2; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0900d3; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0900d4; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0900d5; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0900d6; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0900d7; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0900d8; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0900d9; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0900da; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0900db; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0900dc; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900dd; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0900de; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0900df; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0900e0; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0900e1; public static final int TextAppearance_StatusBar_EventContent=0x7f09001b; public static final int TextAppearance_StatusBar_EventContent_Info=0x7f09001c; public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f09001d; public static final int TextAppearance_StatusBar_EventContent_Time=0x7f09001e; public static final int TextAppearance_StatusBar_EventContent_Title=0x7f09001f; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900e2; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0900e3; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0900e4; public static final int Theme=0x7f0900e5; public static final int Theme_AppCompat=0x7f0900e6; public static final int Theme_AppCompat_CompactMenu=0x7f0900e7; public static final int Theme_AppCompat_Dialog=0x7f0900e8; public static final int Theme_AppCompat_Dialog_Alert=0x7f0900e9; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0900ea; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0900eb; public static final int Theme_AppCompat_Light=0x7f0900ec; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0900ed; public static final int Theme_AppCompat_Light_Dialog=0x7f0900ee; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0900ef; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0900f0; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0900f1; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0900f2; public static final int Theme_AppCompat_NoActionBar=0x7f0900f3; public static final int Theme_Catalyst=0x7f0900f4; public static final int Theme_Catalyst_RedBox=0x7f0900f5; public static final int Theme_FullScreenDialog=0x7f0900f6; public static final int Theme_FullScreenDialogAnimatedFade=0x7f0900f7; public static final int Theme_FullScreenDialogAnimatedSlide=0x7f0900f8; public static final int Theme_ReactNative_AppCompat_Light=0x7f0900f9; public static final int Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen=0x7f0900fa; public static final int ThemeOverlay_AppCompat=0x7f0900fb; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0900fc; public static final int ThemeOverlay_AppCompat_Dark=0x7f0900fd; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900fe; public static final int ThemeOverlay_AppCompat_Light=0x7f0900ff; public static final int Widget_AppCompat_ActionBar=0x7f090100; public static final int Widget_AppCompat_ActionBar_Solid=0x7f090101; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f090102; public static final int Widget_AppCompat_ActionBar_TabText=0x7f090103; public static final int Widget_AppCompat_ActionBar_TabView=0x7f090104; public static final int Widget_AppCompat_ActionButton=0x7f090105; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f090106; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f090107; public static final int Widget_AppCompat_ActionMode=0x7f090108; public static final int Widget_AppCompat_ActivityChooserView=0x7f090109; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f09010a; public static final int Widget_AppCompat_Button=0x7f09010b; public static final int Widget_AppCompat_Button_Borderless=0x7f09010c; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f09010d; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f09010e; public static final int Widget_AppCompat_Button_Colored=0x7f09010f; public static final int Widget_AppCompat_Button_Small=0x7f090110; public static final int Widget_AppCompat_ButtonBar=0x7f090111; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f090112; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f090113; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f090114; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f090115; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f090116; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f090117; public static final int Widget_AppCompat_EditText=0x7f090118; public static final int Widget_AppCompat_Light_ActionBar=0x7f090119; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f09011a; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f09011b; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f09011c; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f09011d; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f09011e; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f09011f; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f090120; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f090121; public static final int Widget_AppCompat_Light_ActionButton=0x7f090122; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f090123; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f090124; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f090125; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f090126; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f090127; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f090128; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f090129; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f09012a; public static final int Widget_AppCompat_Light_PopupMenu=0x7f09012b; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f09012c; public static final int Widget_AppCompat_Light_SearchView=0x7f09012d; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f09012e; public static final int Widget_AppCompat_ListPopupWindow=0x7f09012f; public static final int Widget_AppCompat_ListView=0x7f090130; public static final int Widget_AppCompat_ListView_DropDown=0x7f090131; public static final int Widget_AppCompat_ListView_Menu=0x7f090132; public static final int Widget_AppCompat_PopupMenu=0x7f090133; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f090134; public static final int Widget_AppCompat_PopupWindow=0x7f090135; public static final int Widget_AppCompat_ProgressBar=0x7f090136; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f090137; public static final int Widget_AppCompat_RatingBar=0x7f090138; public static final int Widget_AppCompat_SearchView=0x7f090139; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f09013a; public static final int Widget_AppCompat_Spinner=0x7f09013b; public static final int Widget_AppCompat_Spinner_DropDown=0x7f09013c; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f09013d; public static final int Widget_AppCompat_Spinner_Underlined=0x7f09013e; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f09013f; public static final int Widget_AppCompat_Toolbar=0x7f090140; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f090141; } public static final class xml { public static final int preferences=0x7f060000; } 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.reactnativetestproject:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit com.reactnativetestproject:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked com.reactnativetestproject:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd com.reactnativetestproject:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft com.reactnativetestproject:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight com.reactnativetestproject:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart com.reactnativetestproject:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout com.reactnativetestproject:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions com.reactnativetestproject:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider com.reactnativetestproject:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation com.reactnativetestproject:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height com.reactnativetestproject:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll com.reactnativetestproject:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.reactnativetestproject:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout com.reactnativetestproject:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon com.reactnativetestproject:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.reactnativetestproject:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding com.reactnativetestproject:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo com.reactnativetestproject:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode com.reactnativetestproject:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme com.reactnativetestproject:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding com.reactnativetestproject:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle com.reactnativetestproject:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle com.reactnativetestproject:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle com.reactnativetestproject:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title com.reactnativetestproject:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle com.reactnativetestproject:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionBar_background @see #ActionBar_backgroundSplit @see #ActionBar_backgroundStacked @see #ActionBar_contentInsetEnd @see #ActionBar_contentInsetLeft @see #ActionBar_contentInsetRight @see #ActionBar_contentInsetStart @see #ActionBar_customNavigationLayout @see #ActionBar_displayOptions @see #ActionBar_divider @see #ActionBar_elevation @see #ActionBar_height @see #ActionBar_hideOnContentScroll @see #ActionBar_homeAsUpIndicator @see #ActionBar_homeLayout @see #ActionBar_icon @see #ActionBar_indeterminateProgressStyle @see #ActionBar_itemPadding @see #ActionBar_logo @see #ActionBar_navigationMode @see #ActionBar_popupTheme @see #ActionBar_progressBarPadding @see #ActionBar_progressBarStyle @see #ActionBar_subtitle @see #ActionBar_subtitleTextStyle @see #ActionBar_title @see #ActionBar_titleTextStyle */ public static final int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010096 }; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:background */ public static final int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:divider */ public static final int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:elevation */ public static final int ActionBar_elevation = 24; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:height */ public static final int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 26; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:icon */ public static final int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:logo */ public static final int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:popupTheme */ public static final int ActionBar_popupTheme = 25; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:subtitle */ public static final int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:title */ public static final int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject: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.reactnativetestproject:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit com.reactnativetestproject:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout com.reactnativetestproject:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height com.reactnativetestproject:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle com.reactnativetestproject:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle com.reactnativetestproject:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionMode_background @see #ActionMode_backgroundSplit @see #ActionMode_closeItemLayout @see #ActionMode_height @see #ActionMode_subtitleTextStyle @see #ActionMode_titleTextStyle */ public static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:background */ public static final int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:height */ public static final int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject: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.reactnativetestproject:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.reactnativetestproject:initialActivityCount}</code></td><td></td></tr> </table> @see #ActivityChooserView_expandActivityOverflowButtonDrawable @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e }; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject: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.reactnativetestproject:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout com.reactnativetestproject:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout com.reactnativetestproject:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.reactnativetestproject:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.reactnativetestproject:singleChoiceItemLayout}</code></td><td></td></tr> </table> @see #AlertDialog_android_layout @see #AlertDialog_buttonPanelSideLayout @see #AlertDialog_listItemLayout @see #AlertDialog_listLayout @see #AlertDialog_multiChoiceItemLayout @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }; /** <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.reactnativetestproject.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.reactnativetestproject:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:listItemLayout */ public static final int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:listLayout */ public static final int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout = 4; /** 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.reactnativetestproject:textAllCaps}</code></td><td></td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010024 }; /** <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.reactnativetestproject.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.reactnativetestproject:textAllCaps */ public static final int AppCompatTextView_textAllCaps = 1; /** 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.reactnativetestproject:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode com.reactnativetestproject:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f010025, 0x7f010026 }; /** <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.reactnativetestproject.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.reactnativetestproject:buttonTint */ public static final int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:buttonTintMode */ public static final int CompoundButton_buttonTintMode = 2; /** Attributes that can be used with a DrawerArrowToggle. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.reactnativetestproject:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.reactnativetestproject:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength com.reactnativetestproject:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color com.reactnativetestproject:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.reactnativetestproject:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.reactnativetestproject:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars com.reactnativetestproject:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness com.reactnativetestproject: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 = { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:barLength */ public static final int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:color */ public static final int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:thickness */ public static final int DrawerArrowToggle_thickness = 7; /** Attributes that can be used with a GenericDraweeHierarchy. <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 #GenericDraweeHierarchy_actualImageScaleType com.reactnativetestproject:actualImageScaleType}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_backgroundImage com.reactnativetestproject:backgroundImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_fadeDuration com.reactnativetestproject:fadeDuration}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_failureImage com.reactnativetestproject:failureImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_failureImageScaleType com.reactnativetestproject:failureImageScaleType}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_overlayImage com.reactnativetestproject:overlayImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_placeholderImage com.reactnativetestproject:placeholderImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_placeholderImageScaleType com.reactnativetestproject:placeholderImageScaleType}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_pressedStateOverlayImage com.reactnativetestproject:pressedStateOverlayImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_progressBarAutoRotateInterval com.reactnativetestproject:progressBarAutoRotateInterval}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_progressBarImage com.reactnativetestproject:progressBarImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_progressBarImageScaleType com.reactnativetestproject:progressBarImageScaleType}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_retryImage com.reactnativetestproject:retryImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_retryImageScaleType com.reactnativetestproject:retryImageScaleType}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundAsCircle com.reactnativetestproject:roundAsCircle}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundBottomLeft com.reactnativetestproject:roundBottomLeft}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundBottomRight com.reactnativetestproject:roundBottomRight}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundTopLeft com.reactnativetestproject:roundTopLeft}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundTopRight com.reactnativetestproject:roundTopRight}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundWithOverlayColor com.reactnativetestproject:roundWithOverlayColor}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundedCornerRadius com.reactnativetestproject:roundedCornerRadius}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundingBorderColor com.reactnativetestproject:roundingBorderColor}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundingBorderPadding com.reactnativetestproject:roundingBorderPadding}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundingBorderWidth com.reactnativetestproject:roundingBorderWidth}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_viewAspectRatio com.reactnativetestproject:viewAspectRatio}</code></td><td></td></tr> </table> @see #GenericDraweeHierarchy_actualImageScaleType @see #GenericDraweeHierarchy_backgroundImage @see #GenericDraweeHierarchy_fadeDuration @see #GenericDraweeHierarchy_failureImage @see #GenericDraweeHierarchy_failureImageScaleType @see #GenericDraweeHierarchy_overlayImage @see #GenericDraweeHierarchy_placeholderImage @see #GenericDraweeHierarchy_placeholderImageScaleType @see #GenericDraweeHierarchy_pressedStateOverlayImage @see #GenericDraweeHierarchy_progressBarAutoRotateInterval @see #GenericDraweeHierarchy_progressBarImage @see #GenericDraweeHierarchy_progressBarImageScaleType @see #GenericDraweeHierarchy_retryImage @see #GenericDraweeHierarchy_retryImageScaleType @see #GenericDraweeHierarchy_roundAsCircle @see #GenericDraweeHierarchy_roundBottomLeft @see #GenericDraweeHierarchy_roundBottomRight @see #GenericDraweeHierarchy_roundTopLeft @see #GenericDraweeHierarchy_roundTopRight @see #GenericDraweeHierarchy_roundWithOverlayColor @see #GenericDraweeHierarchy_roundedCornerRadius @see #GenericDraweeHierarchy_roundingBorderColor @see #GenericDraweeHierarchy_roundingBorderPadding @see #GenericDraweeHierarchy_roundingBorderWidth @see #GenericDraweeHierarchy_viewAspectRatio */ public static final int[] GenericDraweeHierarchy = { 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 }; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actualImageScaleType} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> @attr name com.reactnativetestproject:actualImageScaleType */ public static final int GenericDraweeHierarchy_actualImageScaleType = 11; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#backgroundImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:backgroundImage */ public static final int GenericDraweeHierarchy_backgroundImage = 12; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#fadeDuration} attribute's value can be found in the {@link #GenericDraweeHierarchy} 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.reactnativetestproject:fadeDuration */ public static final int GenericDraweeHierarchy_fadeDuration = 0; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#failureImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:failureImage */ public static final int GenericDraweeHierarchy_failureImage = 6; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#failureImageScaleType} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> @attr name com.reactnativetestproject:failureImageScaleType */ public static final int GenericDraweeHierarchy_failureImageScaleType = 7; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#overlayImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:overlayImage */ public static final int GenericDraweeHierarchy_overlayImage = 13; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#placeholderImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:placeholderImage */ public static final int GenericDraweeHierarchy_placeholderImage = 2; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#placeholderImageScaleType} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> @attr name com.reactnativetestproject:placeholderImageScaleType */ public static final int GenericDraweeHierarchy_placeholderImageScaleType = 3; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#pressedStateOverlayImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:pressedStateOverlayImage */ public static final int GenericDraweeHierarchy_pressedStateOverlayImage = 14; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#progressBarAutoRotateInterval} attribute's value can be found in the {@link #GenericDraweeHierarchy} 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.reactnativetestproject:progressBarAutoRotateInterval */ public static final int GenericDraweeHierarchy_progressBarAutoRotateInterval = 10; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#progressBarImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:progressBarImage */ public static final int GenericDraweeHierarchy_progressBarImage = 8; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#progressBarImageScaleType} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> @attr name com.reactnativetestproject:progressBarImageScaleType */ public static final int GenericDraweeHierarchy_progressBarImageScaleType = 9; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#retryImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:retryImage */ public static final int GenericDraweeHierarchy_retryImage = 4; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#retryImageScaleType} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> @attr name com.reactnativetestproject:retryImageScaleType */ public static final int GenericDraweeHierarchy_retryImageScaleType = 5; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#roundAsCircle} attribute's value can be found in the {@link #GenericDraweeHierarchy} 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.reactnativetestproject:roundAsCircle */ public static final int GenericDraweeHierarchy_roundAsCircle = 15; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#roundBottomLeft} attribute's value can be found in the {@link #GenericDraweeHierarchy} 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.reactnativetestproject:roundBottomLeft */ public static final int GenericDraweeHierarchy_roundBottomLeft = 20; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#roundBottomRight} attribute's value can be found in the {@link #GenericDraweeHierarchy} 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.reactnativetestproject:roundBottomRight */ public static final int GenericDraweeHierarchy_roundBottomRight = 19; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#roundTopLeft} attribute's value can be found in the {@link #GenericDraweeHierarchy} 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.reactnativetestproject:roundTopLeft */ public static final int GenericDraweeHierarchy_roundTopLeft = 17; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#roundTopRight} attribute's value can be found in the {@link #GenericDraweeHierarchy} 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.reactnativetestproject:roundTopRight */ public static final int GenericDraweeHierarchy_roundTopRight = 18; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#roundWithOverlayColor} attribute's value can be found in the {@link #GenericDraweeHierarchy} 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.reactnativetestproject:roundWithOverlayColor */ public static final int GenericDraweeHierarchy_roundWithOverlayColor = 21; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#roundedCornerRadius} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.reactnativetestproject:roundedCornerRadius */ public static final int GenericDraweeHierarchy_roundedCornerRadius = 16; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#roundingBorderColor} attribute's value can be found in the {@link #GenericDraweeHierarchy} 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.reactnativetestproject:roundingBorderColor */ public static final int GenericDraweeHierarchy_roundingBorderColor = 23; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#roundingBorderPadding} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.reactnativetestproject:roundingBorderPadding */ public static final int GenericDraweeHierarchy_roundingBorderPadding = 24; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#roundingBorderWidth} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.reactnativetestproject:roundingBorderWidth */ public static final int GenericDraweeHierarchy_roundingBorderWidth = 22; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#viewAspectRatio} attribute's value can be found in the {@link #GenericDraweeHierarchy} 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.reactnativetestproject:viewAspectRatio */ public static final int GenericDraweeHierarchy_viewAspectRatio = 1; /** 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.reactnativetestproject:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.reactnativetestproject:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.reactnativetestproject:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers com.reactnativetestproject:showDividers}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_android_baselineAligned @see #LinearLayoutCompat_android_baselineAlignedChildIndex @see #LinearLayoutCompat_android_gravity @see #LinearLayoutCompat_android_orientation @see #LinearLayoutCompat_android_weightSum @see #LinearLayoutCompat_divider @see #LinearLayoutCompat_dividerPadding @see #LinearLayoutCompat_measureWithLargestChild @see #LinearLayoutCompat_showDividers */ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010048, 0x7f010049, 0x7f01004a }; /** <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.reactnativetestproject.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.reactnativetestproject:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject: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.reactnativetestproject:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass com.reactnativetestproject:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass com.reactnativetestproject: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.reactnativetestproject: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, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e }; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:actionLayout */ public static final int MenuItem_actionLayout = 14; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:actionProviderClass */ public static final int MenuItem_actionProviderClass = 16; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject: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.reactnativetestproject.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.reactnativetestproject: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.reactnativetestproject:preserveIconSpacing}</code></td><td></td></tr> </table> @see #MenuView_android_headerBackground @see #MenuView_android_horizontalDivider @see #MenuView_android_itemBackground @see #MenuView_android_itemIconDisabledAlpha @see #MenuView_android_itemTextAppearance @see #MenuView_android_verticalDivider @see #MenuView_android_windowAnimationStyle @see #MenuView_preserveIconSpacing */ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01004f }; /** <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.reactnativetestproject.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.reactnativetestproject:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** Attributes that can be used with a PopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_overlapAnchor com.reactnativetestproject:overlapAnchor}</code></td><td></td></tr> </table> @see #PopupWindow_android_popupBackground @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { 0x01010176, 0x7f010050 }; /** <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.reactnativetestproject.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.reactnativetestproject:overlapAnchor */ public static final int PopupWindow_overlapAnchor = 1; /** Attributes that can be used with a PopupWindowBackgroundState. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.reactnativetestproject:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f010051 }; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor = 0; /** Attributes that can be used with a SearchView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_closeIcon com.reactnativetestproject:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon com.reactnativetestproject:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint com.reactnativetestproject:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon com.reactnativetestproject:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault com.reactnativetestproject:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout com.reactnativetestproject:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground com.reactnativetestproject:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint com.reactnativetestproject:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon com.reactnativetestproject:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon com.reactnativetestproject:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground com.reactnativetestproject:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout com.reactnativetestproject:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon com.reactnativetestproject: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, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e }; /** <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.reactnativetestproject.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.reactnativetestproject:closeIcon */ public static final int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:commitIcon */ public static final int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:defaultQueryHint */ public static final int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:goIcon */ public static final int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:layout */ public static final int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:queryBackground */ public static final int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:queryHint */ public static final int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:searchHintIcon */ public static final int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:searchIcon */ public static final int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:submitBackground */ public static final int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:voiceIcon */ public static final int SearchView_voiceIcon = 12; /** Attributes that can be used with a SimpleDraweeView. <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 #SimpleDraweeView_actualImageResource com.reactnativetestproject:actualImageResource}</code></td><td></td></tr> <tr><td><code>{@link #SimpleDraweeView_actualImageUri com.reactnativetestproject:actualImageUri}</code></td><td></td></tr> </table> @see #SimpleDraweeView_actualImageResource @see #SimpleDraweeView_actualImageUri */ public static final int[] SimpleDraweeView = { 0x7f01005f, 0x7f010060 }; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actualImageResource} attribute's value can be found in the {@link #SimpleDraweeView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actualImageResource */ public static final int SimpleDraweeView_actualImageResource = 1; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actualImageUri} attribute's value can be found in the {@link #SimpleDraweeView} 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.reactnativetestproject:actualImageUri */ public static final int SimpleDraweeView_actualImageUri = 0; /** 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_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.reactnativetestproject:popupTheme}</code></td><td></td></tr> </table> @see #Spinner_android_dropDownWidth @see #Spinner_android_popupBackground @see #Spinner_android_prompt @see #Spinner_popupTheme */ public static final int[] Spinner = { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }; /** <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 = 2; /** <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 = 0; /** <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 = 1; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:popupTheme */ public static final int Spinner_popupTheme = 3; /** 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.reactnativetestproject:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack com.reactnativetestproject:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth com.reactnativetestproject:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding com.reactnativetestproject:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.reactnativetestproject:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.reactnativetestproject:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track com.reactnativetestproject:track}</code></td><td></td></tr> </table> @see #SwitchCompat_android_textOff @see #SwitchCompat_android_textOn @see #SwitchCompat_android_thumb @see #SwitchCompat_showText @see #SwitchCompat_splitTrack @see #SwitchCompat_switchMinWidth @see #SwitchCompat_switchPadding @see #SwitchCompat_switchTextAppearance @see #SwitchCompat_thumbTextPadding @see #SwitchCompat_track */ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067 }; /** <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.reactnativetestproject.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.reactnativetestproject:showText */ public static final int SwitchCompat_showText = 9; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:splitTrack */ public static final int SwitchCompat_splitTrack = 8; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 6; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:switchPadding */ public static final int SwitchCompat_switchPadding = 7; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 5; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 4; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:track */ public static final int SwitchCompat_track = 3; /** Attributes that can be used with a TextAppearance. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_textAllCaps com.reactnativetestproject:textAllCaps}</code></td><td></td></tr> </table> @see #TextAppearance_android_shadowColor @see #TextAppearance_android_shadowDx @see #TextAppearance_android_shadowDy @see #TextAppearance_android_shadowRadius @see #TextAppearance_android_textColor @see #TextAppearance_android_textSize @see #TextAppearance_android_textStyle @see #TextAppearance_android_typeface @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010024 }; /** <p>This symbol is the offset where the {@link android.R.attr#shadowColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowColor */ public static final int TextAppearance_android_shadowColor = 4; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDx} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDx */ public static final int TextAppearance_android_shadowDx = 5; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDy} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDy */ public static final int TextAppearance_android_shadowDy = 6; /** <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowRadius */ public static final int TextAppearance_android_shadowRadius = 7; /** <p>This symbol is the offset where the {@link android.R.attr#textColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColor */ public static final int TextAppearance_android_textColor = 3; /** <p>This symbol is the offset where the {@link android.R.attr#textSize} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textSize */ public static final int TextAppearance_android_textSize = 0; /** <p>This symbol is the offset where the {@link android.R.attr#textStyle} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textStyle */ public static final int TextAppearance_android_textStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#typeface} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:typeface */ public static final int TextAppearance_android_typeface = 1; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:textAllCaps */ public static final int TextAppearance_textAllCaps = 8; /** Attributes that can be used with a TextStyle. <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 #TextStyle_android_ellipsize android:ellipsize}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_maxLines android:maxLines}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_shadowColor android:shadowColor}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_shadowDx android:shadowDx}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_shadowDy android:shadowDy}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_singleLine android:singleLine}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_textAppearance android:textAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_textColor android:textColor}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_textSize android:textSize}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_textStyle android:textStyle}</code></td><td></td></tr> </table> @see #TextStyle_android_ellipsize @see #TextStyle_android_maxLines @see #TextStyle_android_shadowColor @see #TextStyle_android_shadowDx @see #TextStyle_android_shadowDy @see #TextStyle_android_shadowRadius @see #TextStyle_android_singleLine @see #TextStyle_android_textAppearance @see #TextStyle_android_textColor @see #TextStyle_android_textSize @see #TextStyle_android_textStyle */ public static final int[] TextStyle = { 0x01010034, 0x01010095, 0x01010097, 0x01010098, 0x010100ab, 0x01010153, 0x0101015d, 0x01010161, 0x01010162, 0x01010163, 0x01010164 }; /** <p>This symbol is the offset where the {@link android.R.attr#ellipsize} attribute's value can be found in the {@link #TextStyle} array. @attr name android:ellipsize */ public static final int TextStyle_android_ellipsize = 4; /** <p>This symbol is the offset where the {@link android.R.attr#maxLines} attribute's value can be found in the {@link #TextStyle} array. @attr name android:maxLines */ public static final int TextStyle_android_maxLines = 5; /** <p>This symbol is the offset where the {@link android.R.attr#shadowColor} attribute's value can be found in the {@link #TextStyle} array. @attr name android:shadowColor */ public static final int TextStyle_android_shadowColor = 7; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDx} attribute's value can be found in the {@link #TextStyle} array. @attr name android:shadowDx */ public static final int TextStyle_android_shadowDx = 8; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDy} attribute's value can be found in the {@link #TextStyle} array. @attr name android:shadowDy */ public static final int TextStyle_android_shadowDy = 9; /** <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} attribute's value can be found in the {@link #TextStyle} array. @attr name android:shadowRadius */ public static final int TextStyle_android_shadowRadius = 10; /** <p>This symbol is the offset where the {@link android.R.attr#singleLine} attribute's value can be found in the {@link #TextStyle} array. @attr name android:singleLine */ public static final int TextStyle_android_singleLine = 6; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #TextStyle} array. @attr name android:textAppearance */ public static final int TextStyle_android_textAppearance = 0; /** <p>This symbol is the offset where the {@link android.R.attr#textColor} attribute's value can be found in the {@link #TextStyle} array. @attr name android:textColor */ public static final int TextStyle_android_textColor = 3; /** <p>This symbol is the offset where the {@link android.R.attr#textSize} attribute's value can be found in the {@link #TextStyle} array. @attr name android:textSize */ public static final int TextStyle_android_textSize = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textStyle} attribute's value can be found in the {@link #TextStyle} array. @attr name android:textStyle */ public static final int TextStyle_android_textStyle = 2; /** Attributes that can be used with a 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_actionBarDivider com.reactnativetestproject:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarItemBackground com.reactnativetestproject:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarPopupTheme com.reactnativetestproject:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarSize com.reactnativetestproject:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarSplitStyle com.reactnativetestproject:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarStyle com.reactnativetestproject:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTabBarStyle com.reactnativetestproject:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTabStyle com.reactnativetestproject:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTabTextStyle com.reactnativetestproject:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTheme com.reactnativetestproject:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarWidgetTheme com.reactnativetestproject:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionButtonStyle com.reactnativetestproject:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionDropDownStyle com.reactnativetestproject:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionMenuTextAppearance com.reactnativetestproject:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionMenuTextColor com.reactnativetestproject:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeBackground com.reactnativetestproject:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCloseButtonStyle com.reactnativetestproject:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCloseDrawable com.reactnativetestproject:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCopyDrawable com.reactnativetestproject:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCutDrawable com.reactnativetestproject:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeFindDrawable com.reactnativetestproject:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModePasteDrawable com.reactnativetestproject:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModePopupWindowStyle com.reactnativetestproject:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeSelectAllDrawable com.reactnativetestproject:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeShareDrawable com.reactnativetestproject:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeSplitBackground com.reactnativetestproject:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeStyle com.reactnativetestproject:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeWebSearchDrawable com.reactnativetestproject:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionOverflowButtonStyle com.reactnativetestproject:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionOverflowMenuStyle com.reactnativetestproject:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_activityChooserViewStyle com.reactnativetestproject:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogButtonGroupStyle com.reactnativetestproject:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogCenterButtons com.reactnativetestproject:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogStyle com.reactnativetestproject:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogTheme com.reactnativetestproject:alertDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> <tr><td><code>{@link #Theme_autoCompleteTextViewStyle com.reactnativetestproject:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_borderlessButtonStyle com.reactnativetestproject:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarButtonStyle com.reactnativetestproject:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarNegativeButtonStyle com.reactnativetestproject:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarNeutralButtonStyle com.reactnativetestproject:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarPositiveButtonStyle com.reactnativetestproject:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarStyle com.reactnativetestproject:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonStyle com.reactnativetestproject:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonStyleSmall com.reactnativetestproject:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #Theme_checkboxStyle com.reactnativetestproject:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_checkedTextViewStyle com.reactnativetestproject:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorAccent com.reactnativetestproject:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorButtonNormal com.reactnativetestproject:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorControlActivated com.reactnativetestproject:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorControlHighlight com.reactnativetestproject:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorControlNormal com.reactnativetestproject:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorPrimary com.reactnativetestproject:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorPrimaryDark com.reactnativetestproject:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorSwitchThumbNormal com.reactnativetestproject:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_controlBackground com.reactnativetestproject:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dialogPreferredPadding com.reactnativetestproject:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dialogTheme com.reactnativetestproject:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dividerHorizontal com.reactnativetestproject:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dividerVertical com.reactnativetestproject:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dropDownListViewStyle com.reactnativetestproject:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dropdownListPreferredItemHeight com.reactnativetestproject:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_editTextBackground com.reactnativetestproject:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_editTextColor com.reactnativetestproject:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_editTextStyle com.reactnativetestproject:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_homeAsUpIndicator com.reactnativetestproject:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listChoiceBackgroundIndicator com.reactnativetestproject:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listDividerAlertDialog com.reactnativetestproject:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPopupWindowStyle com.reactnativetestproject:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemHeight com.reactnativetestproject:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemHeightLarge com.reactnativetestproject:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemHeightSmall com.reactnativetestproject:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemPaddingLeft com.reactnativetestproject:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemPaddingRight com.reactnativetestproject:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_panelBackground com.reactnativetestproject:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_panelMenuListTheme com.reactnativetestproject:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_panelMenuListWidth com.reactnativetestproject:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #Theme_popupMenuStyle com.reactnativetestproject:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_popupWindowStyle com.reactnativetestproject:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_radioButtonStyle com.reactnativetestproject:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_ratingBarStyle com.reactnativetestproject:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_searchViewStyle com.reactnativetestproject:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_selectableItemBackground com.reactnativetestproject:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_selectableItemBackgroundBorderless com.reactnativetestproject:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #Theme_spinnerDropDownItemStyle com.reactnativetestproject:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_spinnerStyle com.reactnativetestproject:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_switchStyle com.reactnativetestproject:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceLargePopupMenu com.reactnativetestproject:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceListItem com.reactnativetestproject:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceListItemSmall com.reactnativetestproject:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceSearchResultSubtitle com.reactnativetestproject:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceSearchResultTitle com.reactnativetestproject:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceSmallPopupMenu com.reactnativetestproject:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textColorAlertDialogListItem com.reactnativetestproject:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textColorSearchUrl com.reactnativetestproject:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #Theme_toolbarNavigationButtonStyle com.reactnativetestproject:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_toolbarStyle com.reactnativetestproject:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowActionBar com.reactnativetestproject:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowActionBarOverlay com.reactnativetestproject:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowActionModeOverlay com.reactnativetestproject:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedHeightMajor com.reactnativetestproject:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedHeightMinor com.reactnativetestproject:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedWidthMajor com.reactnativetestproject:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedWidthMinor com.reactnativetestproject:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowMinWidthMajor com.reactnativetestproject:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowMinWidthMinor com.reactnativetestproject:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowNoTitle com.reactnativetestproject:windowNoTitle}</code></td><td></td></tr> </table> @see #Theme_actionBarDivider @see #Theme_actionBarItemBackground @see #Theme_actionBarPopupTheme @see #Theme_actionBarSize @see #Theme_actionBarSplitStyle @see #Theme_actionBarStyle @see #Theme_actionBarTabBarStyle @see #Theme_actionBarTabStyle @see #Theme_actionBarTabTextStyle @see #Theme_actionBarTheme @see #Theme_actionBarWidgetTheme @see #Theme_actionButtonStyle @see #Theme_actionDropDownStyle @see #Theme_actionMenuTextAppearance @see #Theme_actionMenuTextColor @see #Theme_actionModeBackground @see #Theme_actionModeCloseButtonStyle @see #Theme_actionModeCloseDrawable @see #Theme_actionModeCopyDrawable @see #Theme_actionModeCutDrawable @see #Theme_actionModeFindDrawable @see #Theme_actionModePasteDrawable @see #Theme_actionModePopupWindowStyle @see #Theme_actionModeSelectAllDrawable @see #Theme_actionModeShareDrawable @see #Theme_actionModeSplitBackground @see #Theme_actionModeStyle @see #Theme_actionModeWebSearchDrawable @see #Theme_actionOverflowButtonStyle @see #Theme_actionOverflowMenuStyle @see #Theme_activityChooserViewStyle @see #Theme_alertDialogButtonGroupStyle @see #Theme_alertDialogCenterButtons @see #Theme_alertDialogStyle @see #Theme_alertDialogTheme @see #Theme_android_windowAnimationStyle @see #Theme_android_windowIsFloating @see #Theme_autoCompleteTextViewStyle @see #Theme_borderlessButtonStyle @see #Theme_buttonBarButtonStyle @see #Theme_buttonBarNegativeButtonStyle @see #Theme_buttonBarNeutralButtonStyle @see #Theme_buttonBarPositiveButtonStyle @see #Theme_buttonBarStyle @see #Theme_buttonStyle @see #Theme_buttonStyleSmall @see #Theme_checkboxStyle @see #Theme_checkedTextViewStyle @see #Theme_colorAccent @see #Theme_colorButtonNormal @see #Theme_colorControlActivated @see #Theme_colorControlHighlight @see #Theme_colorControlNormal @see #Theme_colorPrimary @see #Theme_colorPrimaryDark @see #Theme_colorSwitchThumbNormal @see #Theme_controlBackground @see #Theme_dialogPreferredPadding @see #Theme_dialogTheme @see #Theme_dividerHorizontal @see #Theme_dividerVertical @see #Theme_dropDownListViewStyle @see #Theme_dropdownListPreferredItemHeight @see #Theme_editTextBackground @see #Theme_editTextColor @see #Theme_editTextStyle @see #Theme_homeAsUpIndicator @see #Theme_listChoiceBackgroundIndicator @see #Theme_listDividerAlertDialog @see #Theme_listPopupWindowStyle @see #Theme_listPreferredItemHeight @see #Theme_listPreferredItemHeightLarge @see #Theme_listPreferredItemHeightSmall @see #Theme_listPreferredItemPaddingLeft @see #Theme_listPreferredItemPaddingRight @see #Theme_panelBackground @see #Theme_panelMenuListTheme @see #Theme_panelMenuListWidth @see #Theme_popupMenuStyle @see #Theme_popupWindowStyle @see #Theme_radioButtonStyle @see #Theme_ratingBarStyle @see #Theme_searchViewStyle @see #Theme_selectableItemBackground @see #Theme_selectableItemBackgroundBorderless @see #Theme_spinnerDropDownItemStyle @see #Theme_spinnerStyle @see #Theme_switchStyle @see #Theme_textAppearanceLargePopupMenu @see #Theme_textAppearanceListItem @see #Theme_textAppearanceListItemSmall @see #Theme_textAppearanceSearchResultSubtitle @see #Theme_textAppearanceSearchResultTitle @see #Theme_textAppearanceSmallPopupMenu @see #Theme_textColorAlertDialogListItem @see #Theme_textColorSearchUrl @see #Theme_toolbarNavigationButtonStyle @see #Theme_toolbarStyle @see #Theme_windowActionBar @see #Theme_windowActionBarOverlay @see #Theme_windowActionModeOverlay @see #Theme_windowFixedHeightMajor @see #Theme_windowFixedHeightMinor @see #Theme_windowFixedWidthMajor @see #Theme_windowFixedWidthMinor @see #Theme_windowMinWidthMajor @see #Theme_windowMinWidthMinor @see #Theme_windowNoTitle */ public static final int[] Theme = { 0x01010057, 0x010100ae, 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, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1 }; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionBarDivider} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionBarDivider */ public static final int Theme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionBarItemBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionBarItemBackground */ public static final int Theme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionBarPopupTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionBarPopupTheme */ public static final int Theme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionBarSize} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:actionBarSize */ public static final int Theme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionBarSplitStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionBarSplitStyle */ public static final int Theme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionBarStyle */ public static final int Theme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionBarTabBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionBarTabBarStyle */ public static final int Theme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionBarTabStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionBarTabStyle */ public static final int Theme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionBarTabTextStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionBarTabTextStyle */ public static final int Theme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionBarTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionBarTheme */ public static final int Theme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionBarWidgetTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionBarWidgetTheme */ public static final int Theme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionButtonStyle */ public static final int Theme_actionButtonStyle = 49; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionDropDownStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionDropDownStyle */ public static final int Theme_actionDropDownStyle = 45; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionMenuTextAppearance} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionMenuTextAppearance */ public static final int Theme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionMenuTextColor} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:actionMenuTextColor */ public static final int Theme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionModeBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionModeBackground */ public static final int Theme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionModeCloseButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionModeCloseButtonStyle */ public static final int Theme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionModeCloseDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionModeCloseDrawable */ public static final int Theme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionModeCopyDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionModeCopyDrawable */ public static final int Theme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionModeCutDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionModeCutDrawable */ public static final int Theme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionModeFindDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionModeFindDrawable */ public static final int Theme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionModePasteDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionModePasteDrawable */ public static final int Theme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionModePopupWindowStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionModePopupWindowStyle */ public static final int Theme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionModeSelectAllDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionModeSelectAllDrawable */ public static final int Theme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionModeShareDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionModeShareDrawable */ public static final int Theme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionModeSplitBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionModeSplitBackground */ public static final int Theme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionModeStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionModeStyle */ public static final int Theme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionModeWebSearchDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionModeWebSearchDrawable */ public static final int Theme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionOverflowButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionOverflowButtonStyle */ public static final int Theme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#actionOverflowMenuStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:actionOverflowMenuStyle */ public static final int Theme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#activityChooserViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:activityChooserViewStyle */ public static final int Theme_activityChooserViewStyle = 57; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#alertDialogButtonGroupStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:alertDialogButtonGroupStyle */ public static final int Theme_alertDialogButtonGroupStyle = 91; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#alertDialogCenterButtons} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:alertDialogCenterButtons */ public static final int Theme_alertDialogCenterButtons = 92; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#alertDialogStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:alertDialogStyle */ public static final int Theme_alertDialogStyle = 90; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#alertDialogTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:alertDialogTheme */ public static final int Theme_alertDialogTheme = 93; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #Theme} array. @attr name android:windowAnimationStyle */ public static final int Theme_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 #Theme} array. @attr name android:windowIsFloating */ public static final int Theme_android_windowIsFloating = 0; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#autoCompleteTextViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:autoCompleteTextViewStyle */ public static final int Theme_autoCompleteTextViewStyle = 98; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#borderlessButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:borderlessButtonStyle */ public static final int Theme_borderlessButtonStyle = 54; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#buttonBarButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:buttonBarButtonStyle */ public static final int Theme_buttonBarButtonStyle = 51; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#buttonBarNegativeButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:buttonBarNegativeButtonStyle */ public static final int Theme_buttonBarNegativeButtonStyle = 96; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#buttonBarNeutralButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:buttonBarNeutralButtonStyle */ public static final int Theme_buttonBarNeutralButtonStyle = 97; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#buttonBarPositiveButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:buttonBarPositiveButtonStyle */ public static final int Theme_buttonBarPositiveButtonStyle = 95; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#buttonBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:buttonBarStyle */ public static final int Theme_buttonBarStyle = 50; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#buttonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:buttonStyle */ public static final int Theme_buttonStyle = 99; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#buttonStyleSmall} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:buttonStyleSmall */ public static final int Theme_buttonStyleSmall = 100; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#checkboxStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:checkboxStyle */ public static final int Theme_checkboxStyle = 101; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#checkedTextViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:checkedTextViewStyle */ public static final int Theme_checkedTextViewStyle = 102; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#colorAccent} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:colorAccent */ public static final int Theme_colorAccent = 83; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#colorButtonNormal} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:colorButtonNormal */ public static final int Theme_colorButtonNormal = 87; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#colorControlActivated} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:colorControlActivated */ public static final int Theme_colorControlActivated = 85; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#colorControlHighlight} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:colorControlHighlight */ public static final int Theme_colorControlHighlight = 86; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#colorControlNormal} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:colorControlNormal */ public static final int Theme_colorControlNormal = 84; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#colorPrimary} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:colorPrimary */ public static final int Theme_colorPrimary = 81; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#colorPrimaryDark} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:colorPrimaryDark */ public static final int Theme_colorPrimaryDark = 82; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#colorSwitchThumbNormal} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:colorSwitchThumbNormal */ public static final int Theme_colorSwitchThumbNormal = 88; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#controlBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:controlBackground */ public static final int Theme_controlBackground = 89; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#dialogPreferredPadding} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.reactnativetestproject:dialogPreferredPadding */ public static final int Theme_dialogPreferredPadding = 43; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#dialogTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:dialogTheme */ public static final int Theme_dialogTheme = 42; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#dividerHorizontal} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:dividerHorizontal */ public static final int Theme_dividerHorizontal = 56; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#dividerVertical} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:dividerVertical */ public static final int Theme_dividerVertical = 55; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#dropDownListViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:dropDownListViewStyle */ public static final int Theme_dropDownListViewStyle = 73; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#dropdownListPreferredItemHeight} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.reactnativetestproject:dropdownListPreferredItemHeight */ public static final int Theme_dropdownListPreferredItemHeight = 46; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#editTextBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:editTextBackground */ public static final int Theme_editTextBackground = 63; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#editTextColor} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:editTextColor */ public static final int Theme_editTextColor = 62; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#editTextStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:editTextStyle */ public static final int Theme_editTextStyle = 103; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:homeAsUpIndicator */ public static final int Theme_homeAsUpIndicator = 48; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#listChoiceBackgroundIndicator} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:listChoiceBackgroundIndicator */ public static final int Theme_listChoiceBackgroundIndicator = 80; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#listDividerAlertDialog} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:listDividerAlertDialog */ public static final int Theme_listDividerAlertDialog = 44; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#listPopupWindowStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:listPopupWindowStyle */ public static final int Theme_listPopupWindowStyle = 74; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#listPreferredItemHeight} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.reactnativetestproject:listPreferredItemHeight */ public static final int Theme_listPreferredItemHeight = 68; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#listPreferredItemHeightLarge} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.reactnativetestproject:listPreferredItemHeightLarge */ public static final int Theme_listPreferredItemHeightLarge = 70; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#listPreferredItemHeightSmall} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.reactnativetestproject:listPreferredItemHeightSmall */ public static final int Theme_listPreferredItemHeightSmall = 69; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#listPreferredItemPaddingLeft} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.reactnativetestproject:listPreferredItemPaddingLeft */ public static final int Theme_listPreferredItemPaddingLeft = 71; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#listPreferredItemPaddingRight} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.reactnativetestproject:listPreferredItemPaddingRight */ public static final int Theme_listPreferredItemPaddingRight = 72; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#panelBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:panelBackground */ public static final int Theme_panelBackground = 77; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#panelMenuListTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:panelMenuListTheme */ public static final int Theme_panelMenuListTheme = 79; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#panelMenuListWidth} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.reactnativetestproject:panelMenuListWidth */ public static final int Theme_panelMenuListWidth = 78; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#popupMenuStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:popupMenuStyle */ public static final int Theme_popupMenuStyle = 60; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#popupWindowStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:popupWindowStyle */ public static final int Theme_popupWindowStyle = 61; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#radioButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:radioButtonStyle */ public static final int Theme_radioButtonStyle = 104; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#ratingBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:ratingBarStyle */ public static final int Theme_ratingBarStyle = 105; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#searchViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:searchViewStyle */ public static final int Theme_searchViewStyle = 67; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#selectableItemBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:selectableItemBackground */ public static final int Theme_selectableItemBackground = 52; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#selectableItemBackgroundBorderless} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:selectableItemBackgroundBorderless */ public static final int Theme_selectableItemBackgroundBorderless = 53; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#spinnerDropDownItemStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:spinnerDropDownItemStyle */ public static final int Theme_spinnerDropDownItemStyle = 47; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#spinnerStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:spinnerStyle */ public static final int Theme_spinnerStyle = 106; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#switchStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:switchStyle */ public static final int Theme_switchStyle = 107; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#textAppearanceLargePopupMenu} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:textAppearanceLargePopupMenu */ public static final int Theme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#textAppearanceListItem} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:textAppearanceListItem */ public static final int Theme_textAppearanceListItem = 75; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#textAppearanceListItemSmall} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:textAppearanceListItemSmall */ public static final int Theme_textAppearanceListItemSmall = 76; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#textAppearanceSearchResultSubtitle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:textAppearanceSearchResultSubtitle */ public static final int Theme_textAppearanceSearchResultSubtitle = 65; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#textAppearanceSearchResultTitle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:textAppearanceSearchResultTitle */ public static final int Theme_textAppearanceSearchResultTitle = 64; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#textAppearanceSmallPopupMenu} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:textAppearanceSmallPopupMenu */ public static final int Theme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#textColorAlertDialogListItem} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:textColorAlertDialogListItem */ public static final int Theme_textColorAlertDialogListItem = 94; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#textColorSearchUrl} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:textColorSearchUrl */ public static final int Theme_textColorSearchUrl = 66; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#toolbarNavigationButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:toolbarNavigationButtonStyle */ public static final int Theme_toolbarNavigationButtonStyle = 59; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#toolbarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.reactnativetestproject:toolbarStyle */ public static final int Theme_toolbarStyle = 58; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#windowActionBar} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:windowActionBar */ public static final int Theme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#windowActionBarOverlay} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:windowActionBarOverlay */ public static final int Theme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#windowActionModeOverlay} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:windowActionModeOverlay */ public static final int Theme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#windowFixedHeightMajor} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:windowFixedHeightMajor */ public static final int Theme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#windowFixedHeightMinor} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:windowFixedHeightMinor */ public static final int Theme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#windowFixedWidthMajor} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:windowFixedWidthMajor */ public static final int Theme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#windowFixedWidthMinor} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:windowFixedWidthMinor */ public static final int Theme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#windowMinWidthMajor} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:windowMinWidthMajor */ public static final int Theme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#windowMinWidthMinor} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:windowMinWidthMinor */ public static final int Theme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.R.attr#windowNoTitle} attribute's value can be found in the {@link #Theme} 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.reactnativetestproject:windowNoTitle */ public static final int Theme_windowNoTitle = 3; /** Attributes that can be used with a Toolbar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseContentDescription com.reactnativetestproject:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon com.reactnativetestproject:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd com.reactnativetestproject:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft com.reactnativetestproject:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight com.reactnativetestproject:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart com.reactnativetestproject:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo com.reactnativetestproject:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription com.reactnativetestproject:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight com.reactnativetestproject:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription com.reactnativetestproject:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon com.reactnativetestproject:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme com.reactnativetestproject:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle com.reactnativetestproject:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.reactnativetestproject:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor com.reactnativetestproject:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title com.reactnativetestproject:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom com.reactnativetestproject:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd com.reactnativetestproject:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart com.reactnativetestproject:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop com.reactnativetestproject:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins com.reactnativetestproject:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance com.reactnativetestproject:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor com.reactnativetestproject:titleTextColor}</code></td><td></td></tr> </table> @see #Toolbar_android_gravity @see #Toolbar_android_minHeight @see #Toolbar_collapseContentDescription @see #Toolbar_collapseIcon @see #Toolbar_contentInsetEnd @see #Toolbar_contentInsetLeft @see #Toolbar_contentInsetRight @see #Toolbar_contentInsetStart @see #Toolbar_logo @see #Toolbar_logoDescription @see #Toolbar_maxButtonHeight @see #Toolbar_navigationContentDescription @see #Toolbar_navigationIcon @see #Toolbar_popupTheme @see #Toolbar_subtitle @see #Toolbar_subtitleTextAppearance @see #Toolbar_subtitleTextColor @see #Toolbar_title @see #Toolbar_titleMarginBottom @see #Toolbar_titleMarginEnd @see #Toolbar_titleMarginStart @see #Toolbar_titleMarginTop @see #Toolbar_titleMargins @see #Toolbar_titleTextAppearance @see #Toolbar_titleTextColor */ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0 }; /** <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.reactnativetestproject.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.reactnativetestproject:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 19; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:collapseIcon */ public static final int Toolbar_collapseIcon = 18; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:contentInsetRight */ public static final int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:contentInsetStart */ public static final int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:logo */ public static final int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:logoDescription */ public static final int Toolbar_logoDescription = 22; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 17; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 21; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:navigationIcon */ public static final int Toolbar_navigationIcon = 20; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:popupTheme */ public static final int Toolbar_popupTheme = 9; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 11; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:subtitleTextColor */ public static final int Toolbar_subtitleTextColor = 24; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:title */ public static final int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 16; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 14; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:titleMarginStart */ public static final int Toolbar_titleMarginStart = 13; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:titleMarginTop */ public static final int Toolbar_titleMarginTop = 15; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:titleMargins */ public static final int Toolbar_titleMargins = 12; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 10; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:titleTextColor */ public static final int Toolbar_titleTextColor = 23; /** Attributes that can be used with a View. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingEnd com.reactnativetestproject:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart com.reactnativetestproject:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme com.reactnativetestproject: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, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3 }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #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.reactnativetestproject.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.reactnativetestproject:paddingEnd */ public static final int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject:paddingStart */ public static final int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject: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.reactnativetestproject:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.reactnativetestproject:backgroundTintMode}</code></td><td></td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f0100e4, 0x7f0100e5 }; /** <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.reactnativetestproject.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.reactnativetestproject:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link com.reactnativetestproject.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.reactnativetestproject: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; }; }
[ "963140097@qq.com" ]
963140097@qq.com
12b93777d3d0d6980c64491e067e9ade84d49083
fbf4f80946320420ee4eb6d6893057da8aa10fc3
/GaRanKHN/src/Database/Controller/Sevrlet_Menu_Garan.java
0aac0687228545b23012e4c354cb25203667a8ad
[]
no_license
Nhom1-DoAn1/myPersonal-Project
e68ad5abea23a22b2339d86d2050bc6b1b65b8ba
0421b40b27fc94eb68415aa1a8b8d1a49ab9afe7
refs/heads/master
2020-04-01T03:39:20.605706
2018-10-16T17:15:09
2018-10-16T17:15:09
152,830,681
0
0
null
null
null
null
UTF-8
Java
false
false
1,469
java
package Database.Controller; import java.io.IOException; import java.sql.ResultSet; import javax.servlet.RequestDispatcher; import javax.servlet.ServletContext; 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 javax.servlet.http.HttpSession; import com.sun.xml.internal.bind.CycleRecoverable.Context; /** * Servlet implementation class Menu_Garan */ public class Sevrlet_Menu_Garan extends HttpServlet { private static final long serialVersionUID = 1L; /** * @see HttpServlet#HttpServlet() */ public Sevrlet_Menu_Garan() { super(); // TODO Auto-generated constructor stub } /** * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { HttpSession session = request.getSession(); session.setAttribute("activekey", 1); request.setAttribute("key", 1); RequestDispatcher dr = request.getRequestDispatcher("Menu_garan.jsp"); dr.forward(request, response); } /** * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) */ protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { } }
[ "43629428+Nhom1-DoAn1@users.noreply.github.com" ]
43629428+Nhom1-DoAn1@users.noreply.github.com
a3824ed032589453a8eec128c36740840de3357a
f041f0f8bcdf45936c37e445b43d9e26ddada5f7
/MiniCluedo.java
7ec42c97933a685b1bcd0361ccf62684dfa8bdc2
[]
no_license
adolfopalma/miniCluedo
a7446452ecddc51a67b22e40c03a97457a359bfe
90a5d4b56945e45f8f59e7590335b0f530b920c3
refs/heads/master
2023-02-16T16:26:34.740640
2021-01-19T19:21:38
2021-01-19T19:21:38
331,066,129
0
0
null
null
null
null
UTF-8
Java
false
false
3,343
java
import java.util.*; public class MiniCluedo { public static void main(String[] args) throws Exception { String armas[] = new String[5]; String habitaciones[] = new String[6]; String personajes[] = new String[8]; String combinacionSecreta[] = new String[3]; boolean esElArma = false; boolean esLaHabitacion = false; boolean esElPersonaje = false; Scanner entrada = new Scanner(System.in); String respuesta; armas[0] = "Pistola"; armas[1] = "Cuchillo"; armas[2] = "Herramienta"; armas[3] = "Candelabro"; armas[4] = "Lapiz"; habitaciones[0] = "Salon de baile"; habitaciones[1] = "Cocina"; habitaciones[2] = "Aseo"; habitaciones[3] = "Despacho"; habitaciones[4] = "Dormitorio"; habitaciones[5] = "Salon de billar"; personajes[0] = "Adolfo"; personajes[1] = "Sergio"; personajes[2] = "Ines"; personajes[3] = "Feli"; personajes[4] = "Pablo"; personajes[5] = "Adriana"; personajes[6] = "Leire"; personajes[7] = "Uriel"; combinacionSecreta[0] = armas[(int) (Math.random() * 5)]; combinacionSecreta[1] = habitaciones[(int) (Math.random() * 6)]; combinacionSecreta[2] = personajes[(int) (Math.random() * 8)]; System.out.println(Arrays.toString(combinacionSecreta)); while (esElArma == false) { System.out.println("Adivina el arma, aun no has dicho las siguientes:"); System.out.println(Arrays.toString(armas)); respuesta = entrada.nextLine(); if (respuesta.equals(combinacionSecreta[0])) { System.out.println("Has acertado"); esElArma = true; } else { for (int i = 0; i < armas.length; i++) { if (respuesta.equals(armas[i])) { armas[i] = "X"; } } } } while (esLaHabitacion == false) { System.out.println("Adivina la habitacion, aun no has dicho las siguientes:"); System.out.println(Arrays.toString(habitaciones)); respuesta = entrada.nextLine(); if (respuesta.equals(combinacionSecreta[1])) { System.out.println("Has acertado"); esLaHabitacion = true; } else { for (int i = 0; i < habitaciones.length; i++) { if (respuesta.equals(habitaciones[i])) { habitaciones[i] = "X"; } } } } while (esElPersonaje == false) { System.out.println("Adivina el asesino, aun no has dicho los siguientes:"); System.out.println(Arrays.toString(personajes)); respuesta = entrada.nextLine(); if (respuesta.equals(combinacionSecreta[2])) { System.out.println("Has acertado y ganado el juego !!!!!!!!!"); esElPersonaje = true; } else { for (int i = 0; i < personajes.length; i++) { if (respuesta.equals(personajes[i])) { personajes[i] = "X"; } } } } } }
[ "adolfo.palmagr@gmail.com" ]
adolfo.palmagr@gmail.com
0a6e60ca5f7aee39a8276c5eeeafc2738beee924
39a80fd0892834f17fcdc7caf15dc0f933896a1a
/JAVA/Laboratorio IV/SegundoParcial/src/MODELO/DetalleVenta.java
58b2832c416850492207a339b1e8dc59405815cc
[]
no_license
PauloL89/Mis_Trabajos
db3f99d9bae70bc807baab6b96614956e474d77e
4325d4b5b2150ca8733208cbf8d83abf4ac4ef9a
refs/heads/master
2023-06-29T02:34:08.195360
2021-08-05T23:49:06
2021-08-05T23:49:06
323,385,935
0
0
null
null
null
null
UTF-8
Java
false
false
1,065
java
package MODELO; public class DetalleVenta { private Venta venta; private Articulo articulo; private float precioUnitario; public DetalleVenta(Venta venta, Articulo articulo, float precioUnitario) { this.venta = venta; this.articulo = articulo; this.precioUnitario = precioUnitario; } public Venta getVenta() { return venta; } public void setVenta(Venta venta) { this.venta = venta; } public Articulo getArticulo() { return articulo; } public void setArticulo(Articulo articulo) { this.articulo = articulo; } public float getPrecioUnitario() { return precioUnitario; } public void setPrecioUnitario(float precioUnitario) { this.precioUnitario = precioUnitario; } @Override public String toString() { return "venta: " + venta + "\n articulo: " + articulo + "\n precio Unitario: " + precioUnitario; } }
[ "111549@tecnicatura.frc.utn.edu.ar" ]
111549@tecnicatura.frc.utn.edu.ar
fa06e5d10af42b231c83dde02e754da073a444c7
a46cf01389a641f7e54bcaf03558df358f8f9e4c
/CoreConcepts/src/com/core/tests/TestCalculator.java
a9b16f4e18c7a76220127e6e06e54ebb3d21afb0
[]
no_license
niteshkatiyar/local_1
0bad6025ffbe981ff910d404c08fa415dab24c03
f4d32b8f619e76bd142c783b89c91703786adf0e
refs/heads/master
2020-05-18T02:39:17.088474
2015-07-02T13:24:29
2015-07-02T13:24:29
37,182,105
0
0
null
null
null
null
UTF-8
Java
false
false
245
java
package com.core.tests; import org.junit.Test; import static org.junit.Assert.*; import com.core.basics.Calculator; public class TestCalculator { @Test public void testCase() { //assetEquals(100,Calculator.sum()); } }
[ "dvfurnish@gmail.com" ]
dvfurnish@gmail.com
7f196b83e7a4c26dab119db124ed1a74f6e3ca28
deb24c1abeb590c5b8a900697adb0e2110cee5e8
/android/app/src/main/java/com/expensetracker/MainApplication.java
5c9187e99890a25b0478acc61131c5408ca4261e
[]
no_license
SoeMoeAung21/ExpenseTracker
d82ff5bfe6ec92786b20b9ae921795e313a86e6a
b9ae162ce893f1d5bd1de9f815112263429bb290
refs/heads/master
2020-03-23T09:37:52.334395
2018-10-09T18:51:25
2018-10-09T18:51:25
141,399,925
1
0
null
null
null
null
UTF-8
Java
false
false
1,115
java
package com.expensetracker; import android.app.Application; import com.facebook.react.ReactApplication; import com.horcrux.svg.SvgPackage; import com.facebook.react.ReactNativeHost; import com.facebook.react.ReactPackage; import com.facebook.react.shell.MainReactPackage; import com.facebook.soloader.SoLoader; import java.util.Arrays; import java.util.List; public class MainApplication extends Application implements ReactApplication { private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { @Override public boolean getUseDeveloperSupport() { return BuildConfig.DEBUG; } @Override protected List<ReactPackage> getPackages() { return Arrays.<ReactPackage>asList( new MainReactPackage(), new SvgPackage() ); } @Override protected String getJSMainModuleName() { return "index"; } }; @Override public ReactNativeHost getReactNativeHost() { return mReactNativeHost; } @Override public void onCreate() { super.onCreate(); SoLoader.init(this, /* native exopackage */ false); } }
[ "soemoeaung.skg21@gmail.com" ]
soemoeaung.skg21@gmail.com
4b7f1481097b53bdee3361a4ee614845b4ab7b32
3ac36bd8ed2a1cb49aa9d1631f74493223bd4d8d
/src/main/java/com/ming/graph/io/Line.java
eb75752670958e415a93ffb4c2207f7b5b6d5c3e
[]
no_license
bbrighttaer/GraphProject
186543f08aacd7efd376bf45ba1d5b9bf69fb4ae
6f50d434830f8405556813bdba46549f7107c0ed
refs/heads/master
2021-04-27T17:37:15.270696
2018-03-12T10:16:41
2018-03-12T10:16:41
122,324,506
0
1
null
2018-03-09T09:18:01
2018-02-21T10:54:10
Java
UTF-8
Java
false
false
700
java
package com.ming.graph.io; import java.util.LinkedList; /** * Author: bbrighttaer */ public abstract class Line<T> { protected LinkedList<T> line; public Line() { this(null); } public Line(LinkedList<T> line) { this.line = line; } public LinkedList<T> getLine() { return line; } public void setLine(LinkedList<T> line) { this.line = line; } public abstract String print(); public abstract String println(); public <L extends Line<T>> L join(L l) { line.addAll(l.line); l.setLine(this.line); return l; } @Override public String toString() { return print(); } }
[ "brighteragyemang@live.com" ]
brighteragyemang@live.com
f1c9210ec106e1cb7834e9af6ddaeabeaf9e1895
229f64864036a9ff23a562c557e9e7fc11ad4250
/src/test/java/com/example/student_enrollment/CourseControllerTest.java
94c105e7317e7b7d48bf0e8d2ce904b40b771eba
[]
no_license
akshat1499/student_enrollment_api
006aae981e5018fcbb545ed490e2d9474b6b98a4
29ef79e0653248474f45b43f518b8b63a18c354b
refs/heads/main
2023-07-07T08:53:52.728403
2021-08-12T09:26:28
2021-08-12T09:26:28
391,833,253
0
0
null
null
null
null
UTF-8
Java
false
false
3,640
java
package com.example.student_enrollment; import com.example.student_enrollment.entities.Course; import com.example.student_enrollment.entities.Department; import com.example.student_enrollment.pojos.CoursePOJO; import com.example.student_enrollment.repositories.CourseRepository; import com.example.student_enrollment.services.CourseService; import com.example.student_enrollment.utillities.DateGenerator; import com.example.student_enrollment.utillities.Status; import com.fasterxml.jackson.databind.ObjectMapper; import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import org.mockito.ArgumentMatchers; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; import org.springframework.test.context.ActiveProfiles; import org.springframework.test.context.junit4.SpringRunner; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockHttpServletRequestBuilder; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import java.util.*; import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.notNullValue; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; @RunWith(SpringRunner.class) @SpringBootTest @AutoConfigureMockMvc @ActiveProfiles("test") public class CourseControllerTest { private static final ObjectMapper om = new ObjectMapper(); @Autowired private MockMvc mockMvc; @MockBean private CourseService courseService; @MockBean private CourseRepository courseRepository; @Test public void saveCourse_success() throws Exception{ Date createdOn = DateGenerator.getDateFromString("2021-09-08 22:22:22"); Date updatedOn= DateGenerator.getDateFromString("2021-09-08 22:22:22"); Department d1 = new Department("Dept1", Status.ACTIVE); d1.setId(1L); d1.setCreatedOn(createdOn); d1.setUpdatedOn(updatedOn); Course course = new Course(); course.setStatus(Status.ACTIVE); course.setCreatedOn(createdOn); course.setFee(30000L); course.setName("Course1"); course.setUpdatedOn(updatedOn); course.setInstructor(null); course.setDepartment(d1); course.setId(1L); course.setSemesterList(null); CoursePOJO coursePOJO = new CoursePOJO(); coursePOJO.setFee(30000L); coursePOJO.setName("Course1"); coursePOJO.setStatus(Status.ACTIVE); coursePOJO.setDeptId(1L); coursePOJO.setInstId(1L); Mockito.when(courseRepository.save(course)).thenReturn(course); Mockito.when(courseService.saveCourse(ArgumentMatchers.any())).thenReturn(course); //TODO: Why argument Matachers.any and not COurseOJO MockHttpServletRequestBuilder mockRequest = MockMvcRequestBuilders.post("/courses") .contentType(MediaType.APPLICATION_JSON) .accept(MediaType.APPLICATION_JSON) .content(this.om.writeValueAsString(coursePOJO)); mockMvc.perform(mockRequest) .andExpect(status().isOk()) .andExpect(jsonPath("$", notNullValue())) .andExpect(jsonPath("$.name").value("Course1")); } }
[ "akshatgupta1499@gmail.com" ]
akshatgupta1499@gmail.com
cc60db0b400a8040b1f83cb2059b5802534828f2
c4e8acd46e3387661e02df7d0c0158509d2c67be
/implementacao/src/main/java/com/ithappens/interview/services/PedidoService.java
007b74915e6f53f72da660e71ce7a9634251bc98
[]
no_license
machadolucasvp/test-ithappens-1304
15c1f354d440f6ec3dbe99c459e907f179b8f752
963e24907136957054fe684259d0587e24c0e3bd
refs/heads/master
2022-11-30T14:46:12.561728
2020-03-25T02:53:59
2020-03-25T02:53:59
248,555,340
1
0
null
2020-07-31T15:37:50
2020-03-19T16:44:34
null
UTF-8
Java
false
false
6,926
java
package com.ithappens.interview.services; import com.ithappens.interview.dtos.*; import com.ithappens.interview.enums.Status; import com.ithappens.interview.enums.Tipo; import com.ithappens.interview.models.*; import com.ithappens.interview.repositories.ItemPedidoRepository; import com.ithappens.interview.repositories.PedidoRepository; import org.hibernate.ObjectNotFoundException; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.dao.DataIntegrityViolationException; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Sort; import org.springframework.stereotype.Service; import java.util.Optional; import java.util.Set; import java.util.stream.Collectors; @Service public class PedidoService { @Autowired private PedidoRepository pedidoRepository; @Autowired private ItemPedidoRepository itemPedidoRepository; @Autowired private UsuarioService usuarioService; @Autowired private FilialService filialService; @Autowired private ClienteService clienteService; @Autowired private ProdutoService produtoService; public Pedido findById(Integer id) { Optional<Pedido> filial = pedidoRepository.findById(id); return filial.orElseThrow(() -> new ObjectNotFoundException(id, this.getClass().getName())); } public PedidoDTO addPedido(Integer filialId, Pedido pedidoDTO, Tipo tipo) { Filial filial = filialService.findById(filialId); Usuario usuario = usuarioService.findById(pedidoDTO.getUsuario().getId()); Cliente cliente = clienteService.findById(pedidoDTO.getCliente().getId()); Pedido pedido = Pedido.builder().tipo(tipo).filial(filial) .usuario(usuario) .observacao(pedidoDTO.getObservacao()) .pagamento(pedidoDTO.getPagamento()) .cliente(cliente) .build(); Set<ItemPedido> itemPedidos = pedidoDTO.getItemsPedido().stream().map( item -> { item.setId(null); item.setSubTotal(item.calculaSubTotal()); item.setPedido(pedido); if (tipo.equals(Tipo.SAIDA)) { filialService.removeProduto(item.getProduto(), filial, item.getQuantidade()); return item; } else if (tipo.equals(Tipo.ENTRADA)) { if (pedido.getItemsPedido().size() > 0 && containsProdutoAndPedidoOpen(pedido, item)) { throw new DataIntegrityViolationException("Não foi possível realizar a entrada" + "do pedido, existem produtos duplicados em status ATIVO ou " + "PROCESSANDO"); } filialService.addProduto(item.getProduto(), filial, item.getQuantidade()); pedido.getItemsPedido().add(item); return item; } else { throw new IllegalArgumentException("Não foi possível identificar o tipo do pedido"); } } ).collect(Collectors.toSet()); pedido.setCustoTotal(pedidoDTO.calculaCustoTotal()); pedido.getPagamento().setCusto(pedido.getCustoTotal()); pedido.setItemsPedido(itemPedidos); pedidoRepository.save(pedido); itemPedidoRepository.saveAll(itemPedidos); return this.asDTO(pedido); } private boolean containsProdutoAndPedidoOpen(Pedido pedido, ItemPedido itemPedido) { Set<ItemPedido> itemPedidos = pedido.getItemsPedido().stream().filter( item -> item.getProduto().getId().equals(itemPedido.getProduto().getId()) && !item.getStatus().equals(Status.CANCELADO) ).collect(Collectors.toSet()); return itemPedidos.size() > 0; } public boolean updateItemPedidoStatus(Integer pedidoId, Integer itemId, String status, Boolean isToProcess) { Pedido pedido = this.findById(pedidoId); if (!isToProcess) { return pedido.getItemsPedido().stream().anyMatch( item -> { if (item.getId().equals(itemId)) { item.setStatus(Status.valueOf(status)); pedidoRepository.save(pedido); return true; } return false; } ); } else { Set<ItemPedido> itemsPedidosProcessados = pedido.getItemsPedido().stream().map( item -> { item.setStatus(Status.PROCESSADO); return item; } ).collect(Collectors.toSet()); pedido.setItemsPedido(itemsPedidosProcessados); pedidoRepository.save(pedido); return true; } } public PedidoDTO asDTO(Pedido pedido) { return PedidoDTO.builder().id(pedido.getId()) .observacao(pedido.getObservacao()).tipo(pedido.getTipo()) .custoTotal(pedido.getCustoTotal()) .pagamento(pedido.getPagamento()) .cliente(clienteService.asDTO(pedido.getCliente())) .usuario(usuarioService.asDTO(pedido.getUsuario())) .filial(filialService.filialPedidoAsDTO(pedido.getFilial())) .itemsPedido(pedido.getItemsPedido().stream().map( item -> this.itemPedidoAsDTO(item, produtoService.asDTO(item.getProduto())) ).collect(Collectors.toSet())) .build(); } public ItemPedidoDTO itemPedidoAsDTO(ItemPedido itemPedido, ProdutoDTO produtoDTO) { return ItemPedidoDTO.builder().id(itemPedido.getId()) .custoUnitario(itemPedido.getCustoUnitario()) .quantidade(itemPedido.getQuantidade()) .subTotal(itemPedido.getSubTotal()) .status(itemPedido.getStatus()) .produto(produtoDTO).build(); } public Page<PedidoDTO> findPedidosPageable(Integer page, Integer size, String direction, String orderBy, Integer filialId) { Page<Pedido> pedido; if (filialId > 0) { Filial filial = filialService.findById(filialId); pedido = pedidoRepository.findByFilial(filial, PageRequest.of(page, size, Sort.Direction.valueOf(direction), orderBy)); } else { pedido = pedidoRepository.findAll(PageRequest.of(page, size, Sort.Direction.valueOf(direction), orderBy)); } return pedido.map(this::asDTO); } }
[ "lucasvufma@gmail.com" ]
lucasvufma@gmail.com
50880f07aa1a2e96b4eac859bcfda55a9d89b26f
d408a617e0e58b4b77a283c24637909a79a5833d
/gradle-project/rest1/src/main/java/com/rest1/postcode/jsonform/postcode/Address.java
01ea2b483ec808bf9efe55d9a4057b6b580ebbf3
[]
no_license
ktkt11122334/RestAPI_postdata
638b39d6420b01328a5b549e288cea13d0a717cc
7d3fd572c3523032f5642f017fa8931358789126
refs/heads/master
2022-12-20T13:16:16.670869
2020-10-10T13:08:02
2020-10-10T13:08:02
301,165,591
0
0
null
null
null
null
UTF-8
Java
false
false
473
java
package com.rest1.postcode.jsonform.postcode; import javax.validation.constraints.NotNull; import lombok.Setter; @Setter public class Address { @NotNull String prefecture; @NotNull String city; @NotNull String town; public String getPrefecture() { return (prefecture != null) ? prefecture : ""; } public String getCity() { return (city != null) ? city : ""; } public String getTown() { return (town != null) ? town : ""; } }
[ "ktada0730.23877@gmail.com" ]
ktada0730.23877@gmail.com
cb3576fd71f06a9f600ac18575e819b2248080b4
581e6f17bfa2494294c0de66b5cf65571ebafa80
/SHOPPING_BACK/src/main/java/com/fixthepro/shopping_back/dao/EmployeeDao.java
1b85e51d4f16843b7958f061cc9e39b2d53c7d18
[]
no_license
JaganmohanDevendraguru/shopping
bae312d2fc1c664b14507c3b3a1904243a687779
9d69ff891ab3d32078292d3fa6c41d31dcbec495
refs/heads/master
2022-11-19T17:12:03.769907
2020-07-12T16:47:06
2020-07-12T16:47:06
276,375,434
0
0
null
null
null
null
UTF-8
Java
false
false
439
java
package com.fixthepro.shopping_back.dao; import java.util.List; import com.fixthepro.shopping_back.dto.Employee; public interface EmployeeDao { public List<Employee> findAll(); public List<Employee> findAllActive(); public boolean save(Employee c); public boolean update(Employee c); public boolean delete(int id); public Employee findById(int id); public List<Employee> findLikeName(String name); }
[ "jegan0307@gmail.com" ]
jegan0307@gmail.com
f4f06402f1c44732601a1b2e00d02c3579bb0d0e
658ae38d6bdda96f0924fd175818916ff75a6e59
/ProyectoPSP4/app/src/main/java/com/aprendiz/ragp/proyectopsp4/controllers/MenuPrincipal.java
8263cead1008a3095f8231354a5f77166bd8f76b
[]
no_license
DARWorldSkills/ProyectoPSP4
8c8abe3ebd96f340cf3c34036cd77dc1ba643685
c20ae0f894a0a76cf866d4ff52836018beac6a71
refs/heads/master
2020-03-25T00:53:05.823464
2018-08-01T21:31:25
2018-08-01T21:31:25
143,210,532
0
0
null
null
null
null
UTF-8
Java
false
false
4,264
java
package com.aprendiz.ragp.proyectopsp4.controllers; import android.content.DialogInterface; import android.content.Intent; import android.support.design.widget.FloatingActionButton; import android.support.design.widget.Snackbar; import android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.widget.Adapter; import android.widget.EditText; import com.aprendiz.ragp.proyectopsp4.R; import com.aprendiz.ragp.proyectopsp4.models.AdapterP; import com.aprendiz.ragp.proyectopsp4.models.ManagerDB; import com.aprendiz.ragp.proyectopsp4.models.Proyecto; import java.util.List; public class MenuPrincipal extends AppCompatActivity { RecyclerView recyclerView; FloatingActionButton btnAgregar; public static Proyecto proyecto= new Proyecto(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_menu_principal); inizialite(); inputAdapter(); btnAgregar.setOnClickListener(new View.OnClickListener() { @Override public void onClick(final View v) { final AlertDialog.Builder builder = new AlertDialog.Builder(MenuPrincipal.this); builder.setTitle("Agregar Proyecto"); LayoutInflater inflater = getLayoutInflater(); final View view = inflater.inflate(R.layout.item_ingresarp,null); final EditText txtProyecto = view.findViewById(R.id.txtNombreP2); builder.setView(view); builder.setPositiveButton("Agreagar", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { try { ManagerDB managerDB = new ManagerDB(MenuPrincipal.this); Proyecto proyecto = new Proyecto(); proyecto.setNombre(txtProyecto.getText().toString()); if (proyecto.getNombre().length()>1) { managerDB.inputProyecto(proyecto); dialog.cancel(); inputAdapter(); Snackbar.make(v,"Se ha agregado el proyecto "+proyecto.getNombre(),Snackbar.LENGTH_SHORT).show(); }else { Snackbar.make(v,"Para poder agreagar un proyecto por favor no deje el campo vacio",Snackbar.LENGTH_SHORT).show(); } }catch (Exception e){ Snackbar.make(v,"Por favor ingrese un nombre",Snackbar.LENGTH_SHORT).show(); } } }); builder.setNegativeButton("Cancelar", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { dialog.cancel(); } }); builder.show(); } }); } private void inizialite() { recyclerView = findViewById(R.id.recyclerView); btnAgregar = findViewById(R.id.btnAgregar); } private void inputAdapter() { ManagerDB managerDB = new ManagerDB(this); final List<Proyecto> proyectoList = managerDB.proyectoList(); AdapterP adapterP = new AdapterP(proyectoList); recyclerView.setAdapter(adapterP); recyclerView.setLayoutManager(new LinearLayoutManager(this,LinearLayoutManager.VERTICAL,false)); recyclerView.setHasFixedSize(true); adapterP.setMlistener(new AdapterP.OnItemClickListener() { @Override public void itemClick(int position) { proyecto= proyectoList.get(position); Intent intent = new Intent(MenuPrincipal.this,MenuProyecto.class); startActivity(intent); } }); } }
[ "37385496+RodrigoAGuspian@users.noreply.github.com" ]
37385496+RodrigoAGuspian@users.noreply.github.com
f8bd21c1c0f172640f2502a08c7f556502a60317
3e176296759f1f211f7a8bcfbba165abb1a4d3f1
/gosu-core/src/main/java/gw/internal/gosu/parser/LengthProperty.java
5eef03ac7b5f6cbf9cf6b04eec49f2f380f313c9
[ "Apache-2.0", "BSD-3-Clause", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
gosu-lang/old-gosu-repo
6335ac90cd0c635fdec6360e3e208ba12ac0a39e
48c598458abd412aa9f2d21b8088120e8aa9de00
refs/heads/master
2020-05-18T03:39:34.631550
2014-04-21T17:36:38
2014-04-21T17:36:38
1,303,622
1
2
null
null
null
null
UTF-8
Java
false
false
1,432
java
/* * Copyright 2013 Guidewire Software, Inc. */ package gw.internal.gosu.parser; import gw.lang.parser.Keyword; import gw.lang.reflect.IAnnotationInfo; import gw.lang.reflect.IPresentationInfo; import gw.lang.reflect.IPropertyAccessor; import gw.lang.reflect.ITypeInfo; import gw.lang.reflect.TypeSystem; import java.beans.IntrospectionException; import java.beans.PropertyDescriptor; import java.util.Collections; import java.util.List; public class LengthProperty extends JavaPropertyInfo { private IPropertyAccessor _accessor; LengthProperty(ITypeInfo typeInfo) throws IntrospectionException { super( typeInfo, new PropertyDescriptorJavaPropertyDescriptor(new PropertyDescriptor( Keyword.KW_length.toString(), null, null ) { @Override public Class getPropertyType() { return Integer.TYPE; } } , TypeSystem.getCurrentModule())); _accessor = LengthAccessor.INSTANCE; } @Override public IPropertyAccessor getAccessor() { return _accessor; } @Override public IPresentationInfo getPresentationInfo() { return IPresentationInfo.Default.GET; } @Override public boolean isPublic() { return true; } @Override public boolean isReadable() { return true; } @Override public List<IAnnotationInfo> getAnnotations() { return Collections.emptyList(); } }
[ "smckinney@guidewire.com" ]
smckinney@guidewire.com
705ce8824237563d997935bf72a57ec0dca4630f
a45643b57e168da129bfbabe7274a65b33279ad7
/mongo/src/main/java/org/axonframework/eventsourcing/eventstore/mongo/AbstractEventStorageStrategy.java
47b55127b9d03e7a479bff3c5834fe460e5c7f48
[ "Apache-2.0" ]
permissive
gamesthinking/AxonFramework
d89bd63aaccd6fbfdefe8bf9ed06c8ac56433131
f8489b841cc6e0bb5c3b53bb397f79263af3b87c
refs/heads/master
2022-11-11T16:47:39.848224
2016-06-12T17:09:24
2016-06-12T17:09:24
null
0
0
null
null
null
null
UTF-8
Java
false
false
9,270
java
/* * Copyright (c) 2010-2016. Axon Framework * 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.axonframework.eventsourcing.eventstore.mongo; import com.mongodb.*; import org.axonframework.common.Assert; import org.axonframework.eventhandling.EventMessage; import org.axonframework.eventsourcing.DomainEventMessage; import org.axonframework.eventsourcing.eventstore.DomainEventData; import org.axonframework.eventsourcing.eventstore.TrackedEventData; import org.axonframework.eventsourcing.eventstore.TrackingToken; import org.axonframework.eventsourcing.eventstore.legacy.LegacyTrackingToken; import org.axonframework.eventsourcing.eventstore.mongo.documentperevent.EventEntryConfiguration; import org.axonframework.serialization.Serializer; import java.util.List; import java.util.Optional; import java.util.stream.Collectors; import java.util.stream.Stream; import static java.util.stream.StreamSupport.stream; /** * @author Rene de Waele */ public abstract class AbstractEventStorageStrategy implements StorageStrategy { private static final long DEFAULT_GAP_DETECTION_INTERVAL = 10000L; protected static final int ORDER_ASC = 1, ORDER_DESC = -1; private final EventEntryConfiguration eventConfiguration; private final long gapDetectionInterval; public AbstractEventStorageStrategy(EventEntryConfiguration eventConfiguration) { this(eventConfiguration, DEFAULT_GAP_DETECTION_INTERVAL); } public AbstractEventStorageStrategy(EventEntryConfiguration eventConfiguration, long gapDetectionInterval) { this.eventConfiguration = eventConfiguration; this.gapDetectionInterval = gapDetectionInterval; } @Override public void appendEvents(DBCollection eventCollection, List<? extends EventMessage<?>> events, Serializer serializer) throws MongoException.DuplicateKey { eventCollection.insert(createEventDocuments(events, serializer).collect(Collectors.toList())); } protected abstract Stream<DBObject> createEventDocuments(List<? extends EventMessage<?>> events, Serializer serializer); @Override public void appendSnapshot(DBCollection snapshotCollection, DomainEventMessage<?> snapshot, Serializer serializer) throws MongoException.DuplicateKey { snapshotCollection.insert(createSnapshotDocument(snapshot, serializer)); } protected abstract DBObject createSnapshotDocument(DomainEventMessage<?> snapshot, Serializer serializer); @Override public void deleteSnapshots(DBCollection snapshotCollection, String aggregateIdentifier) { DBObject mongoEntry = BasicDBObjectBuilder.start().add(eventConfiguration.aggregateIdentifierProperty(), aggregateIdentifier) .get(); snapshotCollection.find(mongoEntry).forEach(snapshotCollection::remove); } @Override public List<? extends DomainEventData<?>> findDomainEvents(DBCollection eventCollection, String aggregateIdentifier, long firstSequenceNumber, int batchSize) { DBCursor cursor = eventCollection.find(BasicDBObjectBuilder.start() .add(eventConfiguration().aggregateIdentifierProperty(), aggregateIdentifier) .add(eventConfiguration().sequenceNumberProperty(), new BasicDBObject("$gte", firstSequenceNumber)).get()) .sort(new BasicDBObject(eventConfiguration().sequenceNumberProperty(), ORDER_ASC)); cursor = applyBatchSize(cursor, batchSize); try { return stream(cursor.spliterator(), false).flatMap(this::extractDomainEvents) .filter(event -> event.getSequenceNumber() >= firstSequenceNumber).limit(batchSize) .collect(Collectors.toList()); } finally { cursor.close(); } } protected abstract Stream<? extends DomainEventData<?>> extractDomainEvents(DBObject object); @Override public List<? extends TrackedEventData<?>> findTrackedEvents(DBCollection eventCollection, TrackingToken lastToken, int batchSize) { DBCursor cursor; if (lastToken == null) { cursor = eventCollection.find(BasicDBObjectBuilder.start().get()); } else { Assert.isTrue(lastToken instanceof LegacyTrackingToken, String.format("Token %s is of the wrong type", lastToken)); LegacyTrackingToken legacyTrackingToken = (LegacyTrackingToken) lastToken; cursor = eventCollection.find(BasicDBObjectBuilder.start().add(eventConfiguration.timestampProperty(), new BasicDBObject("$gte", legacyTrackingToken .getTimestamp().toString())) .add(eventConfiguration.sequenceNumberProperty(), new BasicDBObject("$gte", legacyTrackingToken.getSequenceNumber())) .get()); } cursor = cursor.sort(new BasicDBObject(eventConfiguration().timestampProperty(), ORDER_ASC) .append(eventConfiguration().sequenceNumberProperty(), ORDER_ASC)); cursor = applyBatchSize(cursor, batchSize); try { return stream(cursor.spliterator(), false).flatMap(this::extractTrackedEvents) .filter(event -> event.trackingToken().isAfter(lastToken)).limit(batchSize) .collect(Collectors.toList()); } finally { cursor.close(); } } @Override public TrackingToken getTokenForGapDetection(TrackingToken token) { if (token == null) { return null; } Assert.isTrue(token instanceof LegacyTrackingToken, String.format("Token %s is of the wrong type", token)); LegacyTrackingToken legacyToken = (LegacyTrackingToken) token; return new LegacyTrackingToken(legacyToken.getTimestamp().minusMillis(gapDetectionInterval), legacyToken.getAggregateIdentifier(), legacyToken.getSequenceNumber()); } protected abstract DBCursor applyBatchSize(DBCursor cursor, int batchSize); protected abstract Stream<? extends TrackedEventData<?>> extractTrackedEvents(DBObject object); @Override public Optional<? extends DomainEventData<?>> findLastSnapshot(DBCollection snapshotCollection, String aggregateIdentifier) { DBObject mongoEntry = BasicDBObjectBuilder.start().add(eventConfiguration.aggregateIdentifierProperty(), aggregateIdentifier) .get(); try (DBCursor cursor = snapshotCollection.find(mongoEntry) .sort(new BasicDBObject(eventConfiguration.sequenceNumberProperty(), ORDER_DESC)).limit(1)) { return stream(cursor.spliterator(), false).findFirst().map(this::extractSnapshot); } } protected abstract DomainEventData<?> extractSnapshot(DBObject object); @Override public void ensureIndexes(DBCollection eventsCollection, DBCollection snapshotsCollection) { eventsCollection.ensureIndex(new BasicDBObject(eventConfiguration.aggregateIdentifierProperty(), ORDER_ASC) .append(eventConfiguration.sequenceNumberProperty(), ORDER_ASC), "uniqueAggregateIndex", true); eventsCollection.ensureIndex(new BasicDBObject(eventConfiguration.timestampProperty(), ORDER_ASC) .append(eventConfiguration.sequenceNumberProperty(), ORDER_ASC), "orderedEventStreamIndex", false); snapshotsCollection.ensureIndex(new BasicDBObject(eventConfiguration.aggregateIdentifierProperty(), ORDER_ASC) .append(eventConfiguration.sequenceNumberProperty(), ORDER_ASC), "uniqueAggregateIndex", true); } protected EventEntryConfiguration eventConfiguration() { return eventConfiguration; } }
[ "renedewaele@gmail.com" ]
renedewaele@gmail.com
681aac7b2c970d4870286181685d78db83cd3298
abf9c48a51262862fd5da475086caef6d957d595
/src/java/j2me/cldc/1.1ext/src/hprose/client/HproseClient.java
db12549b2cf6c82b238fa2bbdc18bbe3c60b7408
[ "MIT" ]
permissive
Donny2g/hprose
af2d59985ee139040af5ed702cc5196f163fb050
9b08f4bec4512d6e5b510258052d8d587e24f150
refs/heads/master
2021-01-19T06:55:44.145668
2014-05-25T02:39:06
2014-05-25T02:39:06
null
0
0
null
null
null
null
UTF-8
Java
false
false
13,770
java
/**********************************************************\ | | | hprose | | | | Official WebSite: http://www.hprose.com/ | | http://www.hprose.net/ | | http://www.hprose.org/ | | | \**********************************************************/ /**********************************************************\ * * * HproseClient.java * * * * hprose client class for Java. * * * * LastModified: Nov 27, 2012 * * Author: Ma Bingyao <andot@hprose.com> * * * \**********************************************************/ package hprose.client; import hprose.common.HproseErrorEvent; import hprose.common.HproseCallback; import hprose.common.HproseInvoker; import hprose.common.HproseException; import hprose.common.HproseResultMode; import hprose.common.HproseFilter; import hprose.io.HproseWriter; import hprose.io.HproseReader; import hprose.io.HproseTags; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; public abstract class HproseClient implements HproseInvoker { private static final Object[] nullArgs = new Object[0]; private HproseFilter filter = null; public HproseErrorEvent onError = null; protected HproseClient() { } protected HproseClient(String uri) { useService(uri); } public abstract void useService(String uri); public HproseFilter getFilter() { return filter; } public void setFilter(HproseFilter filter) { this.filter = filter; } public final void invoke(String functionName, HproseCallback callback) { invoke(functionName, nullArgs, callback, null, null, false, HproseResultMode.Normal); } public final void invoke(String functionName, HproseCallback callback, HproseErrorEvent errorEvent) { invoke(functionName, nullArgs, callback, errorEvent, null, false, HproseResultMode.Normal); } public final void invoke(String functionName, Object[] arguments, HproseCallback callback) { invoke(functionName, arguments, callback, null, null, false, HproseResultMode.Normal); } public final void invoke(String functionName, Object[] arguments, HproseCallback callback, HproseErrorEvent errorEvent) { invoke(functionName, arguments, callback, errorEvent, null, false, HproseResultMode.Normal); } public final void invoke(String functionName, Object[] arguments, HproseCallback callback, boolean byRef) { invoke(functionName, arguments, callback, null, null, byRef, HproseResultMode.Normal); } public final void invoke(String functionName, Object[] arguments, HproseCallback callback, HproseErrorEvent errorEvent, boolean byRef) { invoke(functionName, arguments, callback, errorEvent, null, byRef, HproseResultMode.Normal); } public final void invoke(String functionName, HproseCallback callback, Class returnType) { invoke(functionName, nullArgs, callback, null, returnType, false, HproseResultMode.Normal); } public final void invoke(String functionName, HproseCallback callback, HproseErrorEvent errorEvent, Class returnType) { invoke(functionName, nullArgs, callback, errorEvent, returnType, false, HproseResultMode.Normal); } public final void invoke(String functionName, Object[] arguments, HproseCallback callback, Class returnType) { invoke(functionName, arguments, callback, null, returnType, false, HproseResultMode.Normal); } public final void invoke(String functionName, Object[] arguments, HproseCallback callback, HproseErrorEvent errorEvent, Class returnType) { invoke(functionName, arguments, callback, errorEvent, returnType, false, HproseResultMode.Normal); } public final void invoke(String functionName, Object[] arguments, HproseCallback callback, Class returnType, boolean byRef) { invoke(functionName, arguments, callback, null, returnType, byRef, HproseResultMode.Normal); } public final void invoke(String functionName, Object[] arguments, HproseCallback callback, HproseErrorEvent errorEvent, Class returnType, boolean byRef) { invoke(functionName, arguments, callback, errorEvent, returnType, byRef, HproseResultMode.Normal); } public final void invoke(String functionName, HproseCallback callback, HproseResultMode resultMode) { invoke(functionName, nullArgs, callback, null, null, false, resultMode); } public final void invoke(String functionName, HproseCallback callback, HproseErrorEvent errorEvent, HproseResultMode resultMode) { invoke(functionName, nullArgs, callback, errorEvent, null, false, resultMode); } public final void invoke(String functionName, Object[] arguments, HproseCallback callback, HproseResultMode resultMode) { invoke(functionName, arguments, callback, null, null, false, resultMode); } public final void invoke(String functionName, Object[] arguments, HproseCallback callback, HproseErrorEvent errorEvent, HproseResultMode resultMode) { invoke(functionName, arguments, callback, errorEvent, null, false, resultMode); } public final void invoke(String functionName, Object[] arguments, HproseCallback callback, boolean byRef, HproseResultMode resultMode) { invoke(functionName, arguments, callback, null, null, byRef, resultMode); } public final void invoke(String functionName, Object[] arguments, HproseCallback callback, HproseErrorEvent errorEvent, boolean byRef, HproseResultMode resultMode) { invoke(functionName, arguments, callback, errorEvent, null, byRef, resultMode); } private void invoke(final String functionName, final Object[] arguments, final HproseCallback callback, final HproseErrorEvent errorEvent, final Class returnType, final boolean byRef, final HproseResultMode resultMode) { new Thread() { public void run() { try { Object result = invoke(functionName, arguments, returnType, byRef, resultMode); callback.handler(result, arguments); } catch (Throwable ex) { if (errorEvent != null) { errorEvent.handler(functionName, ex); } else if (onError != null) { onError.handler(functionName, ex); } } } }.start(); } public final Object invoke(String functionName) throws IOException { return invoke(functionName, nullArgs, (Class)null, false, HproseResultMode.Normal); } public final Object invoke(String functionName, Object[] arguments) throws IOException { return invoke(functionName, arguments, (Class)null, false, HproseResultMode.Normal); } public final Object invoke(String functionName, Object[] arguments, boolean byRef) throws IOException { return invoke(functionName, arguments, (Class)null, byRef, HproseResultMode.Normal); } public final Object invoke(String functionName, Class returnType) throws IOException { return invoke(functionName, nullArgs, returnType, false, HproseResultMode.Normal); } public final Object invoke(String functionName, Object[] arguments, Class returnType) throws IOException { return invoke(functionName, arguments, returnType, false, HproseResultMode.Normal); } public final Object invoke(String functionName, Object[] arguments, Class returnType, boolean byRef) throws IOException { return invoke(functionName, arguments, returnType, byRef, HproseResultMode.Normal); } public final Object invoke(String functionName, HproseResultMode resultMode) throws IOException { return invoke(functionName, nullArgs, (Class)null, false, resultMode); } public final Object invoke(String functionName, Object[] arguments, HproseResultMode resultMode) throws IOException { return invoke(functionName, arguments, (Class)null, false, resultMode); } public final Object invoke(String functionName, Object[] arguments, boolean byRef, HproseResultMode resultMode) throws IOException { return invoke(functionName, arguments, (Class)null, byRef, resultMode); } private Object invoke(String functionName, Object[] arguments, Class returnType, boolean byRef, HproseResultMode resultMode) throws IOException { Object context = getInvokeContext(); OutputStream ostream = getOutputStream(context); boolean success = false; try { doOutput(functionName, arguments, byRef, ostream); success = true; } finally { sendData(ostream, context, success); } Object result = null; InputStream istream = getInputStream(context); success = false; try { result = doInput(arguments, returnType, resultMode, istream); success = true; } finally { endInvoke(istream, context, success); } if (result instanceof HproseException) { throw (HproseException) result; } return result; } private Object doInput(Object[] arguments, Class returnType, HproseResultMode resultMode, InputStream istream) throws IOException { int tag; if (filter != null) istream = filter.inputFilter(istream); Object result = null; HproseReader hproseReader = new HproseReader(istream); ByteArrayOutputStream bytestream = null; if (resultMode == HproseResultMode.RawWithEndTag || resultMode == HproseResultMode.Raw) { bytestream = new ByteArrayOutputStream(); } while ((tag = hproseReader.checkTags( (char) HproseTags.TagResult + "" + (char) HproseTags.TagArgument + "" + (char) HproseTags.TagError + "" + (char) HproseTags.TagEnd)) != HproseTags.TagEnd) { switch (tag) { case HproseTags.TagResult: if (resultMode == HproseResultMode.Normal) { hproseReader.reset(); result = hproseReader.unserialize(returnType); } else if (resultMode == HproseResultMode.Serialized) { result = hproseReader.readRaw(); } else { bytestream.write(HproseTags.TagResult); hproseReader.readRaw(bytestream); } break; case HproseTags.TagArgument: if (resultMode == HproseResultMode.RawWithEndTag || resultMode == HproseResultMode.Raw) { bytestream.write(HproseTags.TagArgument); hproseReader.readRaw(bytestream); } else { hproseReader.reset(); Object[] args = (Object[]) hproseReader.readList(Object[].class); System.arraycopy(args, 0, arguments, 0, arguments.length); } break; case HproseTags.TagError: if (resultMode == HproseResultMode.RawWithEndTag || resultMode == HproseResultMode.Raw) { bytestream.write(HproseTags.TagError); hproseReader.readRaw(bytestream); } else { hproseReader.reset(); result = new HproseException((String) hproseReader.readString()); } break; } } if (resultMode == HproseResultMode.RawWithEndTag || resultMode == HproseResultMode.Raw) { if (resultMode == HproseResultMode.RawWithEndTag) { bytestream.write(HproseTags.TagEnd); } result = bytestream; } return result; } private void doOutput(String functionName, Object[] arguments, boolean byRef, OutputStream ostream) throws IOException { if (filter != null) ostream = filter.outputFilter(ostream); HproseWriter hproseWriter = new HproseWriter(ostream); ostream.write(HproseTags.TagCall); hproseWriter.writeString(functionName, false); if ((arguments != null) && (arguments.length > 0 || byRef)) { hproseWriter.reset(); hproseWriter.writeArray(arguments, false); if (byRef) { hproseWriter.writeBoolean(true); } } ostream.write(HproseTags.TagEnd); } protected abstract Object getInvokeContext() throws IOException; protected abstract OutputStream getOutputStream(Object context) throws IOException; protected abstract void sendData(OutputStream ostream, Object context, boolean success) throws IOException; protected abstract InputStream getInputStream(Object context) throws IOException; protected abstract void endInvoke(InputStream istream, Object context, boolean success) throws IOException; }
[ "mabingyao@gmail.com" ]
mabingyao@gmail.com
cfac503ec96510cbc01e76551f62699c875f5f65
672e1cb6e2faab0471d77a6d4a2eae0f19c16047
/src/main/java/com/noahaguilera/customtags/SpecialDayTag.java
15c03813a77c18defda38361144320138f6773fc
[]
no_license
noahaguilera/customtags
19462c3796f40263dacd0c7bdc7939e2eaac457b
f5fc72f9c830ccbb2130250e61e8b50a3e55a49d
refs/heads/master
2023-04-27T20:01:24.304123
2021-05-02T10:32:30
2021-05-02T10:32:30
363,623,510
0
0
null
null
null
null
UTF-8
Java
false
false
1,833
java
package com.noahaguilera.customtags; import javax.servlet.jsp.JspException; import javax.servlet.jsp.JspWriter; import javax.servlet.jsp.tagext.SimpleTagSupport; import java.io.IOException; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; /** * Returns Message based on Holiday/Special Days */ public class SpecialDayTag extends SimpleTagSupport { @Override public void doTag() throws JspException, IOException { super.doTag(); JspWriter out = getJspContext().getOut(); SimpleDateFormat dateFormat = new SimpleDateFormat ("dd/MM"); Date today = new Date(); try { Date christmas = dateFormat.parse("25/12"); if(dateFormat.format(christmas).equals(dateFormat.format(today))) { out.println("Merry Christmas!"); } } catch (ParseException e) { e.printStackTrace(); } try { Date halloween = dateFormat.parse("31/10"); if(dateFormat.format(halloween).equals(dateFormat.format(today))) { out.println("Happy Halloween!"); } } catch (ParseException e) { e.printStackTrace(); } try { Date fourthOfJuly = dateFormat.parse("04/07"); if(dateFormat.format(fourthOfJuly).equals(dateFormat.format(today))) { out.println("Happy 4th of July!"); } } catch (ParseException e) { e.printStackTrace(); } try { Date birthday = dateFormat.parse("30/08"); if(dateFormat.format(birthday).equals(dateFormat.format(today))) { out.println("Happy Birthday Noah!"); } } catch (ParseException e) { e.printStackTrace(); } } }
[ "naguilera@madisoncollege.edu" ]
naguilera@madisoncollege.edu
a5a6b59043b5073ea44b53091b3bc612fa0dfdf0
fb0e9ec409efa20ec069a88b732708912c113d02
/java_se_sample/src/com/will/ch_19/MemberVO.java
5ab2a4ccace059fedf6d7fc7aedf57476b05bd00
[]
no_license
willhsu0604/java_se_sample
fe792bbb478ce1f6a77f8fa10b6d31d5de87de41
1d8dd87343192e8bba9978792b5adebaeae5f308
refs/heads/master
2021-01-22T23:53:33.625305
2019-03-08T06:21:16
2019-03-08T06:21:16
85,676,259
0
0
null
null
null
null
UTF-8
Java
false
false
843
java
package com.will.ch_19; import java.io.Serializable; public class MemberVO implements Serializable { private int id; private String username; private String cellphone; public MemberVO() { } public MemberVO(int id, String username, String cellphone) { super(); this.id = id; this.username = username; this.cellphone = cellphone; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getCellphone() { return cellphone; } public void setCellphone(String cellphone) { this.cellphone = cellphone; } @Override public String toString() { return "MemberVO [id=" + id + ", username=" + username + ", cellphone=" + cellphone + "]"; } }
[ "u9734017@gmail.com" ]
u9734017@gmail.com
932bbba7e76c03884db3bf43f145cd8cb117e3ac
67115248e40279e26f76f098457d7b0ce7b0a54a
/src/main/java/com/example/CrawlerTest/crawler/util/io/download/MultiThreadPictureDownloadService.java
ffd0e9506bcf02aeea34dd4abe550dab90362088
[]
no_license
ZCS2016/CrawlerTest
9714aafedebfb162c4e571ff49dca942eaf5e9b1
fa9eb8dbe082f720130a92d6a00130e5be05c825
refs/heads/master
2020-03-17T20:37:49.125285
2018-07-03T10:26:10
2018-07-03T10:26:10
133,920,549
0
0
null
null
null
null
UTF-8
Java
false
false
2,029
java
package com.example.CrawlerTest.crawler.util.io.download; import com.example.CrawlerTest.crawler.util.io.download.entity.PictureDownloadTask; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.LinkedBlockingQueue; public class MultiThreadPictureDownloadService { public static final int DEFAULT_THREAD_POOL_SIZE = 4; public static final int DEFAULT_MIN_THREAD_POOL_SIZE = 1; public static final int DEFAULT_MAX_THREAD_POOL_SIZE = 8; private ExecutorService executorService; private LinkedBlockingQueue<PictureDownloadTask> pictureDownloadTaskQ = new LinkedBlockingQueue<>(); public MultiThreadPictureDownloadService(){ executorService = Executors.newFixedThreadPool(DEFAULT_THREAD_POOL_SIZE); init(DEFAULT_THREAD_POOL_SIZE); } public MultiThreadPictureDownloadService(int threadPoolSize){ if(threadPoolSize >= DEFAULT_MIN_THREAD_POOL_SIZE && threadPoolSize <= DEFAULT_MAX_THREAD_POOL_SIZE) { executorService = Executors.newFixedThreadPool(threadPoolSize); init(threadPoolSize); }else { executorService = Executors.newFixedThreadPool(DEFAULT_THREAD_POOL_SIZE); init(DEFAULT_THREAD_POOL_SIZE); } } private void init(int threadPoolSize){ for(int i = 0; i < threadPoolSize; i++){ PictureDownloadThread pictureDownloadThread = new PictureDownloadThread(); pictureDownloadThread.setName(Thread.currentThread().getName()+" imgDownloadThread "+i); pictureDownloadThread.setPictureDownloadTaskQ(pictureDownloadTaskQ); executorService.submit(pictureDownloadThread); } } public void addPictureDownloadTask(PictureDownloadTask pictureDownloadTask){ boolean success = pictureDownloadTaskQ.offer(pictureDownloadTask); if(!success){ System.out.println("Error: Failed to addPictureDownloadTask "+pictureDownloadTask.getUrlStr()); } } }
[ "basketbasket0@126.com" ]
basketbasket0@126.com
92217c106f8773604f7cf372510c2b6f6e3e9143
5c63ed445a5d8f644535b5e3f0149c2b80619004
/TabellStabelMedUnntak/src/no/hvl/dat102/TabellStabel.java
8c8e65e5f5d537c91cd75975ec8c743a80c968ce
[]
no_license
h586620/Oblig.2
e7c3cac39f94fb3e93639c86192b2b93d71a58b5
ef6c06a7371508f1b96ba6d3faaa9976ee14aa3f
refs/heads/master
2021-01-16T04:57:48.465515
2020-02-25T11:42:34
2020-02-25T11:42:34
242,983,601
0
0
null
null
null
null
ISO-8859-15
Java
false
false
2,945
java
package no.hvl.dat102; import no.hvl.dat102.adt.StabelADT; // Tabellimplementasjon av en stabel. //******************************************************************** public class TabellStabel<T> implements StabelADT<T> { private final static int STDK = 100; private int topp; // indikerer neste plass private T[] stabel; /******************************************************************* * Oppretter en tom stabel. *******************************************************************/ public TabellStabel() { this(STDK); } /******************************************************************* * Oppretter en tom stabel med en speisfisert kapasitet. *******************************************************************/ public TabellStabel(int startKapasitet) { topp = 0; stabel = (T[]) (new Object[startKapasitet]); } /******************************************************************* * Legger til det spesifiserte elementet på toppen av stabelen, utvider * kapasitetet til stabelen hvis nødvendig. *******************************************************************/ @Override public void push(T element) { if (antall() == stabel.length) utvid(); stabel[topp] = element; topp++; } /******************************************************************* * * Fjerner toppelementet og returnerer en referanse til den. Hvis stabelen * er tom fra før, kastes unntak *******************************************************************/ @Override public T pop() { if (erTom()) throw new EmptyCollectionException("Stabel"); topp--; T result = stabel[topp]; stabel[topp] = null; return result; } /******************************************************************* * Returnerer toppelementet uten å fjerne det. Hvis stabelen er tom fra * før, kastes unntak *******************************************************************/ @Override public T peek() { if (erTom()) throw new EmptyCollectionException("Stabel"); return stabel[topp - 1]; } /******************************************************************* * Returnerer sann hvis stabelen er tom og usann ellers. *******************************************************************/ @Override public boolean erTom() { return (topp == 0); } /******************************************************************* * Returnerer antall elementer. *******************************************************************/ @Override public int antall() { return topp; } /******************************************************************* * Oppretter en ny tabell for å lagre innholdet. *******************************************************************/ private void utvid() { T[] hjelpeTabell = (T[]) (new Object[stabel.length * 2]); for (int indeks = 0; indeks < stabel.length; indeks++) { hjelpeTabell[indeks] = stabel[indeks]; } stabel = hjelpeTabell; } }
[ "bettinasmebye@158-37-235-211.hvl.no" ]
bettinasmebye@158-37-235-211.hvl.no
db73b9d1e485581411c3ea976c67fadccaafb607
9e2f7588f3fb6d89bfa5dadaba677f701e445637
/src/visual/ListadoClientes.java
e030aa3434352612ae2bd75219405aa00feb31e0
[]
no_license
Audric1Rosario/Tarea-3-P1
5287933674cf23a6e82c5794f40d84895069f106
3c72edbf2bde0ff52fa5a6aadbb77b42a12b8285
refs/heads/master
2020-09-22T06:56:00.097856
2019-12-01T15:46:29
2019-12-01T15:46:29
225,096,220
0
0
null
null
null
null
UTF-8
Java
false
false
3,583
java
package visual; import java.awt.BorderLayout; import java.awt.FlowLayout; import java.awt.Toolkit; import javax.swing.JButton; import javax.swing.JDialog; import javax.swing.JPanel; import javax.swing.border.EmptyBorder; import logical.Cilindro; import logical.CilindroHueco; import logical.Complejo; import logical.Esfera; import logical.Queso; import java.awt.event.ActionListener; import java.text.DecimalFormat; import java.awt.event.ActionEvent; import javax.swing.border.TitledBorder; import javax.swing.table.DefaultTableModel; import javax.swing.JScrollPane; import javax.swing.ScrollPaneConstants; import javax.swing.JTable; public class ListadoClientes extends JDialog { private final JPanel contentPanel = new JPanel(); // Table private DefaultTableModel model; private Object row[]; private JTable table; // Decimal Formateador private DecimalFormat formateador; public ListadoClientes() { setIconImage(Toolkit.getDefaultToolkit().getImage(ListadoClientes.class.getResource("/images/cheese.png"))); formateador = new DecimalFormat("####.##"); setTitle("Listado de clientes"); setResizable(false); setBounds(100, 100, 502, 470); getContentPane().setLayout(new BorderLayout()); setLocationRelativeTo(null); contentPanel.setBorder(new EmptyBorder(5, 5, 5, 5)); getContentPane().add(contentPanel, BorderLayout.CENTER); contentPanel.setLayout(null); { JPanel panel = new JPanel(); panel.setBorder(new TitledBorder(null, "Adquisiciones de los clientes por factura", TitledBorder.LEADING, TitledBorder.TOP, null, null)); panel.setBounds(10, 11, 476, 381); contentPanel.add(panel); panel.setLayout(new BorderLayout(0, 0)); { JScrollPane scrollPane = new JScrollPane(); scrollPane.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER); panel.add(scrollPane, BorderLayout.CENTER); model = new DefaultTableModel(); String[] headers = { "ID-Factura", "ID-Cliente", "Cliente", "Mayor Esfera", "Cant. Quesos", "Total"}; model.setColumnIdentifiers(headers); table = new JTable(); table.setModel(model); scrollPane.setViewportView(table); } } { JPanel buttonPane = new JPanel(); buttonPane.setBorder(new TitledBorder(null, "", TitledBorder.LEADING, TitledBorder.TOP, null, null)); buttonPane.setLayout(new FlowLayout(FlowLayout.RIGHT)); getContentPane().add(buttonPane, BorderLayout.SOUTH); { JButton btnCerrar = new JButton("Cerrar"); btnCerrar.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { dispose(); } }); btnCerrar.setActionCommand("Cancel"); buttonPane.add(btnCerrar); } } loadQuesos(); } private void loadQuesos() { model.setRowCount(0); row = new Object[model.getColumnCount()]; for (int i = 0; i < Complejo.getInstance().getMisFacturaciones().size(); i++) { row[0] = Complejo.getInstance().getMisFacturaciones().get(i).getIdFactura(); row[1] = Complejo.getInstance().getMisFacturaciones().get(i).getMiCliente().getIdCliente(); row[2] = Complejo.getInstance().getMisFacturaciones().get(i).getMiCliente().getNombre(); row[3] = formateador.format(Complejo.getInstance().mayorQuesoEsferico(row[0].toString())) + "$"; row[4] = Complejo.getInstance().getMisFacturaciones().get(i).getMisQuesos().size(); row[5] = formateador.format(Complejo.getInstance().calcularPrecio(row[0].toString())) + "$"; model.addRow(row); } return; } }
[ "audricarr050@gmail.com" ]
audricarr050@gmail.com
4bdbfcd3d790e5cc43bc106c6713dabe0b4498c5
75dceb70fffb1819a935fc015fa1dc3f6073359f
/lang_interface/java/com/intel/daal/algorithms/engines/mt2203/Method.java
4707ccbb085d1d0c8e0f0c8b622d93e27216162d
[ "Apache-2.0", "Intel" ]
permissive
KalyanovD/daal
ae40c16cf0ef6e915c7418227ff8a77390e0ee8e
b354b68f83a213102bca6e03d7a11f55ab751f92
refs/heads/master
2022-06-06T00:47:05.309445
2019-11-29T10:46:38
2019-11-29T10:46:38
210,588,356
0
0
Apache-2.0
2019-09-24T12:16:15
2019-09-24T11:41:08
null
UTF-8
Java
false
false
1,843
java
/* file: Method.java */ /******************************************************************************* * Copyright 2014-2019 Intel Corporation * * 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. *******************************************************************************/ /** * @defgroup engines_mt2203 Mt2203 engine * @brief Contains classes for mt2203 engine * @ingroup engines * @{ */ package com.intel.daal.algorithms.engines.mt2203; import java.lang.annotation.Native; import com.intel.daal.utils.*; /** * <a name="DAAL-CLASS-ALGORITHMS__ENGINES__MCG59__METHOD"></a> * @brief Available methods for the mt2203 engine */ public final class Method { /** @private */ static { LibUtils.loadLibrary(); } private int _value; /** * Constructs the method object using the provided value * @param value Value corresponding to the method object */ public Method(int value) { _value = value; } /** * Returns the value corresponding to the method object * @return Value corresponding to the method object */ public int getValue() { return _value; } @Native private static final int defaultDenseId = 0; public static final Method defaultDense = new Method(defaultDenseId); /*!< Default: performance-oriented method */ } /** @} */
[ "nikolay.a.petrov@intel.com" ]
nikolay.a.petrov@intel.com
02fe6265057a531ec92e025075d0ec989c518a22
bd767316bbf17bc5b0939835c879cb011b163317
/src/game/arenas/naval/NavalArena.java
53348757997eda7bcfd28afd01b9277fdbf0299c
[]
no_license
mreouven/Java-Racing-Game-Part3
4a38e3a40c743c614e4bbfe7c9d2c88a3be3710d
efcea757a3b32212a9ced5221d140b09d3f57b6f
refs/heads/master
2021-09-14T17:34:12.351708
2018-05-16T18:56:07
2018-05-16T18:56:07
132,427,181
0
0
null
null
null
null
UTF-8
Java
false
false
1,093
java
package game.arenas.naval; import game.arenas.Arena; import game.arenas.exceptions.RacerLimitException; import game.arenas.exceptions.RacerTypeException; import game.racers.Racer; import game.racers.naval.INavalRacer; import utilities.EnumContainer; public class NavalArena extends Arena { private final static double DEFAULT_FRICTION = 0.7; private final static int DEFAULT_MAX_RACERS = 5; private final static int DEFAULT_LENGTH = 1000; EnumContainer.Water water; EnumContainer.WaterSurface surface; EnumContainer.Body body; public NavalArena() { this(DEFAULT_LENGTH, DEFAULT_MAX_RACERS); } public NavalArena(double length, int maxRacers) { super(length, maxRacers, DEFAULT_FRICTION); this.water = EnumContainer.Water.SWEET; this.surface = EnumContainer.WaterSurface.FLAT; this.body = EnumContainer.Body.LAKE; } @Override public void addRacer(Racer newRacer) throws RacerLimitException, RacerTypeException { if (newRacer instanceof INavalRacer) { super.addRacer(newRacer); } else { throw new RacerTypeException(newRacer.className(), "Naval"); } } }
[ "37777368+mreouven-study@users.noreply.github.com" ]
37777368+mreouven-study@users.noreply.github.com
eec203171d85a244d5e505e6efaaf47e99ce6323
a3abf7b27b7803d0bd5d6386ad740382e9fee12c
/app/src/main/java/com/rorlig/injection/PerActivity.java
95c78a9d002be990085468ceadb59899619e74f6
[ "MIT" ]
permissive
rorlig/MVPApplicationSkeleton
072cef595fbe35b35bbdd00a9015a8cba4cbfe56
e4de9c6cc98299802c3493e746f7e7e3d1e81a3f
refs/heads/master
2021-01-01T20:18:39.737574
2017-07-30T15:41:12
2017-07-30T15:41:12
98,807,478
0
0
null
null
null
null
UTF-8
Java
false
false
374
java
package com.rorlig.injection; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import javax.inject.Scope; /** * A scoping annotation to permit objects whose lifetime should conform to the life of the Activity * to be memorised in the correct component. */ @Scope @Retention(RetentionPolicy.RUNTIME) public @interface PerActivity { }
[ "guptgaurav@gmail.com" ]
guptgaurav@gmail.com
4526bed37fe2712b745a87796f480eabf31e640f
83df6049c5a6409ecaa2e627eb5f287e0ef78fcf
/app/src/main/java/project/java/contact_ptovider/datasorce/RemoteDsManager.java
4ee9cfa26e752de8f6a48fbdcf00991cbc7f747f
[]
no_license
orItach/java_project
e3b5f01a2e1e97e4a578fd5f27e7a3820829fb8e
092973f71869c27a78551c72454331dbd9f617eb
refs/heads/master
2020-06-16T19:44:20.373554
2016-11-30T09:03:27
2016-11-30T09:03:27
75,070,207
0
0
null
null
null
null
UTF-8
Java
false
false
137
java
package project.java.contact_ptovider.datasorce; /** * Created by אור איטח on 29/11/2016. */ public class RemoteDsManager { }
[ "or_ith@walla.com" ]
or_ith@walla.com
baf1130388430a8c7b9f8419f25d27b63f3bac5d
0c286cc11dd867f5ff135b27531fad7b120877b5
/datacenter/src/main/java/cn/dataup/datacenter/base/webmvc/initbinder/CustomNumNativeEditor.java
e897487ff4170e454ff140ee984894816fa29942
[]
no_license
xuyaming0800/collect-datacenter
6d17a8d30f7e4fb99a6cf4d5a2d32a1f73ebd3b8
a6ef8f7718e345f2413ff29612aafa2739a23f1e
refs/heads/master
2021-01-09T21:52:04.974364
2016-02-29T11:01:09
2016-02-29T11:01:09
52,782,305
0
0
null
null
null
null
UTF-8
Java
false
false
607
java
package cn.dataup.datacenter.base.webmvc.initbinder; import org.springframework.beans.propertyeditors.CustomNumberEditor; import org.springframework.util.StringUtils; @SuppressWarnings("unchecked") public class CustomNumNativeEditor extends CustomNumberEditor { public CustomNumNativeEditor(@SuppressWarnings("rawtypes") Class numberClass, boolean allowEmpty) throws IllegalArgumentException { super(numberClass, allowEmpty); } @Override public void setAsText(String text) throws IllegalArgumentException { if (!StringUtils.hasText(text)) return; else super.setAsText(text); } }
[ "xuyaming0800@126.com" ]
xuyaming0800@126.com
dc2477d37a88337ce5d8e133b567f7cfda5d51b5
d7c8fafe656035241ce5a524fdb57a3d973c807c
/clientTemp/src/gui/menu/TestMenu.java
3a20b6f401a063edd843df23f8549d3120c10b29
[]
no_license
Mathieu8/M-Tool
b9b67ab1305b32844e2969a6db844c2a8c1bdc7c
94b3f23752011321c8dce58c87ca2bcb80487ef7
refs/heads/master
2020-03-26T21:58:29.446772
2019-05-23T13:32:59
2019-05-23T13:32:59
145,422,568
0
0
null
null
null
null
UTF-8
Java
false
false
687
java
package src.gui.menu; import javafx.scene.control.Menu; import javafx.scene.control.MenuItem; import src.gui.GUI; import src.login.LoginGUI; public class TestMenu { Menu getTestMenu() { Menu testMenu = new Menu("Test"); testMenu.getItems().add(testLoginAgain()); return testMenu; } private MenuItem testLoginAgain() { MenuItem loginAgainItem = new MenuItem("Login Again"); loginAgainItem.setOnAction(e -> { GUI.print("in Login Again"); LoginGUI loginGUI = new LoginGUI(); loginGUI.initialize(); loginGUI.show(); GUI.hideStage(); //launch GUI to confirm old PW and enter new PW // }); return loginAgainItem; } }
[ "mathieuvanommeren@gmail.com" ]
mathieuvanommeren@gmail.com
116ebb8d10c4e1099b06d38f36dfe7c6e21edcd1
8c0a24d4a852089c4cdf59fbca5d3b76f9901d0b
/service/service_ucenter/src/test/java/com/haha/CodeGenerate.java
79734ee06cb19fb2f4ad10c76f44c19469d2ca21
[]
no_license
yangxuan123/guli_edu
771bc8bb159a56f64447972ae557f129260db27d
102aed5ab38bbd227a4c0439155b7dd449dde506
refs/heads/main
2023-07-10T23:40:22.422389
2021-08-15T12:28:19
2021-08-15T12:28:19
396,341,826
0
0
null
null
null
null
UTF-8
Java
false
false
4,009
java
package com.haha; import cn.hutool.crypto.SecureUtil; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.annotation.FieldFill; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.generator.AutoGenerator; import com.baomidou.mybatisplus.generator.config.DataSourceConfig; import com.baomidou.mybatisplus.generator.config.GlobalConfig; import com.baomidou.mybatisplus.generator.config.PackageConfig; import com.baomidou.mybatisplus.generator.config.StrategyConfig; import com.baomidou.mybatisplus.generator.config.po.TableFill; import com.baomidou.mybatisplus.generator.config.rules.DateType; import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy; import org.junit.jupiter.api.Test; import java.util.ArrayList; public class CodeGenerate { @Test public void genCode() { //String prefix = "guli_"; String moduleName = "ucenter"; // 1、创建代码生成器 AutoGenerator mpg = new AutoGenerator(); // 2、全局配置 GlobalConfig gc = new GlobalConfig(); String projectPath = System.getProperty("user.dir"); gc.setOutputDir(projectPath + "/src/main/java"); gc.setAuthor("yang"); gc.setOpen(false); //生成后是否打开资源管理器 // gc.setFileOverride(false); //重新生成时文件是否覆盖 gc.setServiceName("%sService"); //去掉Service接口的首字母I gc.setIdType(IdType.ASSIGN_ID); //主键策略 gc.setDateType(DateType.ONLY_DATE);//定义生成的实体类中日期类型 gc.setSwagger2(true);//开启Swagger2模式 mpg.setGlobalConfig(gc); // 3、数据源配置 DataSourceConfig dsc = new DataSourceConfig(); dsc.setUrl("jdbc:mysql://localhost:3306/" + "guli_" + moduleName + "?serverTimezone=GMT%2B8"); dsc.setDriverName("com.mysql.cj.jdbc.Driver"); dsc.setUsername("root"); dsc.setPassword("123456"); dsc.setDbType(DbType.MYSQL); mpg.setDataSource(dsc); // 4、包配置 PackageConfig pc = new PackageConfig(); pc.setModuleName(moduleName); //模块名 pc.setParent("com.haha.guli"); pc.setController("controller"); pc.setEntity("entity"); pc.setService("service"); pc.setMapper("mapper"); mpg.setPackageInfo(pc); // 5、策略配置 StrategyConfig strategy = new StrategyConfig(); strategy.setNaming(NamingStrategy.underline_to_camel);//数据库表映射到实体的命名策略 strategy.setTablePrefix(moduleName + "_");//设置表前缀不生成 strategy.setColumnNaming(NamingStrategy.underline_to_camel);//数据库表字段映射到实体的命名策略 strategy.setEntityLombokModel(true); // lombok 模型 @Accessors(chain = true) setter链式操作 strategy.setLogicDeleteFieldName("is_deleted");//逻辑删除字段名 strategy.setEntityBooleanColumnRemoveIsPrefix(true);//去掉布尔值的is_前缀 //设置BaseEntity strategy.setSuperEntityClass("com.haha.guli.service.base.model.BaseEntity"); // 填写BaseEntity中的公共字段 strategy.setSuperEntityColumns("id", "gmt_create", "gmt_modified"); //自动填充 TableFill gmtCreate = new TableFill("gmt_create", FieldFill.INSERT); TableFill gmtModified = new TableFill("gmt_modified", FieldFill.INSERT_UPDATE); ArrayList<TableFill> tableFills = new ArrayList<>(); tableFills.add(gmtCreate); tableFills.add(gmtModified); strategy.setTableFillList(tableFills); strategy.setRestControllerStyle(true); //restful api风格控制器 strategy.setControllerMappingHyphenStyle(true); //url中驼峰转连字符 mpg.setStrategy(strategy); // 6、执行 mpg.execute(); } @Test public void sfjf(){ System.out.println(SecureUtil.md5("123456")); } }
[ "17621329801@163.com" ]
17621329801@163.com
fa9f9de152f8de317e20ad3ae75f416af8f5d36a
c6758aeb9a2a2daeb5e8ec5988ada353f92f0278
/src/main/ReadFactory/ReadFactory.java
fd1f159a4c0587bb3bcaf527ab91fe3c861bc809
[]
no_license
lidaowan/ii
5ccc3dcaa60ce2cf689d296dd4bb6ea077cbccce
037a359629a5a4895f09231bbafaa998fa8e5502
refs/heads/master
2020-03-19T14:01:54.675106
2018-07-16T02:21:27
2018-07-16T02:21:27
136,605,861
0
0
null
null
null
null
UTF-8
Java
false
false
76
java
public interface ReadFactory { public Read getRead(String posfix); }
[ "516480168@qq.com" ]
516480168@qq.com
56069acdadccff871eafc8206ef2f7613f4f11ac
143734133b2866ef457793dc594bb310576c7493
/app/src/main/java/com/student/exp5/MainActivity.java
21f506d416152f19fd3a151e6c2955214663265f
[]
no_license
anushkagupta1996/FastFoodApp
908630995372e3d692b113933f2407b21b848af4
4c41b907f7a8b421028f5382b2bfda0b68dd91fc
refs/heads/master
2020-04-04T16:57:53.493761
2018-11-04T16:17:09
2018-11-04T16:17:09
156,100,843
0
0
null
null
null
null
UTF-8
Java
false
false
1,537
java
package com.student.exp5; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.CheckBox; import android.widget.Toast; public class MainActivity extends AppCompatActivity { CheckBox c1,c2,c3,c4,c5,c6,c7,c8; int sum=0; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); c1=(CheckBox)findViewById(R.id.burger); c2=(CheckBox)findViewById(R.id.chowmine); c3=(CheckBox)findViewById(R.id.Pizza); c4=(CheckBox)findViewById(R.id.hotdog); c5=(CheckBox)findViewById(R.id.manchurian); c6=(CheckBox)findViewById(R.id.pasta); c7=(CheckBox)findViewById(R.id.sandwich); c8=(CheckBox)findViewById(R.id.fries); } public void order(View view) { Toast.makeText(getApplicationContext(),"Your Order is Placed/nTotal price is :"+sum,Toast.LENGTH_LONG).show(); sum=0; } public void burger(View view) { sum=sum+50; } public void chowmin(View view) { sum=sum+50; } public void pizza(View view) { sum=sum+99; } public void hotdog(View view) { sum=sum+70; } public void man(View view) { sum=sum+80; } public void pasta(View view) { sum=sum+60; } public void sand(View view) { sum=sum+60; } public void fries(View view) { sum=sum+50; } }
[ "anushkagupta1996@gmail.com" ]
anushkagupta1996@gmail.com
46f7a96fd6ac7ef101f3b7841c6138c342ed0863
292e39f2dfe6030fc1c2dc20654867e2efad2693
/src/main/java/org/launchcode/subscriptionapp/controllers/AuthenticationController.java
63943bf004532656f618ac9d7fb6684a147d1c2d
[]
no_license
johngibbs110/subscription-app
6b249d120fab7db6110c182b34462fe3dd985410
50552a5df8f7fa8dac4415edebe8506a08296ad4
refs/heads/master
2022-12-27T08:44:39.695594
2020-10-05T22:53:03
2020-10-05T22:53:03
287,381,902
0
1
null
null
null
null
UTF-8
Java
false
false
4,339
java
package org.launchcode.subscriptionapp.controllers; import org.launchcode.subscriptionapp.data.OwnerRepository; import org.launchcode.subscriptionapp.models.Owner; import org.launchcode.subscriptionapp.models.dto.LoginFormDTO; import org.launchcode.subscriptionapp.models.dto.RegisterFormDTO; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.validation.Errors; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.PostMapping; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpSession; import javax.validation.Valid; import java.util.Optional; @Controller public class AuthenticationController { @Autowired OwnerRepository ownerRepository; private static final String userSessionKey = "owner"; public Owner getOwnerFromSession(HttpSession session) { Integer ownerId = (Integer) session.getAttribute(userSessionKey); if (ownerId == null) { return null; } Optional<Owner> owner = ownerRepository.findById(ownerId); if (owner.isEmpty()) { return null; } return owner.get(); } private static void setUserInSession(HttpSession session, Owner owner) { session.setAttribute(userSessionKey, owner.getId()); } @GetMapping("/register") public String displayRegistrationForm(Model model) { model.addAttribute(new RegisterFormDTO()); model.addAttribute("title", "Register"); return "register"; } @PostMapping("/register") public String processRegistrationForm(@ModelAttribute @Valid RegisterFormDTO registerFormDTO, Errors errors, HttpServletRequest request, Model model) { if (errors.hasErrors()) { model.addAttribute("title", "Register"); return "register"; } Owner existingOwner = ownerRepository.findByUsername(registerFormDTO.getUsername()); if (existingOwner != null) { errors.rejectValue("username", "username.alreadyexists", "An owner with that username already exists"); model.addAttribute("title", "Register"); return "register"; } String password = registerFormDTO.getPassword(); String verifyPassword = registerFormDTO.getVerifyPassword(); if (!password.equals(verifyPassword)) { errors.rejectValue("password", "passwords.mismatch", "Passwords do not match"); model.addAttribute("title", "Register"); } Owner newOwner = new Owner(registerFormDTO.getUsername(), registerFormDTO.getPassword()); ownerRepository.save(newOwner); setUserInSession(request.getSession(), newOwner); return "redirect:"; } @GetMapping("/login") public String displayLoginForm(Model model) { model.addAttribute(new LoginFormDTO()); model.addAttribute("title", "Log In"); return "login"; } @PostMapping("/login") public String processLoginForm(@ModelAttribute @Valid LoginFormDTO loginFormDTO, Errors errors, HttpServletRequest request, Model model) { if (errors.hasErrors()) { model.addAttribute("title", "Log In"); return "login"; } Owner theOwner = ownerRepository.findByUsername(loginFormDTO.getUsername()); if (theOwner == null) { errors.rejectValue("username", "user.invalid", "The given username does not exist."); model.addAttribute("title", "Log In"); return "login"; } String password = loginFormDTO.getPassword(); if (!theOwner.isMatchingPassword(password)) { errors.rejectValue("password", "password.invalid", "Invalid password"); model.addAttribute("title", "Log In"); return "login"; } setUserInSession(request.getSession(), theOwner); return "redirect:"; } @GetMapping("/logout") public String logout(HttpServletRequest request) { request.getSession().invalidate(); return "redirect:/login"; } }
[ "johngibbs110@gmail.com" ]
johngibbs110@gmail.com
36e54172ef9d10b4a7c84ec948bb6f6c0978dc23
c11000853905bc9ef61ca27ae916ffac8d82b8ec
/pub/assignment_testcases/a3/J1_ambiguousInvoke/Main.java
669955948bf9fa80ee32f01ad1a0da7e380341fb
[]
no_license
keriwarr/orangejoos
0244d381d691fd667bb58e49f6a9d6643b597176
de278321e8b72a92ea6b2ddb55e885caec71aaa5
refs/heads/master
2022-12-10T03:37:07.940721
2022-11-17T00:36:10
2022-11-17T00:36:10
116,432,363
0
1
null
2019-11-23T04:46:41
2018-01-05T22:18:39
Java
UTF-8
Java
false
false
163
java
// DISAMBIGUATION import foo.*; public class Main { public Main() {} public static int test() { Foo foo = new Foo(); foo.test(); return 123; } }
[ "joey@pereira.io" ]
joey@pereira.io
39a1748a256e8d856b447cdf88fb87cbd851d722
34776e2cae17133eee466c947ef916ce09b16208
/src/pet/dao/PODao.java
87de5179f17264d819dcb06688e144d65eec3f1f
[]
no_license
GrayGraySmall/PetStore
3de7cc94948ce7461ab0e3334ee54652f61fdbf5
c796f2bf9be4e0276694017940b898882d898ea6
refs/heads/master
2021-05-14T10:27:01.914376
2018-01-05T07:22:53
2018-01-05T07:22:53
116,212,072
0
0
null
null
null
null
UTF-8
Java
false
false
662
java
package pet.dao; import javax.annotation.Resource; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.stereotype.Repository; import pet.model.POInfo; @Repository public class PODao { private JdbcTemplate jdbcTemplate = null; @Resource public void setJdbcTemplate(JdbcTemplate jdbcTemplate) { this.jdbcTemplate = jdbcTemplate; } /** * 增加订单和宠物的关系表 * @param poInfo * @return */ public int insertPO(POInfo poInfo) { String sql = "insert into dbo.po(petId, orderId) values(?,?)"; int ret = jdbcTemplate.update(sql, new Object[] { poInfo.getPetId(), poInfo.getOrderId() }); return ret; } }
[ "1428027441@qq.com" ]
1428027441@qq.com
74707bf2def68a606d297db9ff99d57e303eb417
585ea6f553020f7f53d27e00695b9053b909369d
/app/src/main/java/com/example/mrye/littlezhihurb/activity/MainActivity.java
a418157604c8c94e94a3d901608515df03989678
[]
no_license
JakeyYe/LittleZhiHuRB
95f744e799104ba5568a2dc91470b143c2c9ad01
d8255bae1cf1af2aef96684e681b58a01d08673d
refs/heads/master
2020-12-02T18:11:43.867192
2017-07-09T13:52:22
2017-07-09T13:52:22
96,492,505
0
0
null
null
null
null
UTF-8
Java
false
false
9,671
java
package com.example.mrye.littlezhihurb.activity; import android.content.Intent; import android.graphics.Color; import android.os.Bundle; import android.os.Handler; import android.support.v4.widget.SwipeRefreshLayout; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.support.v7.widget.RecyclerView.OnScrollListener; import android.util.Log; import android.view.View; import android.view.ViewGroup; import com.example.mrye.littlezhihurb.R; import com.example.mrye.littlezhihurb.adapter.BannerAdapter; import com.example.mrye.littlezhihurb.adapter.RecyclerAdapter; import com.example.mrye.littlezhihurb.api.ApiService; import com.example.mrye.littlezhihurb.api.ServiceCreator; import com.example.mrye.littlezhihurb.bean.BeforeZhiHuStory; import com.example.mrye.littlezhihurb.bean.LatestZhiHuStory; import com.example.mrye.littlezhihurb.utils.DisplayUtil; import com.example.mrye.littlezhihurb.utils.GetIdUtil; import com.example.mrye.littlezhihurb.utils.ToastUtil; import com.jude.rollviewpager.RollPagerView; import com.jude.rollviewpager.hintview.ColorPointHintView; import java.util.List; import retrofit2.Call; import retrofit2.Callback; import retrofit2.Response; /** * MainActivity主界面,使用SwipeRefreshLayout下拉刷新, * 监听RecyclerView上拉到底部时加载更多数据 */ public class MainActivity extends BaseActivity implements SwipeRefreshLayout.OnRefreshListener { private static final String TAG = MainActivity.class.getSimpleName(); private SwipeRefreshLayout refreshLayout; private RecyclerView mRecyclerView; private RecyclerAdapter mRecyclerAdapter; private LinearLayoutManager mLayoutManager; private List<Integer> mIndexList; private List<String> mIndexStrList; private Handler handler = new Handler(); private int page = 1;//根据这个page获取时间日期 /** * 覆写该方法,返回false,主界面MainActivity不需要滑动返回, * 不覆写默认返回true */ @Override public boolean isSupportSwipeBack() { return false; } @Override protected void initView(Bundle savedInstanceState) { setContentView(R.layout.activity_main); mToolbar = getViewById(R.id.toolbar); mToolbar.setTitle(R.string.app_title);//Toolbar文字切换 mToolbar.setLogo(R.drawable.ic_menu_white_24dp); setSupportActionBar(mToolbar); refreshLayout = getViewById(R.id.swipe_refresh_layout); refreshLayout.setColorSchemeColors(getResources().getColor(R.color.colorPrimary)); refreshLayout.setOnRefreshListener(this); mRecyclerView = getViewById(R.id.recycler_view); LinearLayoutManager layoutManager = new LinearLayoutManager(this); mRecyclerView.setLayoutManager(layoutManager); mRecyclerView.setHasFixedSize(true); mRecyclerView.addOnScrollListener(new OnScrollListener() { @Override public void onScrolled(RecyclerView recyclerView, int dx, int dy) { mLayoutManager = (LinearLayoutManager) recyclerView.getLayoutManager(); //得到当前显示的最后一个item的view View lastChildView = mLayoutManager. getChildAt(mLayoutManager.getChildCount() - 1); //得到lastChildView的bottom坐标值 int lastChildBottom = lastChildView.getBottom(); //得到RecyclerView的底部坐标减去底部padding值,也就是显示内容最底部的坐标 int recyclerBottom = recyclerView.getBottom() - recyclerView.getPaddingBottom(); //通过这个lastChildView得到这个view当前的position值 int lastPosition = mLayoutManager.getPosition(lastChildView); //判断lastChildView的bottom值跟recyclerBottom //判断lastPosition是不是最后一个position //如果两个条件都满足则说明是真正的滑动到了底部 if (lastChildBottom == recyclerBottom && lastPosition == mLayoutManager.getItemCount() - 1) { // ToastUtil.showToast(MainActivity.this, "滑动到底了"); getMoreData(); } //先找到index Item,最后再判断这个Item是否是第一个可见的Item mIndexList = ((RecyclerAdapter) recyclerView.getAdapter()).getIndexList(); mIndexStrList = ((RecyclerAdapter) recyclerView.getAdapter()).getIndexStrList(); int firstVisibleItemPosition = mLayoutManager.findFirstVisibleItemPosition(); if (mIndexList.contains(firstVisibleItemPosition)) { int i=mIndexList.indexOf(firstVisibleItemPosition); mToolbar.setTitle(mIndexStrList.get(i)); } if(firstVisibleItemPosition==0){ mToolbar.setTitle(R.string.app_title); } } }); } @Override protected void setListener() { } @Override protected void processLogic(Bundle savedInstanceState) { getLatestData(); } /*获取最新数据*/ private void getLatestData() { ApiService apiService = ServiceCreator.getInstance().createService(); Call<LatestZhiHuStory> latestData = apiService.getLatestZhiHuStory(); latestData.enqueue(new Callback<LatestZhiHuStory>() { @Override public void onResponse(Call<LatestZhiHuStory> call, Response<LatestZhiHuStory> response) { final LatestZhiHuStory l = response.body(); mRecyclerAdapter = new RecyclerAdapter(MainActivity.this, l.getStories()); Log.i(TAG, "onResponse: l.getStories().size() " + l.getStories().size()); RollPagerView header = new RollPagerView(MainActivity.this); //设置RollViewPager的指示器(圆点) header.setHintView(new ColorPointHintView(MainActivity.this, Color.WHITE, Color.GRAY)); //设置指示View的位置,设置四个方向上的Padding值 header.setHintPadding(0, 0, 0, DisplayUtil.dip2px(MainActivity.this, 8f)); header.setPlayDelay(3000);//设置轮播时间,默认为0,表示不循环播放 header.setLayoutParams(new RecyclerView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, DisplayUtil.dip2px(MainActivity.this, 200))); header.setAdapter(new BannerAdapter(MainActivity.this, l.getTop_stories())); //向RecyclerView中添加一个Header头布局 mRecyclerAdapter.setHeaderView(header); addIndexView("今日热闻"); mRecyclerAdapter.setItemClickListener(new RecyclerAdapter.OnItemClickListener() { @Override public void onItemClick(View v, int position) { Intent intent = new Intent(MainActivity.this, ZhiHuDescribeActivity.class); Bundle bundle = new Bundle(); bundle.putInt("id", l.getStories().get(position).getId()); intent.putExtras(bundle); mSwipeBackHelper.forward(intent); } }); mRecyclerView.setAdapter(mRecyclerAdapter); } @Override public void onFailure(Call<LatestZhiHuStory> call, Throwable t) { ToastUtil.showToast(MainActivity.this, "网络出错,获取数据失败"); Log.i(TAG, "onFailure: 网络出错,获取数据失败"); } }); } /*获取之前的数据*/ private void getMoreData() { ApiService apiService = ServiceCreator.getInstance().createService(); final String date = GetIdUtil.getId(page); Log.i(TAG, "getMoreData: " + date); Call<BeforeZhiHuStory> moreData = apiService.getBeforeZhiHuStory(date); moreData.enqueue(new Callback<BeforeZhiHuStory>() { @Override public void onResponse(Call<BeforeZhiHuStory> call, Response<BeforeZhiHuStory> response) { addIndexView(date); mRecyclerAdapter.addContentData(response.body().getStories()); } @Override public void onFailure(Call<BeforeZhiHuStory> call, Throwable t) { ToastUtil.showToast(MainActivity.this, "网络出错,获取数据失败"); Log.i(TAG, "onFailure: 网络出错,获取数据失败"); } }); page++; } private void addIndexView(String index) { if (index.equals("今日热闻")) { } else { String str = index.substring(4);//0705 index = str.substring(0, 2) + "月" + str.substring(2) + "日 " + GetIdUtil.getWeek(index); } mRecyclerAdapter.addIndexView(index); } /*SwipeRefreshLayout刷新回调onRefresh()方法,该方法是执行在子线程中的*/ @Override public void onRefresh() { handler.postDelayed(new Runnable() {//这里可以判断一下是否一直在当天,在当天就不会再有更新的数据了 @Override public void run() { refreshLayout.setRefreshing(false); ToastUtil.showToast(MainActivity.this, "没有更多最新数据了!");//这里向下滑动刷新什么都不显示,因为已经加载了最新的数据了 } }, 2000); } }
[ "1078126902@qq.com" ]
1078126902@qq.com
e4781946526e500b4dcf15ab13032e6cc955bf7f
5d90af57347dbb90f447ce2134e7dba8a87a3494
/src/by/it/Yrkevich/lesson02/TaskA2.java
bd979450fb6f5f1e79303a2e6b3ea99dff69accd
[]
no_license
Roman80212/cs2018-05-10
9297126b11433bded8d9e46e48391849422c17af
62c39f2d0e3bd2b86b7338883371651f4a41d280
refs/heads/master
2020-03-17T01:06:53.095955
2018-05-23T07:26:16
2018-05-23T07:26:16
133,140,344
0
0
null
2018-05-12T11:37:43
2018-05-12T11:37:43
null
UTF-8
Java
false
false
563
java
package by.it.Yrkevich.lesson02; /* напишите тело main программы которая выводит на экран 5 строк "Я начинаю изучать Java!" Для ручной проверки запустите программу Ctrl+Shift+F10 Для автоматической проверки откройте и запустите класс Testing */ class TaskA2 { public static void main(String[] args) { for (int i=0; i<5; i++) System.out.println("Я начинаю изучать Java!"); } }
[ "fonarik33@gmail.com" ]
fonarik33@gmail.com
3f45ae84dd33b3ba13d78523000d296ccb40f2c5
71f7879852879c412b25530fdce344f105d20e47
/src/udt/TestEchoServer.java
58c0e0a6528d153760e09f39a72a9d6ccb20c8e8
[]
no_license
ligzy/UDTServer
65978aa776200255a6dbbe98396d98072ca52869
b6d63e29df647953bb8ddcfae80891b895d66af8
refs/heads/master
2021-01-24T04:13:29.945971
2015-06-30T07:32:19
2015-06-30T07:32:19
null
0
0
null
null
null
null
UTF-8
Java
false
false
160
java
package udt; public class TestEchoServer { public static void main(String[] args) throws Exception { EchoServer es=new EchoServer(65321); es.start(); } }
[ "lycwork@126.com" ]
lycwork@126.com
c7dc9c407f090d2b0be8658294ae505969e9c18b
b16499aafd814525b9a040f4a0cd1312ad764838
/app/src/main/java/serguma/mensaws/MainActivity.java
7cb63ecfbe0131014508a7205f33d5028e3122ef
[]
no_license
serguma/MensaWS
31ee3c131da1870eed46c89e4affb4679a0c7357
f412bc5fa30a4b1a1400136abf09b0dbaf0637d3
refs/heads/master
2021-01-21T11:55:09.349029
2017-03-17T09:03:36
2017-03-17T09:03:36
85,291,882
0
0
null
null
null
null
UTF-8
Java
false
false
889
java
package serguma.mensaws; import android.content.Context; import android.content.SharedPreferences; import android.support.design.widget.TabLayout; import android.support.v4.view.ViewPager; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; public class MainActivity extends AppCompatActivity { private ViewPager viewPager; private AdapterPage adapterPage; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); viewPager = (ViewPager)findViewById(R.id.elViewPager); adapterPage = new AdapterPage(getSupportFragmentManager()); viewPager.setAdapter(adapterPage); TabLayout tabLayout = (TabLayout)findViewById(R.id.tabLayout); tabLayout.setupWithViewPager(viewPager); } }
[ "s.gutierrez@everyoneplus.es" ]
s.gutierrez@everyoneplus.es
0747565d1147bf103b84a1c6168faa88c9f08eea
d41fc5b864aaa8768b1c164f5f31465dd6936553
/src/test/java/com/testeml/service/SimianServiceTest.java
3956465b5f82fcce124f29ecf5449dd1e417ccdf
[]
no_license
fsousaprog/testeML
5d1aa3e058b55e1a7c4e5325751817c0ef6c942b
69fdc1ba7964aef5bdae5d7a99be90cd98787f9e
refs/heads/master
2022-12-31T21:06:38.410524
2020-10-27T02:01:06
2020-10-27T02:01:06
306,985,475
0
0
null
null
null
null
UTF-8
Java
false
false
3,215
java
package com.testeml.service; import net.minidev.json.JSONObject; import org.junit.jupiter.api.Test; import java.util.ArrayList; import static java.util.Arrays.asList; import static java.util.Collections.singletonMap; class SimianServiceTest { private static final String[] SIMIO = { "ATGCGA", "CAGTGC", "TTATGT", "AGAAGG", "CCCCTA", "TCACTG" }; private static final String[] NAO_SIMIO = { "ATGCGA", "CAGTGC", "TTATTT", "AGACGG", "GCGTCA", "TCACTG" }; private static final String[] SEQ_NUMERICA = { "ATGCGA", "CAGTG0", "TTATGT", "AG1AGG", "CCCCTA", "4CACTG" }; private static final String[] SEQ_INCORRETA = { "ATGCGA", "CAGTGC", "TTATGT", "AGAAG", "CCCCTA", "TCACTGT" }; private static final String[] SEQ_LETRA_ERRADA = { "AKGCGA", "CAGTGC", "TTARGT", "AGAAGG", "CCPCTA", "TCACTG" }; private static final String[] SEQ_FORA_DE_TAMANHO = { "ATGCGA", "CAGTGC", "TTATGT", "AGAAGG", "CCCCTA" }; @Test void create() { SimianService service = new SimianService(); JSONObject jsonSimio = new JSONObject(singletonMap("dna", new ArrayList(asList(SIMIO)))); JSONObject jsonDnaErrado = new JSONObject(singletonMap("dnaSimio", new ArrayList(asList(SEQ_NUMERICA)))); JSONObject jsonSeqNumerica = new JSONObject(singletonMap("dna", new ArrayList(asList(SEQ_NUMERICA)))); JSONObject jsonSeqIncorreta = new JSONObject(singletonMap("dna", new ArrayList(asList(SEQ_INCORRETA)))); JSONObject jsonSeqLetraErrada = new JSONObject(singletonMap("dna", new ArrayList(asList(SEQ_LETRA_ERRADA)))); JSONObject jsonSeqForaDeTamanho = new JSONObject(singletonMap("dna", new ArrayList(asList(SEQ_FORA_DE_TAMANHO)))); try { assert service.create(jsonSimio) != null; } catch (Exception e) { assert false; } try { service.create(jsonDnaErrado); assert false; } catch (Exception e) { assert true; } try { service.create(jsonSeqNumerica); assert false; } catch (Exception e) { assert true; } try { service.create(jsonSeqIncorreta); assert false; } catch (Exception e) { assert true; } try { service.create(jsonSeqLetraErrada); assert false; } catch (Exception e) { assert true; } try { service.create(jsonSeqForaDeTamanho); assert false; } catch (Exception e) { assert true; } } @Test void isSimian() { SimianService service = new SimianService(); assert service.isSimian(SIMIO); assert !service.isSimian(NAO_SIMIO); } }
[ "Fms1993!" ]
Fms1993!
b632af33e89a6a1e2b143f40fc9ba9c3874ff3de
efef9c110912aaf32a822aef22c2c566a9c74bb0
/Homework/HomeworkIntroductionToJava/Problem5.PrintACharacterTriangle/src/PrintACharacterTriangle.java
9f2b975bf5f06d5dbb8a591c38512560727cff70
[]
no_license
sMustafov/JavaFundamentals
51d16242f5808a0955b1d6bb01371b74d5b0afb1
caade8ee38a4459cabfc781749ee179d00a2fee6
refs/heads/master
2021-01-10T04:32:21.454322
2016-11-09T06:35:46
2016-11-09T06:35:46
44,749,867
0
0
null
null
null
null
WINDOWS-1252
Java
false
false
756
java
import java.io.Console; import java.util.Scanner; /** * Created by pc1 on 12.10.2015 ã.. */ public class PrintACharacterTriangle { public static void main(String[] args) { Scanner console = new Scanner(System.in); int n = Integer.parseInt(console.nextLine()); for (int a = 0; a < n; a++) { char i = 'a'; for (int b = 0; b <= a; b++) { System.out.print(i + " "); i++; } System.out.println(); } for (int a = n - 2; a >= 0; a--) { char i = 'a'; for (int b = 0; b <= a; b++) { System.out.print(i + " "); i++; } System.out.println(); } } }
[ "sevgin95@gmail.com" ]
sevgin95@gmail.com
576f98c368ff2298c34c35cd6b2e005f8669f939
b9ca040b3dea63a486aec23774be96e5331d2ea2
/src/Request/LoginRequest.java
8f0d3e24dc8ef1948d645ff0da0332b9bbc45533
[]
no_license
ProGenji25/FamilyMapServer
11e98d6c973a39ac0aca0054e37debe0ae73a283
23d8b962f7b1bd32a41435b6c503da8ac595f78b
refs/heads/master
2021-02-07T19:28:14.668310
2020-03-01T01:37:15
2020-03-01T01:37:15
244,068,018
0
0
null
null
null
null
UTF-8
Java
false
false
992
java
package Request; /** * Inputs login request to the login service class. * @author golde3 * */ public class LoginRequest { private String userName; /**Field for holding user name input*/ private String password; /**Field for holding password input*/ private String serverHost; /**Field for holding current server host ID*/ private String serverPort; /**Field for holding current server port ID*/ /** * Constructor for new LoadRequest input object */ public LoginRequest() { } public String getUsername() { return userName; } public void setUsername(String in) { this.userName = in; } public String getPassword() { return password; } public void setPassword(String in) { this.password = in; } public String getServerHost() { return serverHost; } public void setServerHost(String in) { this.serverHost = in; } public String getServerPort() { return serverPort; } public void setServerPort(String in) { this.serverPort = in; } }
[ "jordan.golden1234@yahoo.com" ]
jordan.golden1234@yahoo.com
0528af909c857733c84f1863bc405e0ce302f205
8065032735883fbb53dafd38cb676a644ac0aed1
/两种网络请求两种方式/src/main/java/com/example/moothdemo3/Bean.java
d6359f805ceabb44ea53ad8eeac2249efc0dfa99
[]
no_license
JiangBaohan/Android_H
c1911f6f113cffc6f6f1ea6648302171598939fb
cb1ac3ac2ca4309429f3e646a2e7b2b9beb1a2a3
refs/heads/master
2021-01-01T16:42:31.887576
2017-11-14T01:17:50
2017-11-14T01:17:50
97,896,468
3
0
null
null
null
null
UTF-8
Java
false
false
38,221
java
package com.example.moothdemo3; import java.util.List; public class Bean { /** * reason : 成功的返回 * result : {"stat":"1","data":[{"uniquekey":"ca5ada220d1320fff8119ba2acdcd612","title":"许世友将军有后,孙女自己闯出了一片天地,官至大校","date":"2017-07-26 18:28","category":"头条","author_name":"历史客栈","url":"http://mini.eastday.com/mobile/170726182857512.html","thumbnail_pic_s":"http://04.imgmini.eastday.com/mobile/20170726/20170726_140b7434d54b2bbd00078c1c54fca98d_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://04.imgmini.eastday.com/mobile/20170726/20170726_a8097c5193d19867fe498cb54fe4718e_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://04.imgmini.eastday.com/mobile/20170726/20170726_67c44d04bd393777ce5ba581ed4d3f8f_cover_mwpm_03200403.jpeg"},{"uniquekey":"2ec8c040f8f0ad7d40a29e1ce75125f2","title":"中国要造几艘航母答案终于有了:舰载机飞行员居然要这么多","date":"2017-07-26 18:25","category":"头条","author_name":"新闻今日谈","url":"http://mini.eastday.com/mobile/170726182510567.html","thumbnail_pic_s":"http://05.imgmini.eastday.com/mobile/20170726/20170726_deb15ded37331666bb578f28a16d88a6_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://05.imgmini.eastday.com/mobile/20170726/20170726_a61db05f484c119c7a7678d6b145e9d5_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://05.imgmini.eastday.com/mobile/20170726/20170726_efc4395d7d73fd347cb4cee57627ab71_cover_mwpm_03200403.jpeg"},{"uniquekey":"c640e423022fe5095ee8f7a6bdc5930d","title":"2017农村土地补偿实施新政策,自留山每亩补偿标准提高多少?","date":"2017-07-26 18:12","category":"头条","author_name":"雪花神剑财经资讯","url":"http://mini.eastday.com/mobile/170726181212090.html","thumbnail_pic_s":"http://09.imgmini.eastday.com/mobile/20170726/20170726_0219e115bd226fe36555df86fd54f693_mwpm_03200403.jpg","thumbnail_pic_s02":"http://09.imgmini.eastday.com/mobile/20170726/20170726_1e83a73c32e8c8052e24236a21d8b0bf_mwpm_03200403.jpg","thumbnail_pic_s03":"http://09.imgmini.eastday.com/mobile/20170726/20170726_cd6630b7964f5d6ae2900fa784ae873d_mwpm_03200403.jpg"},{"uniquekey":"55372f22f44c99d3ab0e5868e02064a7","title":"青瓦台否认\u201c萨德\u201d部署时间报道","date":"2017-07-26 17:53","category":"头条","author_name":"新华社","url":"http://mini.eastday.com/mobile/170726175330604.html","thumbnail_pic_s":"http://02.imgmini.eastday.com/mobile/20170726/20170726175330_5c8a8affb5bed8ea7897f50d2ca731d5_1_mwpm_03200403.jpg"},{"uniquekey":"4324239ff1076a58f9adc86fc4d7a077","title":"有这四颗痣的女人命有贵星,天生带财","date":"2017-07-26 17:37","category":"头条","author_name":"小诸葛风水命理","url":"http://mini.eastday.com/mobile/170726173744754.html","thumbnail_pic_s":"http://06.imgmini.eastday.com/mobile/20170726/20170726_66be60e3db2403be25e5a23049781272_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://06.imgmini.eastday.com/mobile/20170726/20170726_3d8ab93312200c67fa7dda3ba4d277c8_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://06.imgmini.eastday.com/mobile/20170726/20170726_66ea4f40d1cc7a03b65da48a2f390ec8_cover_mwpm_03200403.jpeg"},{"uniquekey":"1c88278f173cf45e0597a86c21a7dcdb","title":"突发王炸!刚刚,马云沸腾了全中国!","date":"2017-07-26 17:26","category":"头条","author_name":"奇葩说说","url":"http://mini.eastday.com/mobile/170726172631451.html","thumbnail_pic_s":"http://03.imgmini.eastday.com/mobile/20170726/20170726_b42383ae4612baf0b022db1e0fa7f664_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://03.imgmini.eastday.com/mobile/20170726/20170726_3caf555bef33517ae454de9e442150f4_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://03.imgmini.eastday.com/mobile/20170726/20170726_e17270af0eeadcc0ee07e7b837ce3823_cover_mwpm_03200403.jpeg"},{"uniquekey":"66bebd0470d44426cae0be0a03a1338d","title":"鳄鱼看见河边喝水的狮子准备偷袭,结果一抬头想死的心都有了","date":"2017-07-26 17:20","category":"头条","author_name":"六维自然","url":"http://mini.eastday.com/mobile/170726172033585.html","thumbnail_pic_s":"http://07.imgmini.eastday.com/mobile/20170726/20170726_33431119c10336574597952df85f8114_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://07.imgmini.eastday.com/mobile/20170726/20170726_00123a525b71a6d0e80215e1e0850c60_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://07.imgmini.eastday.com/mobile/20170726/20170726_d4c9a4e59ef16ba4620e08776c33173a_cover_mwpm_03200403.jpeg"},{"uniquekey":"20aab3316dba15256ed93945b4a81262","title":"新一代导弹令如此厉害!这型导弹瞬间可令歼20如虎添翼!","date":"2017-07-26 17:17","category":"头条","author_name":"战略军事","url":"http://mini.eastday.com/mobile/170726171719384.html","thumbnail_pic_s":"http://06.imgmini.eastday.com/mobile/20170726/20170722_52f775cdc8620831564d965b8b88187d_mwpm_03200403.png","thumbnail_pic_s02":"http://06.imgmini.eastday.com/mobile/20170726/20170722_a6aa8e8591186c8aa699144dad9ff16c_mwpm_03200403.png","thumbnail_pic_s03":"http://06.imgmini.eastday.com/mobile/20170726/20170722_1b46e7fba2e142def7429b00aae91992_mwpm_03200403.png"},{"uniquekey":"26f72c1952a6b11475ce8e55b43a8463","title":"韩国统一部:未就朝鲜回应对话提议设时限","date":"2017-07-26 17:06","category":"头条","author_name":"央视网","url":"http://mini.eastday.com/mobile/170726170614259.html","thumbnail_pic_s":"http://05.imgmini.eastday.com/mobile/20170726/20170726170614_53f5d89fc26967ebd33a14985c56919a_1_mwpm_03200403.jpg"},{"uniquekey":"fb39a1fcfab58114250ed1f9915105a9","title":"通过手机号知道姓名和微信号的方法","date":"2017-07-26 17:02","category":"头条","author_name":"下载之家","url":"http://mini.eastday.com/mobile/170726170232626.html","thumbnail_pic_s":"http://07.imgmini.eastday.com/mobile/20170726/20170726_d3b1ebcbedf09abf87a1ecefe95a57de_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://07.imgmini.eastday.com/mobile/20170726/20170726_80a4aaa58de0758ccc32de48a49a6c5c_cover_mwpm_03200403.jpeg"},{"uniquekey":"cb8df95289c3a60797a7c12a5da6ccbd","title":"河北北戴河迎旅游高峰 俄罗斯游客享假日时光","date":"2017-07-26 17:01","category":"头条","author_name":"中国新闻网","url":"http://mini.eastday.com/mobile/170726170100698.html","thumbnail_pic_s":"http://04.imgmini.eastday.com/mobile/20170726/20170726170100_1c6fa184448845ab81f94a7fd6a8f324_1_mwpm_03200403.jpg","thumbnail_pic_s02":"http://04.imgmini.eastday.com/mobile/20170726/20170726170100_1c6fa184448845ab81f94a7fd6a8f324_2_mwpm_03200403.jpg","thumbnail_pic_s03":"http://04.imgmini.eastday.com/mobile/20170726/20170726170100_1c6fa184448845ab81f94a7fd6a8f324_4_mwpm_03200403.jpg"},{"uniquekey":"a5edaba71fa3c9bec5fdaabf132b8684","title":"哪来的自信?33年磨一剑的光辉战机比歼10厉害?","date":"2017-07-26 16:58","category":"头条","author_name":"战略军事","url":"http://mini.eastday.com/mobile/170726165806378.html","thumbnail_pic_s":"http://05.imgmini.eastday.com/mobile/20170726/20170726_f84b775e95d578d423d90b2cfd5115ae_mwpm_03200403.png","thumbnail_pic_s02":"http://05.imgmini.eastday.com/mobile/20170726/20170726_5ac625b436633c9c41142aab0adb1412_mwpm_03200403.png","thumbnail_pic_s03":"http://05.imgmini.eastday.com/mobile/20170726/20170726_6922a9514540b36fd7751b9d35d1888d_mwpm_03200403.png"},{"uniquekey":"2959f87401e72f3e40856bc2a13cd45a","title":"半个月时间 孟加拉首都达卡\u201c血河\u201d变\u201c碧海\u201d","date":"2017-07-26 16:57","category":"头条","author_name":"sipaphoto 东方IC","url":"http://mini.eastday.com/mobile/170726165730843.html","thumbnail_pic_s":"http://03.imgmini.eastday.com/mobile/20170726/20170726165730_a725c7162fcb49b9eb9d392f10064dbc_4_mwpm_03200403.jpg","thumbnail_pic_s02":"http://03.imgmini.eastday.com/mobile/20170726/20170726165730_a725c7162fcb49b9eb9d392f10064dbc_3_mwpm_03200403.jpg","thumbnail_pic_s03":"http://03.imgmini.eastday.com/mobile/20170726/20170726165730_a725c7162fcb49b9eb9d392f10064dbc_5_mwpm_03200403.jpg"},{"uniquekey":"5edf9bb04bb76a84c87b0d73bdb95da8","title":"103岁老红军、中科院长春光机所原党委书记李光逝世","date":"2017-07-26 16:55","category":"头条","author_name":"科学网","url":"http://mini.eastday.com/mobile/170726165559164.html","thumbnail_pic_s":"http://07.imgmini.eastday.com/mobile/20170726/20170726165559_0eca86d2c3d79522058571818745b70a_1_mwpm_03200403.jpg"},{"uniquekey":"ce313c628e1549b6c2fd019b78f9b519","title":"南平女老师独自日本旅游 在北海道失联4天","date":"2017-07-26 16:53","category":"头条","author_name":"海峡网","url":"http://mini.eastday.com/mobile/170726165304839.html","thumbnail_pic_s":"http://02.imgmini.eastday.com/mobile/20170726/20170726165304_107d4dcdb7ea454e1a96384396c372fd_1_mwpm_03200403.jpg"},{"uniquekey":"b493c40d5772b286f0b8d06b2eb625a8","title":"国土部将开展安全生产大检查,重点紧盯矿产资源勘查开采","date":"2017-07-26 16:44","category":"头条","author_name":"央视新闻、央视新闻客户端","url":"http://mini.eastday.com/mobile/170726164459858.html","thumbnail_pic_s":"http://03.imgmini.eastday.com/mobile/20170726/20170726164459_3ef3f227ae92342cc5408da6da5d6641_1_mwpm_03200403.jpg"},{"uniquekey":"61e7690e9bb90ca51be43b70dcbeffae","title":"外媒:英国2040年起将禁止销售新的汽油和柴油汽车","date":"2017-07-26 16:27","category":"头条","author_name":"环球网","url":"http://mini.eastday.com/mobile/170726162713288.html","thumbnail_pic_s":"http://03.imgmini.eastday.com/mobile/20170726/20170726162713_c4c361e9dfe76ac98051fa85900ae65b_1_mwpm_03200403.jpg"},{"uniquekey":"04647f767e19500e6a24451793d04b24","title":"好一记\u201c回马枪\u201d!这几只\u201c老虎\u201d被\u201c秒杀\u201d","date":"2017-07-26 16:23","category":"头条","author_name":"央视网","url":"http://mini.eastday.com/mobile/170726162301317.html","thumbnail_pic_s":"http://00.imgmini.eastday.com/mobile/20170726/20170726162301_1f34d8188d20bb5a56d362c49a6d11a3_4_mwpm_03200403.jpg","thumbnail_pic_s02":"http://00.imgmini.eastday.com/mobile/20170726/20170726162301_1f34d8188d20bb5a56d362c49a6d11a3_5_mwpm_03200403.jpg","thumbnail_pic_s03":"http://00.imgmini.eastday.com/mobile/20170726/20170726162301_1f34d8188d20bb5a56d362c49a6d11a3_2_mwpm_03200403.jpg"},{"uniquekey":"5e9ffd06c5cde59b802cbe5de7f73af9","title":"解密美国死刑犯临死前真实生活:由亲人陪同走完的人生最后之路","date":"2017-07-26 16:17","category":"头条","author_name":"图看世界","url":"http://mini.eastday.com/mobile/170726161756498.html","thumbnail_pic_s":"http://09.imgmini.eastday.com/mobile/20170726/20170726_2e9dfcee40091082c5660dca78d31c6a_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://09.imgmini.eastday.com/mobile/20170726/20170726_d8a255384eae9cc59490e3efa57f5de0_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://09.imgmini.eastday.com/mobile/20170726/20170726_c3a29765ae4c1b9ee41ae5a3410a52d4_cover_mwpm_03200403.jpeg"},{"uniquekey":"33a6710b5a463694d6d8a0404ff25e71","title":"印度怎么又要打朝鲜主意?","date":"2017-07-26 16:12","category":"头条","author_name":"观察者网","url":"http://mini.eastday.com/mobile/170726161219105.html","thumbnail_pic_s":"http://09.imgmini.eastday.com/mobile/20170726/20170726161219_b588b602bfccf69de8914b5f01310b37_1_mwpm_03200403.jpg"},{"uniquekey":"0485468186c3ee493471a6e279c490db","title":"日本多地持续高温 造成6人死亡6千余人入院","date":"2017-07-26 16:06","category":"头条","author_name":"环球网","url":"http://mini.eastday.com/mobile/170726160659694.html","thumbnail_pic_s":"http://01.imgmini.eastday.com/mobile/20170726/20170726160659_e3776b7ec6fa4b4d6ece2baff49f6a22_1_mwpm_03200403.jpg"},{"uniquekey":"98b965184f2876db117793a141fa1305","title":"你躲在空调房里喝冷饮 他们为何还在赤日下战高温?","date":"2017-07-26 16:06","category":"头条","author_name":"东方网东方头条","url":"http://mini.eastday.com/mobile/170726160632734.html","thumbnail_pic_s":"http://06.imgmini.eastday.com/mobile/20170726/20170726160632_1f9bf68b313ef6c7065b2a4eb7714363_1_mwpm_03200403.jpg","thumbnail_pic_s02":"http://06.imgmini.eastday.com/mobile/20170726/20170726160632_c8269ca79091870c733ec6bc43f78698_2_mwpm_03200403.jpg","thumbnail_pic_s03":"http://06.imgmini.eastday.com/mobile/20170726/20170726160632_474111254f401ac8ac6c199c384cb4ac_3_mwpm_03200403.jpg"},{"uniquekey":"49e69487644736ea59c7d5e82491f618","title":"莫迪欲联手安倍染指非洲,但黑人兄弟在印度受到的种族歧视却令人发指","date":"2017-07-26 16:05","category":"头条","author_name":"文汇","url":"http://mini.eastday.com/mobile/170726160517271.html","thumbnail_pic_s":"http://03.imgmini.eastday.com/mobile/20170726/20170726160517_c70c1118e7e5070f769b92e600ebd0e7_1_mwpm_03200403.jpg","thumbnail_pic_s02":"http://03.imgmini.eastday.com/mobile/20170726/20170726160517_795ace94e91e1218cd6ac7b249ca97f1_2_mwpm_03200403.jpg","thumbnail_pic_s03":"http://03.imgmini.eastday.com/mobile/20170726/20170726160517_ef138ec7809f3b0824510db8e782d76d_3_mwpm_03200403.jpg"},{"uniquekey":"ffb134f252e35a556795d7dcd7c65bd9","title":"多图|新疆某边境多兵种联合演练 \u201c六位一体\u201d歼灭暴恐分子","date":"2017-07-26 15:58","category":"头条","author_name":"@央广军事","url":"http://mini.eastday.com/mobile/170726155824378.html","thumbnail_pic_s":"http://04.imgmini.eastday.com/mobile/20170726/20170726155824_eb1496e524f39ab3323259d9e2521bd1_4_mwpm_03200403.jpg","thumbnail_pic_s02":"http://04.imgmini.eastday.com/mobile/20170726/20170726155824_eb1496e524f39ab3323259d9e2521bd1_2_mwpm_03200403.jpg","thumbnail_pic_s03":"http://04.imgmini.eastday.com/mobile/20170726/20170726155824_eb1496e524f39ab3323259d9e2521bd1_1_mwpm_03200403.jpg"},{"uniquekey":"c5300e4bcd51c73e5945569caadaf07c","title":"美国最先进侦察机:飞行员要穿宇航服,被中国打下来五架","date":"2017-07-26 15:28","category":"头条","author_name":"123军情观察室","url":"http://mini.eastday.com/mobile/170726152838882.html","thumbnail_pic_s":"http://08.imgmini.eastday.com/mobile/20170726/20170726_e58e84155bf088891a89ad448d542243_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://08.imgmini.eastday.com/mobile/20170726/20170726_6826c8f55df9d1065a764f4c8382466b_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://08.imgmini.eastday.com/mobile/20170726/20170726_2f2fd67a7d6e2e4b03ee0e8c399f4b4b_cover_mwpm_03200403.jpeg"},{"uniquekey":"0ccaeed3ceebbd614a2cd8059515de58","title":"扬州七旬退休校长7年义务辅导留守儿童,多次拒绝高薪聘请","date":"2017-07-26 15:27","category":"头条","author_name":"现代快报","url":"http://mini.eastday.com/mobile/170726152704334.html","thumbnail_pic_s":"http://06.imgmini.eastday.com/mobile/20170726/20170726152704_2d9bccc6fb3d766eda866731de788516_1_mwpm_03200403.jpg"},{"uniquekey":"17d70cc74dab7bfe6692fba0e324850c","title":"陕西榆林子洲县清水沟水库溃坝 当地紧急通知居民撤离","date":"2017-07-26 15:26","category":"头条","author_name":"中国新闻网","url":"http://mini.eastday.com/mobile/170726152630507.html","thumbnail_pic_s":"http://09.imgmini.eastday.com/mobile/20170726/20170726152630_b039d5366d752a0cb2423879ce4805f0_1_mwpm_03200403.jpg"},{"uniquekey":"9cad113b46af64c676ac961a748b61d2","title":"农民抱怨缴的新农保以后领取多少?新政策来了不缴费直接领取!","date":"2017-07-26 15:17","category":"头条","author_name":"北公爵无欢","url":"http://mini.eastday.com/mobile/170726151721189.html","thumbnail_pic_s":"http://06.imgmini.eastday.com/mobile/20170726/20170726_90e7a0e58fe7538733a721f904917ef1_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://06.imgmini.eastday.com/mobile/20170726/20170726_74955f7b6eb051a34aa9e7285eb50797_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://06.imgmini.eastday.com/mobile/20170726/20170726_f1dba2d1f897ce4a2a30151b843a0cb9_cover_mwpm_03200403.jpeg"},{"uniquekey":"c10aa3b94dd8666e3d451989649f5169","title":"7月27号份财库大开,8月不再缺钱,衣食无忧的生肖!","date":"2017-07-26 15:10","category":"头条","author_name":"吉名轩八字星座","url":"http://mini.eastday.com/mobile/170726151031951.html","thumbnail_pic_s":"http://08.imgmini.eastday.com/mobile/20170726/20170726_ac296ef30a9226765304dfcd0c5c1595_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://08.imgmini.eastday.com/mobile/20170726/20170726_f40028b5c16a83429cdbc9d32db0f97f_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://08.imgmini.eastday.com/mobile/20170726/20170726_73970840003604472b845cdde9365f36_cover_mwpm_03200403.jpeg"},{"uniquekey":"374ce6520a622a686e5ae876450cb4e7","title":"广西高速两车相撞致5死10伤","date":"2017-07-26 15:01","category":"头条","author_name":"澎湃新闻网","url":"http://mini.eastday.com/mobile/170726150152365.html","thumbnail_pic_s":"http://00.imgmini.eastday.com/mobile/20170726/20170726150152_daa0e1617008d94ce6f566f08469418d_1_mwpm_03200403.jpg"}]} * error_code : 0 */ private String reason; private ResultBean result; private int error_code; public String getReason() { return reason; } public void setReason(String reason) { this.reason = reason; } public ResultBean getResult() { return result; } public void setResult(ResultBean result) { this.result = result; } public int getError_code() { return error_code; } public void setError_code(int error_code) { this.error_code = error_code; } public static class ResultBean { /** * stat : 1 * data : [{"uniquekey":"ca5ada220d1320fff8119ba2acdcd612","title":"许世友将军有后,孙女自己闯出了一片天地,官至大校","date":"2017-07-26 18:28","category":"头条","author_name":"历史客栈","url":"http://mini.eastday.com/mobile/170726182857512.html","thumbnail_pic_s":"http://04.imgmini.eastday.com/mobile/20170726/20170726_140b7434d54b2bbd00078c1c54fca98d_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://04.imgmini.eastday.com/mobile/20170726/20170726_a8097c5193d19867fe498cb54fe4718e_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://04.imgmini.eastday.com/mobile/20170726/20170726_67c44d04bd393777ce5ba581ed4d3f8f_cover_mwpm_03200403.jpeg"},{"uniquekey":"2ec8c040f8f0ad7d40a29e1ce75125f2","title":"中国要造几艘航母答案终于有了:舰载机飞行员居然要这么多","date":"2017-07-26 18:25","category":"头条","author_name":"新闻今日谈","url":"http://mini.eastday.com/mobile/170726182510567.html","thumbnail_pic_s":"http://05.imgmini.eastday.com/mobile/20170726/20170726_deb15ded37331666bb578f28a16d88a6_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://05.imgmini.eastday.com/mobile/20170726/20170726_a61db05f484c119c7a7678d6b145e9d5_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://05.imgmini.eastday.com/mobile/20170726/20170726_efc4395d7d73fd347cb4cee57627ab71_cover_mwpm_03200403.jpeg"},{"uniquekey":"c640e423022fe5095ee8f7a6bdc5930d","title":"2017农村土地补偿实施新政策,自留山每亩补偿标准提高多少?","date":"2017-07-26 18:12","category":"头条","author_name":"雪花神剑财经资讯","url":"http://mini.eastday.com/mobile/170726181212090.html","thumbnail_pic_s":"http://09.imgmini.eastday.com/mobile/20170726/20170726_0219e115bd226fe36555df86fd54f693_mwpm_03200403.jpg","thumbnail_pic_s02":"http://09.imgmini.eastday.com/mobile/20170726/20170726_1e83a73c32e8c8052e24236a21d8b0bf_mwpm_03200403.jpg","thumbnail_pic_s03":"http://09.imgmini.eastday.com/mobile/20170726/20170726_cd6630b7964f5d6ae2900fa784ae873d_mwpm_03200403.jpg"},{"uniquekey":"55372f22f44c99d3ab0e5868e02064a7","title":"青瓦台否认\u201c萨德\u201d部署时间报道","date":"2017-07-26 17:53","category":"头条","author_name":"新华社","url":"http://mini.eastday.com/mobile/170726175330604.html","thumbnail_pic_s":"http://02.imgmini.eastday.com/mobile/20170726/20170726175330_5c8a8affb5bed8ea7897f50d2ca731d5_1_mwpm_03200403.jpg"},{"uniquekey":"4324239ff1076a58f9adc86fc4d7a077","title":"有这四颗痣的女人命有贵星,天生带财","date":"2017-07-26 17:37","category":"头条","author_name":"小诸葛风水命理","url":"http://mini.eastday.com/mobile/170726173744754.html","thumbnail_pic_s":"http://06.imgmini.eastday.com/mobile/20170726/20170726_66be60e3db2403be25e5a23049781272_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://06.imgmini.eastday.com/mobile/20170726/20170726_3d8ab93312200c67fa7dda3ba4d277c8_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://06.imgmini.eastday.com/mobile/20170726/20170726_66ea4f40d1cc7a03b65da48a2f390ec8_cover_mwpm_03200403.jpeg"},{"uniquekey":"1c88278f173cf45e0597a86c21a7dcdb","title":"突发王炸!刚刚,马云沸腾了全中国!","date":"2017-07-26 17:26","category":"头条","author_name":"奇葩说说","url":"http://mini.eastday.com/mobile/170726172631451.html","thumbnail_pic_s":"http://03.imgmini.eastday.com/mobile/20170726/20170726_b42383ae4612baf0b022db1e0fa7f664_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://03.imgmini.eastday.com/mobile/20170726/20170726_3caf555bef33517ae454de9e442150f4_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://03.imgmini.eastday.com/mobile/20170726/20170726_e17270af0eeadcc0ee07e7b837ce3823_cover_mwpm_03200403.jpeg"},{"uniquekey":"66bebd0470d44426cae0be0a03a1338d","title":"鳄鱼看见河边喝水的狮子准备偷袭,结果一抬头想死的心都有了","date":"2017-07-26 17:20","category":"头条","author_name":"六维自然","url":"http://mini.eastday.com/mobile/170726172033585.html","thumbnail_pic_s":"http://07.imgmini.eastday.com/mobile/20170726/20170726_33431119c10336574597952df85f8114_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://07.imgmini.eastday.com/mobile/20170726/20170726_00123a525b71a6d0e80215e1e0850c60_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://07.imgmini.eastday.com/mobile/20170726/20170726_d4c9a4e59ef16ba4620e08776c33173a_cover_mwpm_03200403.jpeg"},{"uniquekey":"20aab3316dba15256ed93945b4a81262","title":"新一代导弹令如此厉害!这型导弹瞬间可令歼20如虎添翼!","date":"2017-07-26 17:17","category":"头条","author_name":"战略军事","url":"http://mini.eastday.com/mobile/170726171719384.html","thumbnail_pic_s":"http://06.imgmini.eastday.com/mobile/20170726/20170722_52f775cdc8620831564d965b8b88187d_mwpm_03200403.png","thumbnail_pic_s02":"http://06.imgmini.eastday.com/mobile/20170726/20170722_a6aa8e8591186c8aa699144dad9ff16c_mwpm_03200403.png","thumbnail_pic_s03":"http://06.imgmini.eastday.com/mobile/20170726/20170722_1b46e7fba2e142def7429b00aae91992_mwpm_03200403.png"},{"uniquekey":"26f72c1952a6b11475ce8e55b43a8463","title":"韩国统一部:未就朝鲜回应对话提议设时限","date":"2017-07-26 17:06","category":"头条","author_name":"央视网","url":"http://mini.eastday.com/mobile/170726170614259.html","thumbnail_pic_s":"http://05.imgmini.eastday.com/mobile/20170726/20170726170614_53f5d89fc26967ebd33a14985c56919a_1_mwpm_03200403.jpg"},{"uniquekey":"fb39a1fcfab58114250ed1f9915105a9","title":"通过手机号知道姓名和微信号的方法","date":"2017-07-26 17:02","category":"头条","author_name":"下载之家","url":"http://mini.eastday.com/mobile/170726170232626.html","thumbnail_pic_s":"http://07.imgmini.eastday.com/mobile/20170726/20170726_d3b1ebcbedf09abf87a1ecefe95a57de_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://07.imgmini.eastday.com/mobile/20170726/20170726_80a4aaa58de0758ccc32de48a49a6c5c_cover_mwpm_03200403.jpeg"},{"uniquekey":"cb8df95289c3a60797a7c12a5da6ccbd","title":"河北北戴河迎旅游高峰 俄罗斯游客享假日时光","date":"2017-07-26 17:01","category":"头条","author_name":"中国新闻网","url":"http://mini.eastday.com/mobile/170726170100698.html","thumbnail_pic_s":"http://04.imgmini.eastday.com/mobile/20170726/20170726170100_1c6fa184448845ab81f94a7fd6a8f324_1_mwpm_03200403.jpg","thumbnail_pic_s02":"http://04.imgmini.eastday.com/mobile/20170726/20170726170100_1c6fa184448845ab81f94a7fd6a8f324_2_mwpm_03200403.jpg","thumbnail_pic_s03":"http://04.imgmini.eastday.com/mobile/20170726/20170726170100_1c6fa184448845ab81f94a7fd6a8f324_4_mwpm_03200403.jpg"},{"uniquekey":"a5edaba71fa3c9bec5fdaabf132b8684","title":"哪来的自信?33年磨一剑的光辉战机比歼10厉害?","date":"2017-07-26 16:58","category":"头条","author_name":"战略军事","url":"http://mini.eastday.com/mobile/170726165806378.html","thumbnail_pic_s":"http://05.imgmini.eastday.com/mobile/20170726/20170726_f84b775e95d578d423d90b2cfd5115ae_mwpm_03200403.png","thumbnail_pic_s02":"http://05.imgmini.eastday.com/mobile/20170726/20170726_5ac625b436633c9c41142aab0adb1412_mwpm_03200403.png","thumbnail_pic_s03":"http://05.imgmini.eastday.com/mobile/20170726/20170726_6922a9514540b36fd7751b9d35d1888d_mwpm_03200403.png"},{"uniquekey":"2959f87401e72f3e40856bc2a13cd45a","title":"半个月时间 孟加拉首都达卡\u201c血河\u201d变\u201c碧海\u201d","date":"2017-07-26 16:57","category":"头条","author_name":"sipaphoto 东方IC","url":"http://mini.eastday.com/mobile/170726165730843.html","thumbnail_pic_s":"http://03.imgmini.eastday.com/mobile/20170726/20170726165730_a725c7162fcb49b9eb9d392f10064dbc_4_mwpm_03200403.jpg","thumbnail_pic_s02":"http://03.imgmini.eastday.com/mobile/20170726/20170726165730_a725c7162fcb49b9eb9d392f10064dbc_3_mwpm_03200403.jpg","thumbnail_pic_s03":"http://03.imgmini.eastday.com/mobile/20170726/20170726165730_a725c7162fcb49b9eb9d392f10064dbc_5_mwpm_03200403.jpg"},{"uniquekey":"5edf9bb04bb76a84c87b0d73bdb95da8","title":"103岁老红军、中科院长春光机所原党委书记李光逝世","date":"2017-07-26 16:55","category":"头条","author_name":"科学网","url":"http://mini.eastday.com/mobile/170726165559164.html","thumbnail_pic_s":"http://07.imgmini.eastday.com/mobile/20170726/20170726165559_0eca86d2c3d79522058571818745b70a_1_mwpm_03200403.jpg"},{"uniquekey":"ce313c628e1549b6c2fd019b78f9b519","title":"南平女老师独自日本旅游 在北海道失联4天","date":"2017-07-26 16:53","category":"头条","author_name":"海峡网","url":"http://mini.eastday.com/mobile/170726165304839.html","thumbnail_pic_s":"http://02.imgmini.eastday.com/mobile/20170726/20170726165304_107d4dcdb7ea454e1a96384396c372fd_1_mwpm_03200403.jpg"},{"uniquekey":"b493c40d5772b286f0b8d06b2eb625a8","title":"国土部将开展安全生产大检查,重点紧盯矿产资源勘查开采","date":"2017-07-26 16:44","category":"头条","author_name":"央视新闻、央视新闻客户端","url":"http://mini.eastday.com/mobile/170726164459858.html","thumbnail_pic_s":"http://03.imgmini.eastday.com/mobile/20170726/20170726164459_3ef3f227ae92342cc5408da6da5d6641_1_mwpm_03200403.jpg"},{"uniquekey":"61e7690e9bb90ca51be43b70dcbeffae","title":"外媒:英国2040年起将禁止销售新的汽油和柴油汽车","date":"2017-07-26 16:27","category":"头条","author_name":"环球网","url":"http://mini.eastday.com/mobile/170726162713288.html","thumbnail_pic_s":"http://03.imgmini.eastday.com/mobile/20170726/20170726162713_c4c361e9dfe76ac98051fa85900ae65b_1_mwpm_03200403.jpg"},{"uniquekey":"04647f767e19500e6a24451793d04b24","title":"好一记\u201c回马枪\u201d!这几只\u201c老虎\u201d被\u201c秒杀\u201d","date":"2017-07-26 16:23","category":"头条","author_name":"央视网","url":"http://mini.eastday.com/mobile/170726162301317.html","thumbnail_pic_s":"http://00.imgmini.eastday.com/mobile/20170726/20170726162301_1f34d8188d20bb5a56d362c49a6d11a3_4_mwpm_03200403.jpg","thumbnail_pic_s02":"http://00.imgmini.eastday.com/mobile/20170726/20170726162301_1f34d8188d20bb5a56d362c49a6d11a3_5_mwpm_03200403.jpg","thumbnail_pic_s03":"http://00.imgmini.eastday.com/mobile/20170726/20170726162301_1f34d8188d20bb5a56d362c49a6d11a3_2_mwpm_03200403.jpg"},{"uniquekey":"5e9ffd06c5cde59b802cbe5de7f73af9","title":"解密美国死刑犯临死前真实生活:由亲人陪同走完的人生最后之路","date":"2017-07-26 16:17","category":"头条","author_name":"图看世界","url":"http://mini.eastday.com/mobile/170726161756498.html","thumbnail_pic_s":"http://09.imgmini.eastday.com/mobile/20170726/20170726_2e9dfcee40091082c5660dca78d31c6a_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://09.imgmini.eastday.com/mobile/20170726/20170726_d8a255384eae9cc59490e3efa57f5de0_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://09.imgmini.eastday.com/mobile/20170726/20170726_c3a29765ae4c1b9ee41ae5a3410a52d4_cover_mwpm_03200403.jpeg"},{"uniquekey":"33a6710b5a463694d6d8a0404ff25e71","title":"印度怎么又要打朝鲜主意?","date":"2017-07-26 16:12","category":"头条","author_name":"观察者网","url":"http://mini.eastday.com/mobile/170726161219105.html","thumbnail_pic_s":"http://09.imgmini.eastday.com/mobile/20170726/20170726161219_b588b602bfccf69de8914b5f01310b37_1_mwpm_03200403.jpg"},{"uniquekey":"0485468186c3ee493471a6e279c490db","title":"日本多地持续高温 造成6人死亡6千余人入院","date":"2017-07-26 16:06","category":"头条","author_name":"环球网","url":"http://mini.eastday.com/mobile/170726160659694.html","thumbnail_pic_s":"http://01.imgmini.eastday.com/mobile/20170726/20170726160659_e3776b7ec6fa4b4d6ece2baff49f6a22_1_mwpm_03200403.jpg"},{"uniquekey":"98b965184f2876db117793a141fa1305","title":"你躲在空调房里喝冷饮 他们为何还在赤日下战高温?","date":"2017-07-26 16:06","category":"头条","author_name":"东方网东方头条","url":"http://mini.eastday.com/mobile/170726160632734.html","thumbnail_pic_s":"http://06.imgmini.eastday.com/mobile/20170726/20170726160632_1f9bf68b313ef6c7065b2a4eb7714363_1_mwpm_03200403.jpg","thumbnail_pic_s02":"http://06.imgmini.eastday.com/mobile/20170726/20170726160632_c8269ca79091870c733ec6bc43f78698_2_mwpm_03200403.jpg","thumbnail_pic_s03":"http://06.imgmini.eastday.com/mobile/20170726/20170726160632_474111254f401ac8ac6c199c384cb4ac_3_mwpm_03200403.jpg"},{"uniquekey":"49e69487644736ea59c7d5e82491f618","title":"莫迪欲联手安倍染指非洲,但黑人兄弟在印度受到的种族歧视却令人发指","date":"2017-07-26 16:05","category":"头条","author_name":"文汇","url":"http://mini.eastday.com/mobile/170726160517271.html","thumbnail_pic_s":"http://03.imgmini.eastday.com/mobile/20170726/20170726160517_c70c1118e7e5070f769b92e600ebd0e7_1_mwpm_03200403.jpg","thumbnail_pic_s02":"http://03.imgmini.eastday.com/mobile/20170726/20170726160517_795ace94e91e1218cd6ac7b249ca97f1_2_mwpm_03200403.jpg","thumbnail_pic_s03":"http://03.imgmini.eastday.com/mobile/20170726/20170726160517_ef138ec7809f3b0824510db8e782d76d_3_mwpm_03200403.jpg"},{"uniquekey":"ffb134f252e35a556795d7dcd7c65bd9","title":"多图|新疆某边境多兵种联合演练 \u201c六位一体\u201d歼灭暴恐分子","date":"2017-07-26 15:58","category":"头条","author_name":"@央广军事","url":"http://mini.eastday.com/mobile/170726155824378.html","thumbnail_pic_s":"http://04.imgmini.eastday.com/mobile/20170726/20170726155824_eb1496e524f39ab3323259d9e2521bd1_4_mwpm_03200403.jpg","thumbnail_pic_s02":"http://04.imgmini.eastday.com/mobile/20170726/20170726155824_eb1496e524f39ab3323259d9e2521bd1_2_mwpm_03200403.jpg","thumbnail_pic_s03":"http://04.imgmini.eastday.com/mobile/20170726/20170726155824_eb1496e524f39ab3323259d9e2521bd1_1_mwpm_03200403.jpg"},{"uniquekey":"c5300e4bcd51c73e5945569caadaf07c","title":"美国最先进侦察机:飞行员要穿宇航服,被中国打下来五架","date":"2017-07-26 15:28","category":"头条","author_name":"123军情观察室","url":"http://mini.eastday.com/mobile/170726152838882.html","thumbnail_pic_s":"http://08.imgmini.eastday.com/mobile/20170726/20170726_e58e84155bf088891a89ad448d542243_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://08.imgmini.eastday.com/mobile/20170726/20170726_6826c8f55df9d1065a764f4c8382466b_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://08.imgmini.eastday.com/mobile/20170726/20170726_2f2fd67a7d6e2e4b03ee0e8c399f4b4b_cover_mwpm_03200403.jpeg"},{"uniquekey":"0ccaeed3ceebbd614a2cd8059515de58","title":"扬州七旬退休校长7年义务辅导留守儿童,多次拒绝高薪聘请","date":"2017-07-26 15:27","category":"头条","author_name":"现代快报","url":"http://mini.eastday.com/mobile/170726152704334.html","thumbnail_pic_s":"http://06.imgmini.eastday.com/mobile/20170726/20170726152704_2d9bccc6fb3d766eda866731de788516_1_mwpm_03200403.jpg"},{"uniquekey":"17d70cc74dab7bfe6692fba0e324850c","title":"陕西榆林子洲县清水沟水库溃坝 当地紧急通知居民撤离","date":"2017-07-26 15:26","category":"头条","author_name":"中国新闻网","url":"http://mini.eastday.com/mobile/170726152630507.html","thumbnail_pic_s":"http://09.imgmini.eastday.com/mobile/20170726/20170726152630_b039d5366d752a0cb2423879ce4805f0_1_mwpm_03200403.jpg"},{"uniquekey":"9cad113b46af64c676ac961a748b61d2","title":"农民抱怨缴的新农保以后领取多少?新政策来了不缴费直接领取!","date":"2017-07-26 15:17","category":"头条","author_name":"北公爵无欢","url":"http://mini.eastday.com/mobile/170726151721189.html","thumbnail_pic_s":"http://06.imgmini.eastday.com/mobile/20170726/20170726_90e7a0e58fe7538733a721f904917ef1_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://06.imgmini.eastday.com/mobile/20170726/20170726_74955f7b6eb051a34aa9e7285eb50797_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://06.imgmini.eastday.com/mobile/20170726/20170726_f1dba2d1f897ce4a2a30151b843a0cb9_cover_mwpm_03200403.jpeg"},{"uniquekey":"c10aa3b94dd8666e3d451989649f5169","title":"7月27号份财库大开,8月不再缺钱,衣食无忧的生肖!","date":"2017-07-26 15:10","category":"头条","author_name":"吉名轩八字星座","url":"http://mini.eastday.com/mobile/170726151031951.html","thumbnail_pic_s":"http://08.imgmini.eastday.com/mobile/20170726/20170726_ac296ef30a9226765304dfcd0c5c1595_cover_mwpm_03200403.jpeg","thumbnail_pic_s02":"http://08.imgmini.eastday.com/mobile/20170726/20170726_f40028b5c16a83429cdbc9d32db0f97f_cover_mwpm_03200403.jpeg","thumbnail_pic_s03":"http://08.imgmini.eastday.com/mobile/20170726/20170726_73970840003604472b845cdde9365f36_cover_mwpm_03200403.jpeg"},{"uniquekey":"374ce6520a622a686e5ae876450cb4e7","title":"广西高速两车相撞致5死10伤","date":"2017-07-26 15:01","category":"头条","author_name":"澎湃新闻网","url":"http://mini.eastday.com/mobile/170726150152365.html","thumbnail_pic_s":"http://00.imgmini.eastday.com/mobile/20170726/20170726150152_daa0e1617008d94ce6f566f08469418d_1_mwpm_03200403.jpg"}] */ private String stat; private List<DataBean> data; public String getStat() { return stat; } public void setStat(String stat) { this.stat = stat; } public List<DataBean> getData() { return data; } public void setData(List<DataBean> data) { this.data = data; } public static class DataBean { /** * uniquekey : ca5ada220d1320fff8119ba2acdcd612 * title : 许世友将军有后,孙女自己闯出了一片天地,官至大校 * date : 2017-07-26 18:28 * category : 头条 * author_name : 历史客栈 * url : http://mini.eastday.com/mobile/170726182857512.html * thumbnail_pic_s : http://04.imgmini.eastday.com/mobile/20170726/20170726_140b7434d54b2bbd00078c1c54fca98d_cover_mwpm_03200403.jpeg * thumbnail_pic_s02 : http://04.imgmini.eastday.com/mobile/20170726/20170726_a8097c5193d19867fe498cb54fe4718e_cover_mwpm_03200403.jpeg * thumbnail_pic_s03 : http://04.imgmini.eastday.com/mobile/20170726/20170726_67c44d04bd393777ce5ba581ed4d3f8f_cover_mwpm_03200403.jpeg */ private String uniquekey; private String title; private String date; private String category; private String author_name; private String url; private String thumbnail_pic_s; private String thumbnail_pic_s02; private String thumbnail_pic_s03; public String getUniquekey() { return uniquekey; } public void setUniquekey(String uniquekey) { this.uniquekey = uniquekey; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getDate() { return date; } public void setDate(String date) { this.date = date; } public String getCategory() { return category; } public void setCategory(String category) { this.category = category; } public String getAuthor_name() { return author_name; } public void setAuthor_name(String author_name) { this.author_name = author_name; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getThumbnail_pic_s() { return thumbnail_pic_s; } public void setThumbnail_pic_s(String thumbnail_pic_s) { this.thumbnail_pic_s = thumbnail_pic_s; } public String getThumbnail_pic_s02() { return thumbnail_pic_s02; } public void setThumbnail_pic_s02(String thumbnail_pic_s02) { this.thumbnail_pic_s02 = thumbnail_pic_s02; } public String getThumbnail_pic_s03() { return thumbnail_pic_s03; } public void setThumbnail_pic_s03(String thumbnail_pic_s03) { this.thumbnail_pic_s03 = thumbnail_pic_s03; } } } }
[ "498805449@qq.com" ]
498805449@qq.com
d569d816d405c09beb7c190abdd1ba4eef4994d4
90b4c33fbc1eca5ebac13411d19cb76c57c42fee
/app/src/main/java/com/rojan/cinema/UpcomingShowFragment.java
9f545f9ee0b8cc24db6ae0b8ad0e542eefd0a7f9
[]
no_license
gabbar29/Cinema
6d9ce14c855c102aba0d026e4e602c2faf4467a1
eed4d1bad654c96ec4671ec223493e17ca3b58f3
refs/heads/master
2021-01-13T12:52:56.185008
2017-01-05T09:31:35
2017-01-05T09:31:35
78,098,897
0
0
null
null
null
null
UTF-8
Java
false
false
528
java
package com.rojan.cinema; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; public class UpcomingShowFragment extends Fragment { @Override public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { View view=inflater.inflate(R.layout.guide_layout,container,false); return view; } }
[ "rojangabbar29@gmail.com" ]
rojangabbar29@gmail.com
a0d56669195b05f790e00adef7ee2ba8e8a3f7bc
af15606819adb8fce81e8a3c5c94c4bd3a73cb20
/hope/src/main/java/bonsai/dropwizard/dao/d/DHitsResultDAO.java
bd6f60ea817d808b269848605a5a8bb2fb0e0675
[ "Apache-2.0" ]
permissive
gajju3588/DataTurks
1d404b76d88749fd8c7952afcdd12311a779c212
da77df85d4652c1577efa9eef76c90c96ec39ab7
refs/heads/master
2020-05-18T11:25:37.090983
2019-03-18T15:49:09
2019-03-18T15:49:09
184,379,834
1
0
Apache-2.0
2019-05-01T06:52:59
2019-05-01T06:52:58
null
UTF-8
Java
false
false
13,731
java
package bonsai.dropwizard.dao.d; import io.dropwizard.hibernate.AbstractDAO; import org.hibernate.Query; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.Transaction; import org.hibernate.context.internal.ManagedSessionContext; import java.util.*; public class DHitsResultDAO extends AbstractDAO<DHitsResult> implements IDDao<DHitsResult>{ /** * Constructor. * * @param sessionFactory Hibernate session factory. */ SessionFactory sessionFactory ; public DHitsResultDAO(SessionFactory sessionFactory) { super(sessionFactory); this.sessionFactory = sessionFactory; } public List<DHitsResult> findAll() { return list(namedQuery("bonsai.dropwizard.dao.d.DHitsResult.findAll")); } //Called from within the app and not via a hibernate resources hence does not have session binding. public List<DHitsResult> findAllInternal() { Session session = sessionFactory.openSession(); try { ManagedSessionContext.bind(session); Transaction transaction = session.beginTransaction(); try { List<DHitsResult> list= findAll(); transaction.commit(); return list; } catch (Exception e) { transaction.rollback(); throw new RuntimeException(e); } } finally { session.close(); ManagedSessionContext.unbind(sessionFactory); } } public String create(DHitsResult entry) { return persist(entry).getId() + ""; } public String createInternal(DHitsResult entry) { Session session = sessionFactory.openSession(); try { ManagedSessionContext.bind(session); Transaction transaction = session.beginTransaction(); try { String id = create(entry); transaction.commit(); return id; } catch (Exception e) { transaction.rollback(); throw new RuntimeException(e); } } finally { session.close(); ManagedSessionContext.unbind(sessionFactory); } } private DHitsResult findById(long id) { List<DHitsResult> list = list( namedQuery("bonsai.dropwizard.dao.d.DHitsResult.findById") .setParameter("id", id) ); if (list != null && list.size() > 0) { return list.get(0); } return null; } @Deprecated public DHitsResult findByIdInternal(String id) { return findByIdInternal(Long.parseLong(id)); } public DHitsResult findByIdInternal(long id) { Session session = sessionFactory.openSession(); try { ManagedSessionContext.bind(session); Transaction transaction = session.beginTransaction(); try { DHitsResult DHitsResult = findById(id); transaction.commit(); return DHitsResult; } catch (Exception e) { transaction.rollback(); throw new RuntimeException(e); } } finally { session.close(); ManagedSessionContext.unbind(sessionFactory); } } private List<DHitsResult> findByHitId(long hitId) { List<DHitsResult> list = list( namedQuery("bonsai.dropwizard.dao.d.DHitsResult.findByHitId") .setParameter("hitId", hitId) ); return list; } public List<DHitsResult> findByHitIdInternal(long hitId) { Session session = sessionFactory.openSession(); try { ManagedSessionContext.bind(session); Transaction transaction = session.beginTransaction(); try { List<DHitsResult> results = findByHitId(hitId); transaction.commit(); return results; } catch (Exception e) { transaction.rollback(); throw new RuntimeException(e); } } finally { session.close(); ManagedSessionContext.unbind(sessionFactory); } } private List<DHitsResult> findAllByProjectId(String projectId) { List<DHitsResult> list = list( namedQuery("bonsai.dropwizard.dao.d.DHitsResult.findByProjectId") .setParameter("projectId", projectId) ); return list; } public List<DHitsResult> findAllByProjectIdInternal(String projectId) { Session session = sessionFactory.openSession(); try { ManagedSessionContext.bind(session); Transaction transaction = session.beginTransaction(); try { List<DHitsResult> results = findAllByProjectId(projectId); transaction.commit(); return results; } catch (Exception e) { transaction.rollback(); throw new RuntimeException(e); } } finally { session.close(); ManagedSessionContext.unbind(sessionFactory); } } private List<DHitsResult> findAllByUserId(String userId) { List<DHitsResult> list = list( namedQuery("bonsai.dropwizard.dao.d.DHitsResult.findByUserId") .setParameter("userId", userId) ); return list; } public List<DHitsResult> findAllByUserIdInternal(String userId) { Session session = sessionFactory.openSession(); try { ManagedSessionContext.bind(session); Transaction transaction = session.beginTransaction(); try { List<DHitsResult> results = findAllByUserId(userId); transaction.commit(); return results; } catch (Exception e) { transaction.rollback(); throw new RuntimeException(e); } } finally { session.close(); ManagedSessionContext.unbind(sessionFactory); } } private long getCountForProject(String projectId) { Session session = sessionFactory.openSession(); try { ManagedSessionContext.bind(session); org.hibernate.Transaction transaction = session.beginTransaction(); try { Query query = session.createQuery("select count(*) from DHitsResult e where e.projectId=:projectId"); query.setParameter("projectId", projectId); Long count = (Long)query.uniqueResult(); transaction.commit(); return count != null? count : 0; } catch (Exception e) { transaction.rollback(); throw new RuntimeException(e); } } finally { session.close(); ManagedSessionContext.unbind(sessionFactory); } } public boolean deleteInternal(DHitsResult DHitsResult) { Session session = sessionFactory.openSession(); try { ManagedSessionContext.bind(session); Transaction transaction = session.beginTransaction(); try { session.delete(DHitsResult); transaction.commit(); return true; } catch (Exception e) { transaction.rollback(); throw new RuntimeException(e); } } finally { session.close(); ManagedSessionContext.unbind(sessionFactory); } } public boolean saveOrUpdateInternal(DHitsResult DHitsResult) { Session session = sessionFactory.openSession(); try { ManagedSessionContext.bind(session); Transaction transaction = session.beginTransaction(); try { session.saveOrUpdate(DHitsResult); transaction.commit(); return true; } catch (Exception e) { transaction.rollback(); throw new RuntimeException(e); } } finally { session.close(); ManagedSessionContext.unbind(sessionFactory); } } public Map<String, Long> getProjectResultCountsInternal() { Session session = sessionFactory.openSession(); Map<String, Long> projectCounts = new HashMap<>(); try { ManagedSessionContext.bind(session); org.hibernate.Transaction transaction = session.beginTransaction(); try { Query query = session.createQuery("select projectId, count(*) from DHitsResult group by projectId ORDER BY COUNT(*) DESC"); List results = query.setMaxResults(1000).list(); if (results != null && !results.isEmpty()) { for (Object resultRaw : results) { Object[] result = (Object[]) resultRaw; projectCounts.put((String)result[0], (Long) result[1]); } } transaction.commit(); } catch (Exception e) { transaction.rollback(); throw new RuntimeException(e); } } finally { session.close(); ManagedSessionContext.unbind(sessionFactory); } return projectCounts; } public List<String> getProjectsWithRecentHitResultsInternal(long doneSinceInSec) { Session session = sessionFactory.openSession(); //calculate since date. Date since = new Date(System.currentTimeMillis() - doneSinceInSec *1000); Calendar calendar = Calendar.getInstance(); calendar.setTime(since); List<String> projectIds = null; try { ManagedSessionContext.bind(session); org.hibernate.Transaction transaction = session.beginTransaction(); try { Query query = session.createQuery("select projectId from DHitsResult WHERE updated_timestamp >= :since group by projectId"); query.setCalendar("since", calendar); projectIds = query.list(); transaction.commit(); } catch (Exception e) { transaction.rollback(); throw new RuntimeException(e); } } finally { session.close(); ManagedSessionContext.unbind(sessionFactory); } return projectIds; } public List<DHitsResult> getInternal(String projectId, long start, long count, String userId, String label) { String query = "FROM DHitsResult where projectId = :projectId ORDER BY updated_timestamp"; if (userId != null) { query = "FROM DHitsResult where projectId = :projectId AND userId = :userId ORDER BY updated_timestamp"; } if (label != null) { query = "FROM DHitsResult where projectId = :projectId AND result like :label ORDER BY updated_timestamp"; } if (userId != null && label != null) { query = "FROM DHitsResult where projectId = :projectId AND userId = :userId AND result like :label ORDER BY updated_timestamp"; } return getInternal(query, projectId, userId, label, start, count); } private List<DHitsResult> getInternal(String HQLQuery, String projectId, String userId, String label, long start, long count) { Session session = sessionFactory.openSession(); try { ManagedSessionContext.bind(session); org.hibernate.Transaction transaction = session.beginTransaction(); try { Query query = session.createQuery(HQLQuery); query.setParameter("projectId", projectId); if (userId != null) { query.setParameter("userId", userId); } if (label != null) { query.setString("label", "%" + label + "%"); } query.setFirstResult((int)start); query.setMaxResults((int)count); List<DHitsResult> list = query.list(); transaction.commit(); return list; } catch (Exception e) { transaction.rollback(); throw new RuntimeException(e); } } finally { session.close(); ManagedSessionContext.unbind(sessionFactory); } } public void deleteByProjectId(String projectId) { Session session = sessionFactory.openSession(); try { String HQLQuery = "DELETE DHitsResult where projectId = :projectId"; ManagedSessionContext.bind(session); org.hibernate.Transaction transaction = session.beginTransaction(); try { Query query = session.createQuery(HQLQuery); query.setParameter("projectId", projectId); query.executeUpdate(); transaction.commit(); } catch (Exception e) { transaction.rollback(); throw new RuntimeException(e); } } finally { session.close(); ManagedSessionContext.unbind(sessionFactory); } } }
[ "dataturksinfo@gmail.com" ]
dataturksinfo@gmail.com
bbb3c5849d39057f4ade85aca607a3cd1ae13b92
d7b4bb8c945829c10cd3187a1c2fad3d82458c3a
/cdrproject/cdrservice/src/main/java/com/ae/assignment/cdrproject/cdrservice/repository/RepositoryRuleConfigTopNCallersImpl.java
c5cba1e602e79d3096b483496af207b3f08b0ba5
[]
no_license
yoanvillanueva/cdr-1
cd2f2a4d81c25154e80ea94b09f22b308ccda583
a60c777d15051233474a776b3c1a36ec0f667b7f
refs/heads/master
2020-12-25T23:08:24.368111
2013-11-18T03:41:07
2013-11-18T03:41:07
null
0
0
null
null
null
null
UTF-8
Java
false
false
626
java
package com.ae.assignment.cdrproject.cdrservice.repository; import java.io.Serializable; import java.util.Date; import javax.persistence.Query; import org.springframework.stereotype.Repository; import com.ae.assignment.cdrproject.cdrservice.model.RuleConfigTalkTime; import com.ae.assignment.cdrproject.cdrservice.model.RuleConfigDroppedCalls; import com.ae.assignment.cdrproject.cdrservice.model.RuleConfigTopNCallers; @Repository public class RepositoryRuleConfigTopNCallersImpl extends RepositoryRuleConfigBaseImpl<RuleConfigTopNCallers> implements RepositoryRuleConfigTopNCallers, Serializable { /** * */ }
[ "aparnaelangovan@yahoo.com" ]
aparnaelangovan@yahoo.com
afb46e8d450ee76fc666e7f59da562cdc0d24c17
20eb62855cb3962c2d36fda4377dfd47d82eb777
/IntroClassJava/dataset/median/af81ffd4bc47e4f84cbf87051d82d15af14833eaba6c57ae82fc503a67eb939f3e6552182124605c38a77a6774f41fac2cc95082320ba5e29d303277c098c4ae/007/mutations/386/median_af81ffd4_007.java
c71a4813f54f815f15b742f9363053e747690653
[]
no_license
ozzydong/CapGen
356746618848065cce4e253e5d3c381baa85044a
0ba0321b6b1191443276021f1997833342f02515
refs/heads/master
2023-03-18T20:12:02.923428
2020-08-21T03:08:28
2020-08-21T03:08:28
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,597
java
package introclassJava; class IntObj { public int value; public IntObj () { } public IntObj (int i) { value = i; } } class FloatObj { public float value; public FloatObj () { } public FloatObj (float i) { value = i; } } class LongObj { public long value; public LongObj () { } public LongObj (long i) { value = i; } } class DoubleObj { public double value; public DoubleObj () { } public DoubleObj (double i) { value = i; } } class CharObj { public char value; public CharObj () { } public CharObj (char i) { value = i; } } public class median_af81ffd4_007 { public java.util.Scanner scanner; public String output = ""; public static void main (String[]args) throws Exception { median_af81ffd4_007 mainClass = new median_af81ffd4_007 (); String output; if (args.length > 0) { mainClass.scanner = new java.util.Scanner (args[0]); } else { mainClass.scanner = new java.util.Scanner (System.in); } mainClass.exec (); System.out.println (mainClass.output); } public void exec () throws Exception { DoubleObj first = new DoubleObj (), second = new DoubleObj (), third = new DoubleObj (); DoubleObj median = new DoubleObj (); DoubleObj comp_fir = new DoubleObj (), comp_sec = new DoubleObj (), comp_thi = new DoubleObj (); output += (String.format ("Please enter 3 numbers separated by spaces > ")); first.value = scanner.nextDouble (); second.value = scanner.nextDouble (); third.value = scanner.nextDouble (); median.value = (first.value + second.value + (second.value) - (median.value)) / 3; comp_fir.value = Math.abs (first.value - median.value); comp_sec.value = Math.abs (second.value - median.value); comp_thi.value = Math.abs (third.value - median.value); if (comp_fir.value < comp_sec.value && comp_fir.value < comp_thi.value) { output += (String.format ("%.0f is the median\n", first.value)); } else if (comp_sec.value < comp_fir.value && comp_sec.value < comp_thi.value) { output += (String.format ("%.0f is the median\n", second.value)); } else if (comp_thi.value < comp_fir.value && comp_thi.value < comp_sec.value) { output += (String.format ("%.0f is the median\n", third.value)); } if (true) return;; } }
[ "justinwm@163.com" ]
justinwm@163.com
bfc31d2538d404e76a8efaa970ce09bd90c5921d
9f38bedf3a3365fdd8b78395930979a41330afc8
/branches/nete-visualization/edu.iu.sci2.visualization.geomaps/src/edu/iu/sci2/visualization/geomaps/geo/projection/KnownProjectedCRSDescriptor.java
deb2078c2c89c4d8efa965dc43e03e6b4a36b1aa
[]
no_license
project-renard-survey/nwb
6a6ca10abb1e65163374d251be088e033bf3c6e0
612f215ac032e14669b3e8f75bc13ac0d4eda9dc
refs/heads/master
2020-04-01T16:11:01.156528
2015-08-03T18:30:34
2015-08-03T18:30:34
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,783
java
package edu.iu.sci2.visualization.geomaps.geo.projection; import org.geotools.referencing.CRS; import org.opengis.referencing.FactoryException; import org.opengis.referencing.NoSuchAuthorityCodeException; import org.opengis.referencing.crs.CoordinateReferenceSystem; import org.opengis.referencing.crs.ProjectedCRS; import org.opengis.referencing.operation.MathTransform; import com.google.common.base.Objects; import edu.iu.sci2.visualization.geomaps.geo.shapefiles.Shapefile; import edu.iu.sci2.visualization.geomaps.utility.NicelyNamedEnums.NicelyNamed; public enum KnownProjectedCRSDescriptor implements ProjectedCRSDescriptor, NicelyNamed { ECKERT_IV("Eckert IV", "equal-area Eckert IV", new EPSGCode("EPSG:54012")), // WINKEL_TRIPEL("Winkel Tripel", "Winkel Tripel", // TODO findCentralMeridian is broken on Winkel // new WKT("PROJCS[\"World_Winkel_Tripel_NGS\"," + // "GEOGCS[\"GCS_WGS_1984\"," + // "DATUM[\"D_WGS_1984\"," + // "SPHEROID[\"WGS_1984\",6378137.0,298.257223563]]," + // "PRIMEM[\"Greenwich\",0.0]," + // "UNIT[\"Degree\",0.0174532925199433]]," + // "PROJECTION[\"Winkel_Tripel\"]," + // "PARAMETER[\"standard_parallel_1\",40.0]," + // "UNIT[\"Meter\",1.0]]")), MERCATOR("Mercator", "Mercator", new EPSGCode("EPSG:3395")), ALBERS("Albers Equal-Area Conic", "Albers equal-area conic", new EPSGCode("EPSG:3083")), LAMBERT("Lambert Conformal Conic", "Lambert conformal conic", new EPSGCode("EPSG:102004")), // WORLD_EQUIDISTANT_CYLINDRICAL_SPHERE("World Equidistant Cylindrical (Sphere)", "World Equidistant Cylindrical (Sphere)", new EPSGCode("EPSG:3786")) ; /* "if the math transform should be created even when there is no information available for a * datum shift." * Suppresses errors due to unspecified Bursa-Wolf parameters when* transforming between * distinct datums. Practically, this should not result in errors large enough to significantly * distort drawing. */ public static final boolean REQUEST_LENIENT_TRANSFORM = true; private final String niceName; private final String description; private final ProjectedCRSDescriptor projectedCrsDescriptor; private KnownProjectedCRSDescriptor(String niceName, String description, ProjectedCRSDescriptor crsMaker) { this.niceName = niceName; this.description = description; this.projectedCrsDescriptor = crsMaker; } @Override public String getNiceName() { return niceName; } public String getDescription() { return description; } @Override public ProjectedCRS asProjectedCRS() throws NoSuchAuthorityCodeException, FactoryException { return projectedCrsDescriptor.asProjectedCRS(); } /** * If {@code sourceCrs} is null, {@link Shapefile#FALLBACK_SOURCE_CRS} is assumed. */ public MathTransform getTransformFrom(CoordinateReferenceSystem sourceCrs) throws NoSuchAuthorityCodeException, FactoryException { return CRS.findMathTransform( Objects.firstNonNull(sourceCrs, Shapefile.FALLBACK_SOURCE_CRS), asProjectedCRS(), REQUEST_LENIENT_TRANSFORM); } private static final class EPSGCode implements ProjectedCRSDescriptor { private final String code; public EPSGCode(String code) { this.code = code; } @Override public ProjectedCRS asProjectedCRS() throws NoSuchAuthorityCodeException, FactoryException { return CRS.getProjectedCRS(CRS.decode(code)); } } // private static final class WKT implements ProjectedCRSDescriptor { // private final String wkt; // // public WKT(String wkt) { // this.wkt = wkt; // } // // @Override // public ProjectedCRS asProjectedCRS() throws FactoryException { // return CRS.getProjectedCRS(CRS.parseWKT(wkt)); // } // } }
[ "jrbibers@indiana.edu" ]
jrbibers@indiana.edu
631c3134f7d3774ba1797bb0457c7b711c5c3e9d
3dfe39d6cf86ba7ae5c2f7ba396d146405c27819
/oneview-sdk-java-lib/src/main/java/com/hp/ov/sdk/dto/networking/logicalinterconnects/LIFirmwareValidationType.java
b7c26e3395f42aab14867e2b56b5f0da75bb9bad
[ "Apache-2.0" ]
permissive
HewlettPackard/oneview-sdk-java
36332dbd55829e85a4b717cedf84cac5149af551
6b53b1f30070ade8ae479fe709da992e8f703d52
refs/heads/master
2023-08-09T07:37:10.565694
2018-04-18T17:55:45
2018-04-18T17:55:45
38,078,052
19
9
Apache-2.0
2018-04-18T17:55:46
2015-06-25T22:36:44
Java
UTF-8
Java
false
false
958
java
/******************************************************************************* * (C) Copyright 2016 Hewlett Packard Enterprise Development LP * * 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.hp.ov.sdk.dto.networking.logicalinterconnects; public enum LIFirmwareValidationType { ValidateBestEffort, ValidateFailFast, ValidateOnly, None; }
[ "luiz.her.svoboda@hpe.com" ]
luiz.her.svoboda@hpe.com
905c2c5df86912c47f2dd4fabad55ca048ac0374
eb4b624f2e965c51f2b15e8be84fe21528d12cdf
/hadoop-tools/hadoop-aws/src/test/java/org/apache/hadoop/fs/s3a/impl/ITestPartialRenamesDeletes.java
8530cb879604f717c8a455e9b37f26daaf196cdf
[ "MIT", "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0", "BSD-2-Clause", "CDDL-1.1", "EPL-1.0", "LicenseRef-scancode-jdom", "Classpath-exception-2.0", "GPL-2.0-only", "LicenseRef-scancode-public-domain", "CC0-1.0", "CC-BY-3.0", "CC-PDDC", "GCC-exception-3.1",...
permissive
Microsoft-CISL/hadoop
31ab07ded1b5bbf87dc5b6dd55861e936b0dc6b4
4850b3aa86970f7af8f528564f2573becbd8e434
refs/heads/trunk
2020-07-15T02:40:25.750503
2019-10-10T17:58:19
2019-10-10T17:58:19
205,457,783
3
0
Apache-2.0
2019-11-09T16:25:29
2019-08-30T21:15:58
Java
UTF-8
Java
false
false
29,325
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.hadoop.fs.s3a.impl; import java.io.IOException; import java.nio.file.AccessDeniedException; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.List; import java.util.Set; import java.util.TreeSet; import java.util.concurrent.CompletableFuture; import java.util.concurrent.TimeUnit; import java.util.stream.Collectors; import java.util.stream.Stream; import com.amazonaws.services.s3.model.MultiObjectDeleteException; import com.google.common.base.Charsets; import com.google.common.util.concurrent.ListeningExecutorService; import org.assertj.core.api.Assertions; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileStatus; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.apache.hadoop.fs.contract.ContractTestUtils; import org.apache.hadoop.fs.s3a.AbstractS3ATestBase; import org.apache.hadoop.fs.s3a.S3AFileSystem; import org.apache.hadoop.util.BlockingThreadPoolExecutorService; import org.apache.hadoop.util.DurationInfo; import static org.apache.hadoop.fs.contract.ContractTestUtils.*; import static org.apache.hadoop.fs.s3a.Constants.*; import static org.apache.hadoop.fs.s3a.S3ATestUtils.MetricDiff; import static org.apache.hadoop.fs.s3a.S3ATestUtils.*; import static org.apache.hadoop.fs.s3a.S3AUtils.applyLocatedFiles; import static org.apache.hadoop.fs.s3a.Statistic.FILES_DELETE_REJECTED; import static org.apache.hadoop.fs.s3a.Statistic.OBJECT_DELETE_REQUESTS; import static org.apache.hadoop.fs.s3a.auth.RoleModel.Effects; import static org.apache.hadoop.fs.s3a.auth.RoleModel.Statement; import static org.apache.hadoop.fs.s3a.auth.RoleModel.directory; import static org.apache.hadoop.fs.s3a.auth.RoleModel.statement; import static org.apache.hadoop.fs.s3a.auth.RolePolicies.*; import static org.apache.hadoop.fs.s3a.auth.RoleTestUtils.bindRolePolicyStatements; import static org.apache.hadoop.fs.s3a.auth.RoleTestUtils.forbidden; import static org.apache.hadoop.fs.s3a.auth.RoleTestUtils.newAssumedRoleConfig; import static org.apache.hadoop.fs.s3a.impl.CallableSupplier.submit; import static org.apache.hadoop.fs.s3a.impl.CallableSupplier.waitForCompletion; import static org.apache.hadoop.fs.s3a.impl.MultiObjectDeleteSupport.extractUndeletedPaths; import static org.apache.hadoop.fs.s3a.impl.MultiObjectDeleteSupport.removeUndeletedPaths; import static org.apache.hadoop.fs.s3a.test.ExtraAssertions.assertFileCount; import static org.apache.hadoop.fs.s3a.test.ExtraAssertions.extractCause; import static org.apache.hadoop.io.IOUtils.cleanupWithLogger; import static org.apache.hadoop.test.LambdaTestUtils.eval; /** * Test partial failures of delete and rename operations, especially * that the S3Guard tables are consistent with the state of * the filesystem. * * All these test have a unique path for each run, with a roleFS having * full RW access to part of it, and R/O access to a restricted subdirectory * * <ol> * <li> * The tests are parameterized to single/multi delete, which control which * of the two delete mechanisms are used. * </li> * <li> * In multi delete, in a scale test run, a significantly larger set of files * is created and then deleted. * </li> * <li> * This isn't done in the single delete as it is much slower and it is not * the situation we are trying to create. * </li> * </ol> * * This test manages to create lots of load on the s3guard prune command * when that is tested in a separate test suite; * too many tombstone files for the test to complete. * An attempt is made in {@link #deleteTestDirInTeardown()} to prune these test * files. */ @SuppressWarnings("ThrowableNotThrown") @RunWith(Parameterized.class) public class ITestPartialRenamesDeletes extends AbstractS3ATestBase { private static final Logger LOG = LoggerFactory.getLogger(ITestPartialRenamesDeletes.class); private static final Path ROOT = new Path("/"); private static final Statement STATEMENT_ALL_BUCKET_READ_ACCESS = statement(true, S3_ALL_BUCKETS, S3_BUCKET_READ_OPERATIONS); /** Many threads for scale performance: {@value}. */ public static final int EXECUTOR_THREAD_COUNT = 64; /** * For submitting work. */ private static final ListeningExecutorService EXECUTOR = BlockingThreadPoolExecutorService.newInstance( EXECUTOR_THREAD_COUNT, EXECUTOR_THREAD_COUNT * 2, 30, TimeUnit.SECONDS, "test-operations"); /** * The number of files in a non-scaled test. * <p> * Value: {@value}. */ public static final int FILE_COUNT_NON_SCALED = 2; /** * The number of files for a scaled test. This is still * less than half the amount which can be fitted into a delete * request, so that even with this many R/W and R/O files, * both can fit in the same request. * Then, when a partial delete occurs, we can make assertions * knowing that all R/W files should have been deleted and all * R/O files rejected. * <p> * Value: {@value}. */ public static final int FILE_COUNT_SCALED = 10; public static final int DIR_COUNT = 2; public static final int DIR_COUNT_SCALED = 4; public static final int DEPTH = 2; public static final int DEPTH_SCALED = 2; public static final String PREFIX = "file-"; /** * A role FS; if non-null it is closed in teardown. */ private S3AFileSystem roleFS; /** * Base path for this test run. * This is generated uniquely for each test. */ private Path basePath; /** * A directory which restricted roles have full write access to. */ private Path writableDir; /** * A directory to which restricted roles have only read access. */ private Path readOnlyDir; /** * A file under {@link #readOnlyDir} which cannot be written or deleted. */ private Path readOnlyChild; /** * A directory to which restricted roles have no read access. */ private Path noReadDir; /** delete policy: single or multi? */ private final boolean multiDelete; /** * Configuration for the assume role FS. */ private Configuration assumedRoleConfig; private int fileCount; private int dirCount; private int dirDepth; /** * Was the -Dscale switch passed in to the test run? */ private boolean scaleTest; /** * Test array for parameterized test runs. * <ul> * <li>Run 0: single deletes</li> * <li>Run 1: multi deletes</li> * </ul> * * @return a list of parameter tuples. */ @Parameterized.Parameters(name = "bulk-delete={0}") public static Collection<Object[]> params() { return Arrays.asList(new Object[][]{ {false}, {true}, }); } /** * Constructor. * @param multiDelete single vs multi delete in the role FS? */ public ITestPartialRenamesDeletes(final boolean multiDelete) { this.multiDelete = multiDelete; } /** * This sets up a unique path for every test run, so as to guarantee isolation * from previous runs. * It creates a role policy which has read access to everything except * the contents of {@link #noReadDir}, and with write access to * {@link #writableDir}. * @throws Exception failure */ @Override public void setup() throws Exception { super.setup(); assumeRoleTests(); basePath = uniquePath(); readOnlyDir = new Path(basePath, "readonlyDir"); writableDir = new Path(basePath, "writableDir"); readOnlyChild = new Path(readOnlyDir, "child"); noReadDir = new Path(basePath, "noReadDir"); // the full FS S3AFileSystem fs = getFileSystem(); fs.delete(basePath, true); fs.mkdirs(writableDir); // create the baseline assumed role assumedRoleConfig = createAssumedRoleConfig(); bindRolePolicyStatements(assumedRoleConfig, STATEMENT_S3GUARD_CLIENT, STATEMENT_ALL_BUCKET_READ_ACCESS, // root: r-x new Statement(Effects.Allow) // dest: rwx .addActions(S3_PATH_RW_OPERATIONS) .addResources(directory(writableDir)), new Statement(Effects.Deny) // noReadDir: --x .addActions(S3_ALL_GET) .addActions(S3_ALL_PUT) .addActions(S3_ALL_DELETE) .addResources(directory(noReadDir))); // the role configured to that set of restrictions roleFS = (S3AFileSystem) readOnlyDir.getFileSystem(assumedRoleConfig); // switch to the big set of files iff this is a multidelete run // with -Dscale set. // without that the DELETE calls become a key part of the bottleneck scaleTest = multiDelete && getTestPropertyBool( getConfiguration(), KEY_SCALE_TESTS_ENABLED, DEFAULT_SCALE_TESTS_ENABLED); fileCount = scaleTest ? FILE_COUNT_SCALED : FILE_COUNT_NON_SCALED; dirCount = scaleTest ? DIR_COUNT_SCALED : DIR_COUNT; dirDepth = scaleTest ? DEPTH_SCALED : DEPTH; } @Override public void teardown() throws Exception { cleanupWithLogger(LOG, roleFS); super.teardown(); } private void assumeRoleTests() { assume("No ARN for role tests", !getAssumedRoleARN().isEmpty()); } private String getAssumedRoleARN() { return getContract().getConf().getTrimmed(ASSUMED_ROLE_ARN, ""); } /** * Create the assumed role configuration. * @return a config bonded to the ARN of the assumed role */ public Configuration createAssumedRoleConfig() { return createAssumedRoleConfig(getAssumedRoleARN()); } /** * Create a config for an assumed role; it also disables FS caching * and sets the multi delete option to that of the current mode. * @param roleARN ARN of role * @return the new configuration */ private Configuration createAssumedRoleConfig(String roleARN) { Configuration conf = newAssumedRoleConfig(getContract().getConf(), roleARN); String bucketName = getTestBucketName(conf); removeBucketOverrides(bucketName, conf, ENABLE_MULTI_DELETE); conf.setBoolean(ENABLE_MULTI_DELETE, multiDelete); return conf; } @Override protected Configuration createConfiguration() { Configuration conf = super.createConfiguration(); String bucketName = getTestBucketName(conf); // ramp up the number of connections we can have for maximum PUT // performance removeBucketOverrides(bucketName, conf, MAX_THREADS, MAXIMUM_CONNECTIONS, S3GUARD_DDB_BACKGROUND_SLEEP_MSEC_KEY); conf.setInt(MAX_THREADS, EXECUTOR_THREAD_COUNT); conf.setInt(MAXIMUM_CONNECTIONS, EXECUTOR_THREAD_COUNT * 2); // turn off prune delays, so as to stop scale tests creating // so much cruft that future CLI prune commands take forever conf.setInt(S3GUARD_DDB_BACKGROUND_SLEEP_MSEC_KEY, 0); return conf; } /** * Create a unique path, which includes method name, * multidelete flag and a random UUID. * @return a string to use for paths. * @throws IOException path creation failure. */ private Path uniquePath() throws IOException { return path( String.format("%s-%s-%04d", getMethodName(), multiDelete ? "multi" : "single", System.currentTimeMillis() % 10000)); } /** * This is here to verify role and path setup. */ @Test public void testCannotTouchUnderRODir() throws Throwable { forbidden("touching the empty child " + readOnlyChild, "", () -> { touch(roleFS, readOnlyChild); return readOnlyChild; }); } @Test public void testCannotReadUnderNoReadDir() throws Throwable { Path path = new Path(noReadDir, "unreadable.txt"); createFile(getFileSystem(), path, true, "readonly".getBytes()); forbidden("trying to read " + path, "", () -> readUTF8(roleFS, path, -1)); } @Test public void testMultiDeleteOptionPropagated() throws Throwable { describe("Verify the test parameter propagates to the store context"); StoreContext ctx = roleFS.createStoreContext(); Assertions.assertThat(ctx.isMultiObjectDeleteEnabled()) .as(ctx.toString()) .isEqualTo(multiDelete); } /** * Execute a sequence of rename operations with access locked down. */ @Test public void testRenameParentPathNotWriteable() throws Throwable { describe("rename with parent paths not writeable; multi=%s", multiDelete); final Configuration conf = createAssumedRoleConfig(); bindRolePolicyStatements(conf, STATEMENT_S3GUARD_CLIENT, STATEMENT_ALLOW_SSE_KMS_RW, STATEMENT_ALL_BUCKET_READ_ACCESS, new Statement(Effects.Allow) .addActions(S3_PATH_RW_OPERATIONS) .addResources(directory(readOnlyDir)) .addResources(directory(writableDir))); roleFS = (S3AFileSystem) readOnlyDir.getFileSystem(conf); S3AFileSystem fs = getFileSystem(); roleFS.getFileStatus(ROOT); fs.mkdirs(readOnlyDir); // you can create an adjacent child touch(fs, readOnlyChild); fs.delete(writableDir, true); // as dest doesn't exist, this will map child -> dest assertRenameOutcome(roleFS, readOnlyChild, writableDir, true); assertIsFile(writableDir); assertIsDirectory(readOnlyDir); Path renamedDestPath = new Path(readOnlyDir, writableDir.getName()); assertRenameOutcome(roleFS, writableDir, readOnlyDir, true); assertIsFile(renamedDestPath); roleFS.delete(readOnlyDir, true); roleFS.delete(writableDir, true); } @Test public void testRenameSingleFileFailsInDelete() throws Throwable { describe("rename with source read only; multi=%s", multiDelete); Path readOnlyFile = readOnlyChild; // the full FS S3AFileSystem fs = getFileSystem(); fs.delete(basePath, true); // this file is readable by the roleFS, but cannot be deleted touch(fs, readOnlyFile); roleFS.delete(writableDir, true); roleFS.mkdirs(writableDir); // rename will fail in the delete phase expectRenameForbidden(readOnlyFile, writableDir); // and the source file is still there assertIsFile(readOnlyFile); // and so is the copied version, because there's no attempt // at rollback, or preflight checking on the delete permissions Path renamedFile = new Path(writableDir, readOnlyFile.getName()); assertIsFile(renamedFile); ContractTestUtils.assertDeleted(roleFS, renamedFile, true); assertFileCount("Empty Dest Dir", roleFS, writableDir, 0); } /** * Execute a sequence of rename operations where the source * data is read only to the client calling rename(). * This will cause the inner delete() operations to fail, whose outcomes * are explored. * Multiple files are created (in parallel) for some renames, so the test * explores the outcome on bulk delete calls, including verifying that a * MultiObjectDeleteException is translated to an AccessDeniedException. * <ol> * <li>The exception raised is AccessDeniedException, * from single and multi DELETE calls.</li> * <li>It happens after the COPY. Not ideal, but, well, we can't pretend * it's a filesystem forever.</li> * </ol> */ @Test public void testRenameDirFailsInDelete() throws Throwable { describe("rename with source read only; multi=%s", multiDelete); // the full FS S3AFileSystem fs = getFileSystem(); roleFS.mkdirs(writableDir); // create a set of files // this is done in parallel as it is 10x faster on a long-haul test run. List<Path> createdFiles = createFiles(fs, readOnlyDir, dirDepth, fileCount, dirCount); // are they all there? int expectedFileCount = createdFiles.size(); assertFileCount("files ready to rename", roleFS, readOnlyDir, expectedFileCount); // try to rename the directory LOG.info("Renaming readonly files {} to {}", readOnlyDir, writableDir); AccessDeniedException deniedException = expectRenameForbidden(readOnlyDir, writableDir); if (multiDelete) { // look in that exception for a multidelete MultiObjectDeleteException mde = extractCause( MultiObjectDeleteException.class, deniedException); final List<Path> undeleted = extractUndeletedPaths(mde, fs::keyToQualifiedPath); Assertions.assertThat(undeleted) .as("files which could not be deleted") .hasSize(expectedFileCount) .containsAll(createdFiles) .containsExactlyInAnyOrderElementsOf(createdFiles); } LOG.info("Result of renaming read-only files is as expected", deniedException); assertFileCount("files in the source directory", roleFS, readOnlyDir, expectedFileCount); // now lets look at the destination. // even with S3Guard on, we expect the destination to match that of our // the remote state. // the test will exist describe("Verify destination directory exists"); FileStatus st = roleFS.getFileStatus(writableDir); assertTrue("Not a directory: " + st, st.isDirectory()); assertFileCount("files in the dest directory", roleFS, writableDir, expectedFileCount); } @Test public void testRenameFileFailsNoWrite() throws Throwable { describe("Try to rename to a write-only destination fails with src" + " & dest unchanged."); roleFS.mkdirs(writableDir); S3AFileSystem fs = getFileSystem(); Path source = new Path(writableDir, "source"); touch(fs, source); fs.mkdirs(readOnlyDir); Path dest = new Path(readOnlyDir, "dest"); describe("Renaming files {} to {}", writableDir, dest); // rename fails but doesn't raise an exception. Good or bad? expectRenameForbidden(source, dest); assertIsFile(source); assertPathDoesNotExist("rename destination", dest); } @Test public void testCopyDirFailsToReadOnlyDir() throws Throwable { describe("Try to copy to a read-only destination"); roleFS.mkdirs(writableDir); S3AFileSystem fs = getFileSystem(); List<Path> files = createFiles(fs, writableDir, dirDepth, fileCount, dirCount); fs.mkdirs(readOnlyDir); Path dest = new Path(readOnlyDir, "dest"); expectRenameForbidden(writableDir, dest); assertPathDoesNotExist("rename destination", dest); assertFileCount("files in the source directory", roleFS, writableDir, files.size()); } @Test public void testCopyFileFailsOnSourceRead() throws Throwable { describe("The source file isn't readable, so the COPY fails"); Path source = new Path(noReadDir, "source"); S3AFileSystem fs = getFileSystem(); touch(fs, source); fs.mkdirs(writableDir); Path dest = new Path(writableDir, "dest"); expectRenameForbidden(source, dest); assertIsFile(source); assertPathDoesNotExist("rename destination", dest); } @Test public void testCopyDirFailsOnSourceRead() throws Throwable { describe("The source file isn't readable, so the COPY fails"); S3AFileSystem fs = getFileSystem(); List<Path> files = createFiles(fs, noReadDir, dirDepth, fileCount, dirCount); fs.mkdirs(writableDir); Path dest = new Path(writableDir, "dest"); expectRenameForbidden(noReadDir, dest); assertFileCount("files in the source directory", fs, noReadDir, files.size()); } /** * Have a directory with full R/W permissions, but then remove * write access underneath, and try to delete it. * This verifies that failures in the delete fake dir stage. * are not visible. */ @Test public void testPartialEmptyDirDelete() throws Throwable { describe("delete an empty directory with parent dir r/o" + " multidelete=%s", multiDelete); // the full FS final Path deletableChild = new Path(writableDir, "deletableChild"); // deletable child is created. roleFS.mkdirs(deletableChild); assertPathExists("parent dir after create", writableDir); assertPathExists("grandparent dir after create", writableDir.getParent()); // now delete it. roleFS.delete(deletableChild, true); assertPathExists("parent dir after deletion", writableDir); assertPathExists("grandparent dir after deletion", writableDir.getParent()); assertPathDoesNotExist("deletable dir after deletion", deletableChild); } /** * Have a directory with full R/W permissions, but then remove * write access underneath, and try to delete it. */ @Test public void testPartialDirDelete() throws Throwable { describe("delete with part of the child tree read only;" + " multidelete=%s", multiDelete); // the full FS S3AFileSystem fs = getFileSystem(); List<Path> readOnlyFiles = createFiles(fs, readOnlyDir, dirDepth, fileCount, dirCount); List<Path> deletableFiles = createFiles(fs, writableDir, dirDepth, fileCount, dirCount); // as a safety check, verify that one of the deletable files can be deleted Path head = deletableFiles.remove(0); assertTrue("delete " + head + " failed", roleFS.delete(head, false)); List<Path> allFiles = Stream.concat( readOnlyFiles.stream(), deletableFiles.stream()) .collect(Collectors.toList()); // this set can be deleted by the role FS MetricDiff rejectionCount = new MetricDiff(roleFS, FILES_DELETE_REJECTED); MetricDiff deleteVerbCount = new MetricDiff(roleFS, OBJECT_DELETE_REQUESTS); describe("Trying to delete read only directory"); AccessDeniedException ex = expectDeleteForbidden(readOnlyDir); if (multiDelete) { // multi-delete status checks extractCause(MultiObjectDeleteException.class, ex); rejectionCount.assertDiffEquals("Wrong rejection count", readOnlyFiles.size()); deleteVerbCount.assertDiffEquals("Wrong delete count", 1); reset(rejectionCount, deleteVerbCount); } // all the files are still there? (avoid in scale test due to cost) if (!scaleTest) { readOnlyFiles.forEach(this::pathMustExist); } describe("Trying to delete upper-level directory"); ex = expectDeleteForbidden(basePath); if (multiDelete) { // multi-delete status checks extractCause(MultiObjectDeleteException.class, ex); deleteVerbCount.assertDiffEquals("Wrong delete count", 1); MultiObjectDeleteException mde = extractCause( MultiObjectDeleteException.class, ex); final List<Path> undeleted = removeUndeletedPaths(mde, allFiles, fs::keyToQualifiedPath); Assertions.assertThat(undeleted) .as("files which could not be deleted") .containsExactlyInAnyOrderElementsOf(readOnlyFiles); Assertions.assertThat(allFiles) .as("files which were deleted") .containsExactlyInAnyOrderElementsOf(deletableFiles); rejectionCount.assertDiffEquals("Wrong rejection count", readOnlyFiles.size()); } reset(rejectionCount, deleteVerbCount); // build the set of all paths under the directory tree through // a directory listing (i.e. not getFileStatus()). // small risk of observed inconsistency here on unguarded stores. final Set<Path> readOnlyListing = listFilesUnderPath(readOnlyDir, true); String directoryList = readOnlyListing.stream() .map(Path::toString) .collect(Collectors.joining(", ", "[", "]")); Assertions.assertThat(readOnlyListing) .as("ReadOnly directory " + directoryList) .containsAll(readOnlyFiles); } /** * Expect the delete() call to fail. * @param path path to delete. * @return the expected exception. * @throws Exception any other failure. */ private AccessDeniedException expectDeleteForbidden(Path path) throws Exception { try (DurationInfo ignored = new DurationInfo(LOG, true, "delete %s", path)) { return forbidden("Expected an error deleting " + path, "", () -> { boolean r = roleFS.delete(path, true); return " delete=" + r + " " + ls(path.getParent()); }); } } /** * Expect that a rename will fail with an exception using the roleFS. * @param src source * @param dest dest * @return the exception raised. * @throws Exception any other failure */ private AccessDeniedException expectRenameForbidden(Path src, Path dest) throws Exception { try (DurationInfo ignored = new DurationInfo(LOG, true, "rename(%s, %s)", src, dest)) { return forbidden( "Renaming " + src + " to " + dest, "", () -> { boolean result = roleFS.rename(src, dest); LOG.error("Rename should have been forbidden but returned {}", result); LOG.error("Source directory:\n{}", ContractTestUtils.ls(getFileSystem(), src.getParent())); LOG.error("Destination directory:\n{}", ContractTestUtils.ls(getFileSystem(), src.getParent())); return "Rename unexpectedly returned " + result; }); } } /** * Assert that a path must exist, map IOEs to RTEs for loops. * @param p path. */ private void pathMustExist(Path p) { eval(() -> assertPathExists("Missing path", p)); } /** * List all files under a path. * @param path path to list * @param recursive recursive listing? * @return an unordered set of the paths. * @throws IOException failure */ private Set<Path> listFilesUnderPath(Path path, boolean recursive) throws IOException { Set<Path> files = new TreeSet<>(); try (DurationInfo ignore = new DurationInfo(LOG, "ls -R %s", path)) { applyLocatedFiles(getFileSystem().listFiles(path, recursive), (status) -> files.add(status.getPath())); } return files; } /** * Write the text to a file asynchronously. Logs the operation duration. * @param fs filesystem * @param path path * @return future to the patch created. */ private static CompletableFuture<Path> put(FileSystem fs, Path path, String text) { return submit(EXECUTOR, () -> { try (DurationInfo ignore = new DurationInfo(LOG, false, "Creating %s", path)) { createFile(fs, path, true, text.getBytes(Charsets.UTF_8)); return path; } }); } /** * Parallel-touch a set of files in the destination directory. * @param fs filesystem * @param destDir destination * @param depth file depth * @param fileCount number of files to create. * @param dirCount number of dirs to create at each level * @return the list of files created. */ public static List<Path> createFiles(final FileSystem fs, final Path destDir, final int depth, final int fileCount, final int dirCount) throws IOException { List<CompletableFuture<Path>> futures = new ArrayList<>(fileCount); List<Path> paths = new ArrayList<>(fileCount); List<Path> dirs = new ArrayList<>(fileCount); buildPaths(paths, dirs, destDir, depth, fileCount, dirCount); try (DurationInfo ignore = new DurationInfo(LOG, "Creating %d files", fileCount)) { for (Path path : paths) { futures.add(put(fs, path, path.getName())); } waitForCompletion(futures); return paths; } } /** * Recursive method to build up lists of files and directories. * @param filePaths list of file paths to add entries to. * @param dirPaths list of directory paths to add entries to. * @param destDir destination directory. * @param depth depth of directories * @param fileCount number of files. * @param dirCount number of directories. */ private static void buildPaths( final List<Path> filePaths, final List<Path> dirPaths, final Path destDir, final int depth, final int fileCount, final int dirCount) { if (depth<=0) { return; } // create the file paths for (int i = 0; i < fileCount; i++) { String name = PREFIX + i; Path p = new Path(destDir, name); filePaths.add(p); } for (int i = 0; i < dirCount; i++) { String name = "dir-" + i; Path p = new Path(destDir, name); dirPaths.add(p); buildPaths(filePaths, dirPaths, p, depth - 1, fileCount, dirCount); } } }
[ "stevel@cloudera.com" ]
stevel@cloudera.com
bb11eb279a4371db6e3cc945a3bc81ef3485c8be
562689f6b88951b0b0c929256070fc39c4eddce3
/mobile/src/main/java/com/zkjinshi/superservice/adapter/FacePageAdapter.java
bfc1e3182e7d49e05d977622a75d99f2383a9bf1
[]
no_license
zkjs/SuperService-Android
0fb54c87f623bf07bd07b2b31538175d44982b53
d10529bf9532241b97e4f458d08501645818f08b
refs/heads/master
2021-01-19T17:36:40.355715
2016-09-07T02:52:47
2016-09-07T02:52:47
42,839,092
0
0
null
null
null
null
UTF-8
Java
false
false
3,611
java
package com.zkjinshi.superservice.adapter; import android.os.Parcelable; import android.support.v4.view.PagerAdapter; import android.support.v4.view.ViewPager; import android.view.View; import android.view.ViewGroup; import com.zkjinshi.superservice.view.JazzyViewPager; import java.util.List; /** * 表情栏PageView管理器 * 开发者:JimmyZhang * 日期:2015/08/03 * Copyright (C) 2015 深圳中科金石科技有限公司 * 版权所有 */ public class FacePageAdapter extends PagerAdapter { // 界面列表 private List<View> views; private JazzyViewPager viewPager; public FacePageAdapter(List<View> lv, JazzyViewPager viewPager) { super(); this.views = lv; this.viewPager = viewPager; // TODO Auto-generated constructor stub } @Override public int getCount() { if (views != null) { return views.size(); } return 0; } @Override public void destroyItem(View container, int position, Object object) { // TODO Auto-generated method stub ((ViewPager) container).removeView(views.get(position)); } @Override public void destroyItem(ViewGroup container, int position, Object object) { // TODO Auto-generated method stub super.destroyItem(container, position, object); } @SuppressWarnings("deprecation") @Override public void finishUpdate(View container) { // TODO Auto-generated method stub super.finishUpdate(container); } @Override public void finishUpdate(ViewGroup container) { // TODO Auto-generated method stub super.finishUpdate(container); } @Override public int getItemPosition(Object object) { // TODO Auto-generated method stub return super.getItemPosition(object); } @Override public CharSequence getPageTitle(int position) { // TODO Auto-generated method stub return super.getPageTitle(position); } @Override public float getPageWidth(int position) { // TODO Auto-generated method stub return super.getPageWidth(position); } @Override public Object instantiateItem(View container, int position) { ((ViewPager) container).addView(views.get(position), 0); viewPager.setObjectForPosition(views.get(position), position);// 这句很重要,没有这句就没有效果 return views.get(position); } @Override public Object instantiateItem(ViewGroup container, int position) { // TODO Auto-generated method stub return super.instantiateItem(container, position); } @Override public void notifyDataSetChanged() { // TODO Auto-generated method stub super.notifyDataSetChanged(); } @Override public void restoreState(Parcelable state, ClassLoader loader) { // TODO Auto-generated method stub super.restoreState(state, loader); } @Override public Parcelable saveState() { // TODO Auto-generated method stub return super.saveState(); } @SuppressWarnings("deprecation") @Override public void setPrimaryItem(View container, int position, Object object) { // TODO Auto-generated method stub super.setPrimaryItem(container, position, object); } @Override public void setPrimaryItem(ViewGroup container, int position, Object object) { // TODO Auto-generated method stub super.setPrimaryItem(container, position, object); } @SuppressWarnings("deprecation") @Override public void startUpdate(View container) { // TODO Auto-generated method stub super.startUpdate(container); } @Override public void startUpdate(ViewGroup container) { // TODO Auto-generated method stub super.startUpdate(container); } @Override public boolean isViewFromObject(View arg0, Object arg1) { // TODO Auto-generated method stub return (arg0 == arg1); } }
[ "jimmyzhang144@gmail.com" ]
jimmyzhang144@gmail.com
adf9322d8d613abad97c9d62327e62f7d5842425
1a50414163ef0cf9f20df7bcbeca074a7de80b2e
/src/main/java/com/googlecode/jdeltasync/InMemoryStore.java
d22082336a4dab97c6db25bb2b965dfc186bf7bf
[]
no_license
ScottDennison/jdeltasync
15c65b099815b1859c3de1de1f9e5af739972fdb
ba269c4b1b992d7df6c22b288445a7e10d8ac80c
refs/heads/master
2021-01-18T11:21:31.849764
2015-12-03T14:14:54
2015-12-03T14:14:54
12,891,435
0
0
null
null
null
null
UTF-8
Java
false
false
1,163
java
/* * Copyright (c) 2012, the JDeltaSync project. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.googlecode.jdeltasync; import java.util.HashMap; import java.util.Map; /** * Simple {@link Store} implementation which saves the data in memory only. */ public class InMemoryStore extends AbstractStore { private Map<String, State> states = new HashMap<String, State>(); protected State getState(String username) { State state = states.get(username); if (state == null) { state = new State(); states.put(username, state); } return state; } }
[ "niklas@therning.org" ]
niklas@therning.org
d591be588439e1b369b2ddb4a3afb04a649b343b
a5e8fc062efa8230453ff871aed4fb2cc71478d0
/src/com/galdovich/task2/dao/DAOFactory.java
eda6068e3760162090482966b362a9b8f116ddb4
[]
no_license
galdovich/JWD2_Task2
dcc37d781c2ff52cc131cc53728ccdf7b8c0220a
4c93ea26482dbc0a616f5f4ecb1540724d9be055
refs/heads/master
2022-12-21T11:49:56.817064
2020-09-11T05:47:54
2020-09-11T05:47:54
294,488,638
0
0
null
null
null
null
UTF-8
Java
false
false
416
java
package com.galdovich.task2.dao; import com.galdovich.task2.dao.impl.TextDAOImpl; public final class DAOFactory { private static final DAOFactory instance = new DAOFactory(); private static TextDAO textDAO = new TextDAOImpl(); private DAOFactory() { } public static DAOFactory getInstance() { return instance; } public TextDAO getTextDAO() { return textDAO; } }
[ "galdovich95@gmail.com" ]
galdovich95@gmail.com
71cf832e7b9dcfe9be8e5262910dc5743a58d0f5
a41a34586d47bcd95ef851e078b695954fc74ba5
/src/com/projectmanagementtracker/Project.java
33661b601670e1440d759b5739c921adf18f0ca9
[]
no_license
oluwajobaadegboye/Project-Management-Tracker
e63b1b2392ffa2cb9704760a1461fb50be2d34cc
c11478b9b57a4f5b6998d7f88f6e0d0f16ecd889
refs/heads/master
2020-03-18T21:32:25.455408
2018-05-29T20:17:41
2018-05-29T20:17:41
135,285,680
0
0
null
null
null
null
UTF-8
Java
false
false
695
java
package com.projectmanagementtracker; import java.util.List; public class Project { private String name; private String manager; private List<String> releases; public Project(String name, String manager, List<String> releases) { super(); this.name = name; this.manager = manager; this.releases = releases; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getManager() { return manager; } public void setManager(String manager) { this.manager = manager; } public List<String> getReleases() { return releases; } public void setReleases(List<String> releases) { this.releases = releases; } }
[ "oluwajobaadegboye@hotmail.com" ]
oluwajobaadegboye@hotmail.com
65b7f7bba72091c34870e13e505b11c0b8524271
72c66f6a75932bcb41f4b850bda9564ba3980bff
/capstone/build/generated/src/org/apache/jsp/Admin_jsp.java
c6685df6f8573688e67f53dedae5d95a11c0e770
[]
no_license
gvnikhil008/Fetch-n-Share
3b0868d7ec496b46108148dfc47d072bf468055f
c882fd64980fa47cd0778afea6070183242a6771
refs/heads/master
2023-01-11T19:03:54.246436
2020-11-17T14:26:26
2020-11-17T14:26:26
299,673,536
0
0
null
null
null
null
UTF-8
Java
false
false
10,518
java
package org.apache.jsp; import javax.servlet.*; import javax.servlet.http.*; import javax.servlet.jsp.*; public final class Admin_jsp extends org.apache.jasper.runtime.HttpJspBase implements org.apache.jasper.runtime.JspSourceDependent { private static final JspFactory _jspxFactory = JspFactory.getDefaultFactory(); private static java.util.List<String> _jspx_dependants; private org.glassfish.jsp.api.ResourceInjector _jspx_resourceInjector; public java.util.List<String> getDependants() { return _jspx_dependants; } public void _jspService(HttpServletRequest request, HttpServletResponse response) throws java.io.IOException, ServletException { PageContext pageContext = null; HttpSession session = null; ServletContext application = null; ServletConfig config = null; JspWriter out = null; Object page = this; JspWriter _jspx_out = null; PageContext _jspx_page_context = null; try { response.setContentType("text/html;charset=UTF-8"); pageContext = _jspxFactory.getPageContext(this, request, response, null, true, 8192, true); _jspx_page_context = pageContext; application = pageContext.getServletContext(); config = pageContext.getServletConfig(); session = pageContext.getSession(); out = pageContext.getOut(); _jspx_out = out; _jspx_resourceInjector = (org.glassfish.jsp.api.ResourceInjector) application.getAttribute("com.sun.appserv.jsp.resource.injector"); out.write("\n"); out.write("<!DOCTYPE html>\n"); out.write("<html>\n"); out.write(" <head>\n"); out.write(" <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n"); out.write(" <title>Towards</title>\n"); out.write("<meta charset=\"utf-8\">\n"); out.write("<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n"); out.write("<link href=\"layout/styles/layout.css\" rel=\"stylesheet\" type=\"text/css\" media=\"all\">\n"); out.write("<!--===============================================================================================-->\n"); out.write("\t<link rel=\"stylesheet\" type=\"text/css\" href=\"vendor/bootstrap/css/bootstrap.min.css\">\n"); out.write("<!--===============================================================================================-->\n"); out.write("\t<link rel=\"stylesheet\" type=\"text/css\" href=\"fonts/font-awesome-4.7.0/css/font-awesome.min.css\">\n"); out.write("<!--===============================================================================================-->\n"); out.write("\t<link rel=\"stylesheet\" type=\"text/css\" href=\"fonts/iconic/css/material-design-iconic-font.min.css\">\n"); out.write("<!--===============================================================================================-->\n"); out.write("\t<link rel=\"stylesheet\" type=\"text/css\" href=\"vendor/animate/animate.css\">\n"); out.write("<!--===============================================================================================-->\t\n"); out.write("\t<link rel=\"stylesheet\" type=\"text/css\" href=\"vendor/css-hamburgers/hamburgers.min.css\">\n"); out.write("<!--===============================================================================================-->\n"); out.write("\t<link rel=\"stylesheet\" type=\"text/css\" href=\"vendor/animsition/css/animsition.min.css\">\n"); out.write("<!--===============================================================================================-->\n"); out.write("\t<link rel=\"stylesheet\" type=\"text/css\" href=\"vendor/select2/select2.min.css\">\n"); out.write("<!--===============================================================================================-->\t\n"); out.write("\t<link rel=\"stylesheet\" type=\"text/css\" href=\"vendor/daterangepicker/daterangepicker.css\">\n"); out.write("<!--===============================================================================================-->\n"); out.write("\t<link rel=\"stylesheet\" type=\"text/css\" href=\"css/util.css\">\n"); out.write("\t<link rel=\"stylesheet\" type=\"text/css\" href=\"css/main.css\">\n"); out.write("<!--===============================================================================================-->\n"); out.write(" </head>\n"); out.write("<body id=\"top\">\n"); out.write(" <div class=\"wrapper row1\">\n"); out.write(" <header id=\"header\" class=\"hoc clear\"> \n"); out.write(" \n"); out.write(" <div id=\"logo\" style=\"align-content: center\">\n"); out.write(" <center> <h3 style=\"font-family: Poppins-Regular;font-size: 24px; padding: 20px;\"><a style=\"text-decoration: none; \" href=\"index.html\" >Fetch n Share</a></h3></center>\n"); out.write(" </div>\n"); out.write(" </header>\n"); out.write("</div>\n"); out.write(" \n"); out.write(" <div class=\"wrapper row2\" >\n"); out.write(" <nav id=\"mainav\" class=\"hoc clear\"> \n"); out.write(" <ul class=\"clear\" style=\"float: center\">\n"); out.write(" <li><a style=\"text-decoration: none;\" href=\"index.html\">Home</a></li>\n"); out.write(" <li><a style=\"text-decoration: none;\" href=\"osignin.jsp\">Data Owner</a></li>\n"); out.write(" <li><a style=\"text-decoration: none;\" href=\"usignin.jsp\">Data User</a></li>\n"); out.write(" <li class=\"active\"><a href=\"Admin.jsp\">Admin</a></li>\n"); out.write(" </ul> \n"); out.write(" </nav>\n"); out.write("</div>\n"); out.write(" <div style=\"background-image: url(images/admin.png); background-repeat:no-repeat; background-position:center; background-size:cover;\">\n"); out.write(" <div>\n"); out.write(" <center> <br> <br><br><br>\n"); out.write(" <h1 style=\"color:whitesmoke\"></h1> <br> <div class=\"wrap-login100\" >\n"); out.write(" <form id=\"verify\" action=\"Adminverify.jsp\" method=\"post\">\n"); out.write(" <div class=\"wrap-input100 validate-input\">\n"); out.write("\t\t\t\t\t\t<input class=\"input100\" type=\"text\" name=\"Username\">\n"); out.write("\t\t\t\t\t\t<span class=\"focus-input100\" data-placeholder=\"Username\"></span>\n"); out.write("\t\t\t\t\t</div>\n"); out.write(" <div class=\"wrap-input100 validate-input\">\n"); out.write(" <span class=\"focus-input100\" data-placeholder=\"Password\"></span>\n"); out.write(" <input class=\"input100\" type=\"password\" name=\"Password\">\n"); out.write("\t\t\t\t\t</div>\n"); out.write(" <div class=\"container-login100-form-btn\">\n"); out.write("\t\t\t\t\t\t<div class=\"wrap-login100-form-btn\">\n"); out.write("\t\t\t\t\t\t\t<div class=\"login100-form-bgbtn\"></div>\n"); out.write(" <button type=\"submit\" form=\"verify\" class=\"login100-form-btn\">\n"); out.write(" Sign In\n"); out.write(" </button>\n"); out.write("\t\t\t\t\t\t</div>\n"); out.write("\t\t\t\t\t</div>\n"); out.write("\t\t\t\t\t</form>\n"); out.write("\t\t\t\t\t\n"); out.write(" <br>\n"); out.write("\n"); out.write(" \n"); out.write("\t\t\t\t\n"); out.write("\t\t\t</div>\n"); out.write(" \n"); out.write(" </center>\n"); out.write(" <br> <br><br><br>\n"); out.write(" </div>\n"); out.write(" <div id=\"copyright\" class=\"hoc clear\"> \n"); out.write("\n"); out.write(" </div>\n"); out.write(" </div>\n"); out.write(" <div class=\"wrapper row5\">\n"); out.write(" \n"); out.write("</div>\n"); out.write("<a id=\"backtotop\" href=\"#top\"><i class=\"fa fa-chevron-up\"></i></a>\n"); out.write("\n"); out.write("<!--===============================================================================================-->\n"); out.write("\t<script src=\"vendor/jquery/jquery-3.2.1.min.js\"></script>\n"); out.write("<!--===============================================================================================-->\n"); out.write("\t<script src=\"vendor/animsition/js/animsition.min.js\"></script>\n"); out.write("<!--===============================================================================================-->\n"); out.write("\t<script src=\"vendor/bootstrap/js/popper.js\"></script>\n"); out.write("\t<script src=\"vendor/bootstrap/js/bootstrap.min.js\"></script>\n"); out.write("<!--===============================================================================================-->\n"); out.write("\t<script src=\"vendor/select2/select2.min.js\"></script>\n"); out.write("<!--===============================================================================================-->\n"); out.write("\t<script src=\"vendor/daterangepicker/moment.min.js\"></script>\n"); out.write("\t<script src=\"vendor/daterangepicker/daterangepicker.js\"></script>\n"); out.write("<!--===============================================================================================-->\n"); out.write("\t<script src=\"vendor/countdowntime/countdowntime.js\"></script>\n"); out.write("<!--===============================================================================================-->\n"); out.write("\t<script src=\"js/main.js\"></script>\n"); out.write("</body>\n"); out.write(" </html>"); } catch (Throwable t) { if (!(t instanceof SkipPageException)){ out = _jspx_out; if (out != null && out.getBufferSize() != 0) out.clearBuffer(); if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); else throw new ServletException(t); } } finally { _jspxFactory.releasePageContext(_jspx_page_context); } } }
[ "54838533+gvnikhil008@users.noreply.github.com" ]
54838533+gvnikhil008@users.noreply.github.com
7114bc4e84c5f51f34a636f7111e6f6606032725
441b16d5861b8239644007c3b64d56bdfd67bb92
/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/sql/WithClause.java
7401bb95470be264a886681f96eac7dc62d29052
[]
no_license
sec00/osee-4
baf9713306c7bfd6f5a12a153acb083bbdb2ce77
4644522f12d0e2a887434d09dffa55d32ed45f15
refs/heads/master
2021-05-19T04:04:07.608109
2018-11-15T23:29:55
2018-11-15T23:31:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
750
java
/******************************************************************************* * Copyright (c) 2013 Boeing. * 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: * Boeing - initial API and implementation *******************************************************************************/ package org.eclipse.osee.orcs.db.internal.sql; /** * @author John R. Misinco */ public interface WithClause { String getName(); String getBody(); String getParameters(); boolean isRecursive(); boolean hasParameters(); }
[ "roberto.e.escobar@boeing.com" ]
roberto.e.escobar@boeing.com
aebe24d6ca9e0a1a53c3ead350eac43bafeb5b0e
252b8c528a91e066887ae47d3e8ab3085fbd6f4b
/src/main/java/org/cafebabe/view/editor/componentlist/IComponentProducer.java
4924199a47968ca6e42aba3feceb42fd29a377e2
[]
no_license
pilino1234/OpenLogicGateSimulator
2ed7b2366e94510361e9d41aa0b4cc4a3b5216db
596cb4ffb9a4d2588c606609157a5389d4d23bbf
refs/heads/master
2020-05-24T15:56:27.844489
2018-11-22T10:59:40
2018-11-22T11:30:22
null
0
0
null
null
null
null
UTF-8
Java
false
false
164
java
package org.cafebabe.view.editor.componentlist; public interface IComponentProducer { String getIdentifier(); double getWidth(); double getHeight(); }
[ "pilino1234@users.noreply.github.com" ]
pilino1234@users.noreply.github.com
74010d4ea4f9b33be9ea836426b9ea677b38f19f
ba744bfb03921a0c6cc974fcecebd160ee7d12e8
/drlang/src/main/java/com/my/compiler/drlang/Error.java
42844ed15f3e015f6a66b4e7b2e40faa30ad8e23
[]
no_license
rlangdon95/drlang
9d256031ac082c5394474c59b0b87edeb4ad0212
4547934609b12397e03c3dc0c349cf2ed200307f
refs/heads/master
2021-07-23T22:34:47.664786
2019-12-24T10:52:14
2019-12-24T10:52:14
224,386,129
0
0
null
2020-10-13T17:46:59
2019-11-27T08:52:48
Java
UTF-8
Java
false
false
723
java
package com.my.compiler.drlang; public class Error { public static void drlerror(int exit_code, String message) { System.err.println(message); System.exit(exit_code); } public static void drlerror(int exit_code, String ... message) { for (String x : message) System.err.print(x); System.err.println(); System.exit(exit_code); } public static void drlerror(String message, Exception ex, int exit_code) { System.err.println(message); ex.printStackTrace(); System.exit(exit_code); } public static void drlerror(int exit_code, Exception ex, String ... message) { for (String x : message) System.err.print(x); System.err.println(); ex.printStackTrace(); System.exit(exit_code); } }
[ "am250135@teradata.com" ]
am250135@teradata.com
acba62980d291577a1c53fcc38c76bfb8ce87a00
71007018bfae36117fd2f779dbe6e6d7bb9bde9c
/src/main/java/com/magento/test/dao/SearchQueryDao.java
8b154014206f3f06ce577fb585a428ff4c6af893
[]
no_license
gmai2006/magentotest
819201760b720a90d55ef853be964651ace125ac
ca67d16d6280ddaefbf57fa1129b6ae7bd80408f
refs/heads/main
2023-09-03T05:14:27.788984
2021-10-17T06:25:09
2021-10-17T06:25:09
418,040,494
0
0
null
null
null
null
UTF-8
Java
false
false
1,798
java
/** * %% Copyright (C) 2021 DataScience 9 LLC %% 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 * * <p>http://www.apache.org/licenses/LICENSE-2.0 * * <p>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. #L% * * <p>This code is 100% AUTO generated. Please do not modify it DIRECTLY If you need new features or * function or changes please update the templates then submit the template through our web * interface. */ package com.magento.test.dao; import java.util.List; import com.magento.test.entity.SearchQuery; import com.magento.test.entity.SearchQueryId; public interface SearchQueryDao { /** * Retrieve all records SearchQuery. * * @param maxResult a maximum number of returned records. * @return A list of SearchQuery */ public List<SearchQuery> select(int maxResult); /** * Retrieve all records SearchQuery. * * @return A list of SearchQuery */ public List<SearchQuery> selectAll(); /** * Find an entity. * * @param id An SearchQuery id. * @return The same SearchQuery. */ public SearchQuery find(SearchQueryId id); /** * Create an SearchQuery. * * @param e the SearchQuery. * @return The same SearchQuery. */ public SearchQuery create(SearchQuery e); /** * Update the SearchQuery. * * @param e the SearchQuery. * @return The same SearchQuery. */ public SearchQuery update(SearchQuery e); }
[ "gmai2006@gmail.com" ]
gmai2006@gmail.com
644d0da3ca3e4b1dc32a69d2920d12303fac30d4
4a5f24baf286458ddde8658420faf899eb22634b
/aws-java-sdk-iot/src/main/java/com/amazonaws/services/iot/model/InvalidQueryException.java
14e7e2ab308c9201d71ede56447d2cd9d152f465
[ "Apache-2.0" ]
permissive
gopinathrsv/aws-sdk-java
c2876eaf019ac00714724002d91d18fadc4b4a60
97b63ab51f2e850d22e545154e40a33601790278
refs/heads/master
2021-05-14T17:18:16.335069
2017-12-29T19:49:30
2017-12-29T19:49:30
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,168
java
/* * Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file 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.amazonaws.services.iot.model; import javax.annotation.Generated; /** * <p> * The query is invalid. * </p> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class InvalidQueryException extends com.amazonaws.services.iot.model.AWSIotException { private static final long serialVersionUID = 1L; /** * Constructs a new InvalidQueryException with the specified error message. * * @param message * Describes the error encountered. */ public InvalidQueryException(String message) { super(message); } }
[ "" ]
060bdd6b5460e5d4017f079a950b338fd1d215a5
f0cf130d5d4f7510ffb99ac80d8e519da5855176
/src/main/java/com/food/app/repository/RestaurantRespository.java
bc6e6915cb3117becbfbfe98f8ef0d85d8cf45dc
[]
no_license
sumitkumarsah22/fooddeliverysystem
df650677efaa0c1b36eed6008697e0317994d42e
0c2e9089dd5fe5b24d60ab4e07d95f3614bb72b9
refs/heads/master
2022-11-27T07:07:28.723206
2020-08-04T10:32:17
2020-08-04T10:32:17
null
0
0
null
null
null
null
UTF-8
Java
false
false
575
java
package com.food.app.repository; import java.util.List; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.CrudRepository; import org.springframework.stereotype.Repository; import com.food.app.entity.RestaurantEntity; @Repository public interface RestaurantRespository extends CrudRepository<RestaurantEntity, Integer>{ List<RestaurantEntity> findByNameContaining(String name); List<RestaurantEntity> findByCity(String city); // @Query("SELECT DISTINCT r.city FROM Restaurant r") // List<String> findDistinctCity(); }
[ "sumitkumarsam22@gmail.com" ]
sumitkumarsam22@gmail.com
cf93b45b6b05bc1e01506bf860fcdc7a55eaa01b
21d8b8665162b23b590222b0d1d19d1a824a790e
/core/camel-support/src/main/java/org/apache/camel/support/startup/LoggingStartupStepRecorder.java
3c73db0dfc18813e1ee336c3a5cfb0374a2cf052
[ "Apache-2.0", "LicenseRef-scancode-unknown" ]
permissive
jmcabandara/camel
62a023ea7f0411f349a8cf991038eca5685e0d13
17c7bb2949b0c32ba095672bb99d64f19c924235
refs/heads/main
2023-06-21T00:42:13.793646
2021-07-30T14:03:24
2021-07-30T14:03:30
391,157,772
2
0
Apache-2.0
2021-07-30T18:25:07
2021-07-30T18:25:06
null
UTF-8
Java
false
false
2,166
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.camel.support.startup; import java.util.Arrays; import org.apache.camel.StartupStep; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Logging {@link org.apache.camel.spi.StartupStepRecorder} that outputs to log. */ public class LoggingStartupStepRecorder extends DefaultStartupStepRecorder { private static final Logger LOG = LoggerFactory.getLogger(LoggingStartupStepRecorder.class); public LoggingStartupStepRecorder() { setEnabled(true); } protected void onEndStep(StartupStep step) { if (LOG.isInfoEnabled()) { long delta = System.currentTimeMillis() - step.getBeginTime(); String pad = padString(step.getLevel()); String out = String.format("%s", pad + step.getType()); String out2 = String.format("%6s ms", delta); String out3 = String.format("%s(%s)", step.getDescription(), step.getName()); LOG.info("{} : {} - {}", out2, out, out3); } } public static String padString(int level) { if (level == 0) { return ""; } else { byte[] arr = new byte[level * 2]; byte space = ' '; Arrays.fill(arr, space); return new String(arr); } } @Override public String toString() { return "logging"; } }
[ "claus.ibsen@gmail.com" ]
claus.ibsen@gmail.com
83518097c2ec53c5833f70819fc6431e970faac3
b2479d4764b148d3d174b423d02d6a4e5c4ada9d
/Server/src/main/java/br/com/orcafacil/server/util/UniqId.java
1a38174d0ea1f8db3c980150afa9966828776a6c
[]
no_license
robsonperassoli/orca-facil
d09986a563eae6fb63f58bc11a33b7b47b5484f6
20eb2cc9e5130cc53b3424545bb5398d5f37e3f6
refs/heads/master
2022-06-21T13:04:38.284613
2012-06-26T13:05:40
2012-06-26T13:05:40
4,752,987
1
0
null
2022-06-17T01:54:54
2012-06-22T15:59:17
Java
UTF-8
Java
false
false
4,830
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 br.com.orcafacil.server.util; import java.io.IOException; import java.net.InetAddress; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.security.SecureRandom; import java.util.Random; import java.util.concurrent.atomic.AtomicLong; import java.util.concurrent.locks.ReentrantLock; /** * 可以生成唯一的ID,16个字节,128位。同时提供了一些工具方法。 * * @author huangshang (yuexuqiang at gmail.com) * */ public class UniqId { private static char[] digits = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' }; private static UniqId me = new UniqId(); private String hostAddr; private Random random = new SecureRandom(); private MessageDigest mHasher; private UniqTimer timer = new UniqTimer(); private ReentrantLock opLock = new ReentrantLock(); private UniqId() { try { InetAddress addr = InetAddress.getLocalHost(); hostAddr = addr.getHostAddress(); } catch (IOException e) { hostAddr = String.valueOf(System.currentTimeMillis()); } if (null == hostAddr || hostAddr.trim().length() == 0 || "127.0.0.1".equals(hostAddr)) { hostAddr = String.valueOf(System.currentTimeMillis()); } try { mHasher = MessageDigest.getInstance("MD5"); } catch (NoSuchAlgorithmException nex) { mHasher = null; } } /** * 获取UniqID实例 * @return UniqId */ public static UniqId getInstance() { return me; } /** * 获得不会重复的毫秒数 * @return 不会重复的时间 */ public long getUniqTime() { return timer.getCurrentTime(); } /** * 获得UniqId * @return uniqTime-randomNum-hostAddr-threadId */ public String getUniqID() { StringBuffer sb = new StringBuffer(); long t = timer.getCurrentTime(); sb.append(t); sb.append("-"); sb.append(random.nextInt(8999) + 1000); sb.append("-"); sb.append(hostAddr); sb.append("-"); sb.append(Thread.currentThread().hashCode()); return sb.toString(); } /** * 获取MD5之后的uniqId string * @return uniqId md5 string */ public String getUniqIDHashString() { return hashString(getUniqID()); } /** * 获取MD5之后的uniqId * @return uniqId md5 byte[16] */ public byte[] getUniqIDHash() { return hash(getUniqID()); } /** * 对字符串进行md5 * @param str * @return md5 byte[16] */ public byte[] hash(String str) { opLock.lock(); try { byte[] bt = mHasher.digest(str.getBytes()); if (null == bt || bt.length != 16) { throw new IllegalArgumentException("md5 need"); } return bt; } finally { opLock.unlock(); } } /** * 对字符串进行md5 string * @param str * @return md5 string */ public String hashString(String str) { byte[] bt = hash(str); return bytes2string(bt); } /** * 将一个字节数组转化为可见的字符串 * @param bt * @return 每个字节两位,如f1d2 */ public String bytes2string(byte[] bt) { int l = bt.length; char[] out = new char[l << 1]; for (int i = 0, j = 0; i < l; i++) { out[j++] = digits[(0xF0 & bt[i]) >>> 4]; out[j++] = digits[0x0F & bt[i]]; } return new String(out); } /** * 实现不重复的时间 * @author dogun */ private class UniqTimer { private AtomicLong lastTime = new AtomicLong(System.currentTimeMillis()); public long getCurrentTime() { return this.lastTime.incrementAndGet(); } } }
[ "robsonperassoli@gmail.com" ]
robsonperassoli@gmail.com
f8611d6e2de921b16188262fa91f8fb33b186fae
b5072176b1ed92fb5c3db80b41c5d060142c3af0
/BookstoreJSP/src/com/vietjack/controller/BookStoreControllerServlet.java
4045e2685afee6c90a1d0964282e0f2f2bb110d2
[]
no_license
Nguyet21/Bookstore
f563f9ef3c853021133e34e1cb57b3a6c351107a
f5018c6816edb27c874708f5a83bd54380cd5a01
refs/heads/master
2020-04-21T23:28:03.485829
2019-02-10T06:14:36
2019-02-10T06:14:36
169,947,652
1
0
null
null
null
null
UTF-8
Java
false
false
4,479
java
package com.vietjack.controller; import java.io.IOException; import java.sql.SQLException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Collections; import javax.servlet.RequestDispatcher; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.vietjack.core.Author; import com.vietjack.core.Category; import com.vietjack.dao.AuthorDao; import com.vietjack.dao.BookDao; import com.vietjack.dao.CategoryDao; /** * Servlet implementation class BookControllerServlet */ @WebServlet("/BookStoreControllerServlet") public class BookStoreControllerServlet extends HttpServlet { private static final long serialVersionUID = 1L; public static CategoryDao categoryDAO = new CategoryDao(); public static AuthorDao authorDAO = new AuthorDao(); public static BookDao bookDAO = new BookDao(); SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy"); protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { try { // read the "command" parameter String theCommand = request.getParameter("command"); // if the command is missing, then default to listing Books if (theCommand == null) { theCommand = "LIST"; } // route to the appropriate method switch (theCommand) { case "TOP_AUTHOR_REVENUE": topAuthorByRevenue(request, response); break; case "TOP_CATEGORY_REVENUE": topCategoryByRevenue(request, response); break; default: showAll(request, response); } } catch (Exception exc) { throw new ServletException(exc); } } public static void topCategoryByRevenue(HttpServletRequest request, HttpServletResponse response) throws Exception { try { ArrayList<Category> categoryList = categoryDAO.findAllCatergory(); Collections.sort(categoryList, Category.compare); System.out.println("Top Category by revenue"); request.setAttribute("category_List", categoryList); RequestDispatcher dispatcher = request.getRequestDispatcher("/report/category_revenue.jsp"); try { dispatcher.forward(request, response); } catch (ServletException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } } public static void topAuthorByRevenue(HttpServletRequest request, HttpServletResponse response) throws Exception { try { ArrayList<Author> authorList = authorDAO.findAllAuthor(); Collections.sort(authorList, Author.compare); System.out.println("Top Category by revenue"); request.setAttribute("author_List", authorList); RequestDispatcher dispatcher = request.getRequestDispatcher("/report/author_revenue.jsp"); try { dispatcher.forward(request, response); } catch (ServletException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } } public static void showAll(HttpServletRequest request, HttpServletResponse response) throws Exception { try { ArrayList<Category> categoryList = categoryDAO.findAllCatergory(); Collections.sort(categoryList, Category.compare); System.out.println("Top Category by revenue"); request.setAttribute("category_List", categoryList); ArrayList<Author> authorList = authorDAO.findAllAuthor(); Collections.sort(authorList, Author.compare); System.out.println("Top Author by revenue"); request.setAttribute("author_List", authorList); RequestDispatcher dispatcher = request.getRequestDispatcher("/report/index.jsp"); try { dispatcher.forward(request, response); } catch (ServletException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }
[ "=" ]
=
e9eac9fe3874aba3e6303e9ea8f17b6e95521ec4
e78a4941076202428a1a9b8f97aafb334f081eb5
/src/alvaro/basicos/java/acomplamiento_tardio/AcoplamientoTardio.java
298485a81b2a51db86fc0d2301956f72d6f5b5aa
[]
no_license
Agomezdelamo/Thinking-java-training
6e91588b3e08a4cd5591a6c8bd3bc5f33eb7e012
c55b754c4ffa94725adcc0a99013cf419ca2906a
refs/heads/master
2021-01-17T07:13:19.581915
2016-12-13T16:45:57
2016-12-13T16:45:57
49,752,545
0
0
null
null
null
null
ISO-8859-1
Java
false
false
1,143
java
package alvaro.basicos.java.acomplamiento_tardio; import alvaro.thinking.tema8.polimorfismo.RandomShapeGenerator; import alvaro.thinking.tema8.polimorfismo.Shape; public class AcoplamientoTardio { private static RandomShapeGenerator gen = new RandomShapeGenerator(); public static void main(String[] args) { //Array de 10 posiciones del tipo génerico formas. Shape[] s = new Shape[10]; // Rellenamos cada posición con un puntero a un objeto: for(int i = 0; i < s.length; i++) s[i] = gen.next();//como next es un case con un número random, no hay forma de saber que objeto es hasta que se ejecuta. // llamada polimorfica a un método: for(Shape shp : s) /** * Acoplamiento tardío, no sabemos que tipo de forma llama a draw, hasta el tiempo de ejecución. * En el tiempo de ejecución, se realiza el acomplamiento (unir llamada al método con su codigo interior) * tardío porque en la compilación esto no se hace, se pospone, y sólo por detrás en la ejecución el sistema * sabe que objeto es el que llama a ese método y acopla tardiamente su código correspondiente. */ shp.draw(); } }
[ "agomezdelamo@gmail.com" ]
agomezdelamo@gmail.com
5cf9da9ef8e6ba6ee1cc5b28c85432859ad7e9bc
86554657d10facc2779d9fd7313515b2f7b4b74e
/Alpha_classwork/src/com/alpha/db/UserRepository.java
8e5811e9d244a91ac6cba80c8bfd75467f4a3569
[]
no_license
MadhuHS/ClassWork_BEC_M50_E42
abcc62d7c8c8371b28148933b54780fe1a5aa917
458eda2c956d43dd1d4fd14d4cc9730495370411
refs/heads/master
2023-09-06T09:50:54.909394
2021-11-02T06:06:47
2021-11-02T06:06:47
413,649,038
5
1
null
null
null
null
UTF-8
Java
false
false
201
java
package com.alpha.db; import com.alpha.entities.User; public interface UserRepository extends Repository { public void insertUser(User usr); public User selectUser(String email,String password); }
[ "madhuhs943@gmail.com" ]
madhuhs943@gmail.com
2c6b89c99c5974144136b25cc89d054c56ec4bf4
e06cfefa2c33c37eb6592f0ac24dee4bb86106aa
/training/src/main/java/qa/gov/customs/training/proxy/FeignClientConfiguration.java
14fa7e9ed311f237142bd642d726b20c2b3be308
[]
no_license
ibrahim11fazil/jasperreport_angular
0f689f95743232d8ec81d098b07ffa5ac8aea504
97e23b2d85fdb05cf972db792b6a9f8a4fe2dd9f
refs/heads/master
2023-07-21T14:31:45.575297
2020-02-23T04:08:53
2020-02-23T04:08:53
272,669,366
1
0
null
2023-07-13T19:56:29
2020-06-16T09:43:14
Java
UTF-8
Java
false
false
827
java
package qa.gov.customs.training.proxy; import feign.codec.Encoder; import org.springframework.beans.factory.ObjectFactory; import org.springframework.boot.autoconfigure.http.HttpMessageConverters; import org.springframework.cloud.openfeign.support.SpringEncoder; import org.springframework.context.annotation.Configuration; import org.springframework.http.converter.HttpMessageConverter; import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter; @Configuration public class FeignClientConfiguration { public Encoder feignEncoder() { HttpMessageConverter jacksonConverter = new MappingJackson2HttpMessageConverter(); ObjectFactory<HttpMessageConverters> objectFactory = () -> new HttpMessageConverters(jacksonConverter); return new SpringEncoder(objectFactory); } }
[ "sraj@customs.gov.qa" ]
sraj@customs.gov.qa
cfa0585fdc33609249eb9c9ff214464eff056884
783b6388eb5aeaa0764227b51f65cbeabc230c05
/firstblood_common/src/main/java/com/fh/resolver/UserResolver.java
19f12161e7bdd6fd74fcf28081ad8a77fc78ea70
[]
no_license
1908b-lei-team/train3
f7afecf438ba16ed9678630e17de488f9d910eb6
d2a8a542d70cc6b2e787756b73d231735a79367b
refs/heads/master
2022-12-08T01:11:57.154996
2020-08-27T11:14:23
2020-08-27T11:14:23
288,179,178
0
0
null
2020-08-17T15:05:05
2020-08-17T12:51:14
Java
UTF-8
Java
false
false
1,415
java
package com.fh.resolver; import com.alibaba.fastjson.JSONObject; import com.fh.User.User; import com.fh.common.SystemConstant; import com.fh.common.UserAnnotation; import org.springframework.core.MethodParameter; import org.springframework.web.bind.support.WebDataBinderFactory; import org.springframework.web.context.request.NativeWebRequest; import org.springframework.web.method.support.HandlerMethodArgumentResolver; import org.springframework.web.method.support.ModelAndViewContainer; import javax.servlet.http.HttpServletRequest; public class UserResolver implements HandlerMethodArgumentResolver { @Override public boolean supportsParameter(MethodParameter methodParameter) { if(methodParameter.hasParameterAnnotation(UserAnnotation.class)){ return true; } return false; } @Override public Object resolveArgument(MethodParameter methodParameter, ModelAndViewContainer modelAndViewContainer, NativeWebRequest nativeWebRequest, WebDataBinderFactory webDataBinderFactory) throws Exception { HttpServletRequest request = nativeWebRequest.getNativeRequest(HttpServletRequest.class); //Member member = (Member) request.getSession().getAttribute(SystemConstant.SESSION_KEY); String header = request.getHeader(SystemConstant.SESSION_KEY); User user = JSONObject.parseObject(header, User.class); return user; } }
[ "63041195+never-ljy@users.noreply.github.com" ]
63041195+never-ljy@users.noreply.github.com
f58e1a6254507625bd9c054f351467d7a25cacef
e8d3fc2eeffc0f41d5491dd861c32de165226692
/app/src/main/java/com/youngcreate/gitdroid/github/hotuser/HotUserPresenter.java
d13550f6bc0870cbf1a3b48bd2805449b4b69d9c
[]
no_license
youngcreate/GitDroid
529c830870cc8d9b9781eb395f4a62eb1671f643
632abde1af9f58abbaea9e4c0189dad6fd5a6d13
refs/heads/master
2020-12-25T15:18:19.209471
2016-08-09T14:37:15
2016-08-09T14:37:15
64,309,559
0
0
null
null
null
null
UTF-8
Java
false
false
2,952
java
package com.youngcreate.gitdroid.github.hotuser; import com.youngcreate.gitdroid.github.login.model.User; import com.youngcreate.gitdroid.github.network.GitHubClient; import java.util.List; import retrofit2.Call; import retrofit2.Callback; import retrofit2.Response; /** * Created by Administrator on 16-8-3. */ public class HotUserPresenter { //热门用户视图接口 public interface HotUserView { void showRefreshView(); void hideRefreshView(); void refreshData(List<User> datas); void showLoadMoreView(); void hideLoadMoreView(); void addMoreData(List<User> datas); } public HotUserPresenter(HotUserView hotUserView) { this.hotUserView = hotUserView; } private HotUserView hotUserView; private Call<UsersResult> usersResultCall; private int nextPage = 0; /** * 下拉刷新 */ public void refresh() { hotUserView.hideLoadMoreView(); hotUserView.showRefreshView(); nextPage = 1; if (usersResultCall != null) { usersResultCall.cancel(); } usersResultCall = GitHubClient.getInstance().searchUsers("followers:" + ">1000", nextPage); usersResultCall.enqueue(ptrCallBack); } /** * 上拉加载更多 */ public void loadMore() { hotUserView.showLoadMoreView(); if (usersResultCall != null) { usersResultCall.cancel(); } usersResultCall = GitHubClient.getInstance().searchUsers("followers:" + ">1000", nextPage); usersResultCall.enqueue(loadMoreCallBack); } private Callback<UsersResult> ptrCallBack = new Callback<UsersResult>() { @Override public void onResponse(Call<UsersResult> call, Response<UsersResult> response) { hotUserView.hideRefreshView(); //得到响应结果 UsersResult usersResult = response.body(); if (usersResult == null) { return; } //将列表数据交付给“视图”去处理 hotUserView.refreshData(usersResult.getUserList()); nextPage = 2; } @Override public void onFailure(Call<UsersResult> call, Throwable t) { } }; private Callback<UsersResult> loadMoreCallBack = new Callback<UsersResult>() { @Override public void onResponse(Call<UsersResult> call, Response<UsersResult> response) { hotUserView.hideLoadMoreView(); //得到响应结果 UsersResult usersResult = response.body(); if (usersResult == null) { return; } //将列表数据交付给“视图”去处理 hotUserView.addMoreData(usersResult.getUserList()); nextPage++; } @Override public void onFailure(Call<UsersResult> call, Throwable t) { } }; }
[ "l" ]
l
a715d6ce2bafc30a1ed3b1b4c61e8ce1ba64e773
574cb14f945fa7c6556335e6ce4686e7703dde30
/KB_STC_TEAM7A/src/test/java/util/BaseUtil.java
20c5d6eeedfac5e9ceb4f838d7a94218eba8f45c
[]
no_license
Kullybhela01/TestingProject6
58761d648508b226a7836874b8a8d83a2cba4db0
b6b12ae752f78bdbc5169e8e32f8b51880ac41f5
refs/heads/master
2023-02-26T11:22:10.235152
2021-02-01T10:07:24
2021-02-01T10:07:24
330,642,199
0
0
null
null
null
null
UTF-8
Java
false
false
367
java
package util; import java.util.Properties; import org.apache.log4j.Logger; import org.openqa.selenium.WebDriver; import cucumber.api.Scenario; import webConnector.AppSpecificKeywords; public class BaseUtil { public Properties property; public AppSpecificKeywords keyword; public WebDriver driver; public Scenario scenario; public Logger log; }
[ "kulbir_bhela@hotmail.com" ]
kulbir_bhela@hotmail.com
fc2f0eef8fc425a588139461fba03528b1a30d40
9ec2f5dc7eeae4acabbaa902da416beba8632db1
/share/src/main/java/com/better_computer/habitaid/share/ButtonsData.java
6bd4a573af028e89467c9d87d6bade86f3332b3e
[]
no_license
mye-morr/belii7
566df5aadc9891c85b1a198628153f583c087b9e
f4469cab73b95626f148a7824c90428f7c3c0f06
refs/heads/master
2022-09-29T21:46:22.483684
2020-06-08T07:42:45
2020-06-08T07:42:45
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,591
java
package com.better_computer.habitaid.share; import org.json.JSONException; import org.json.JSONObject; import org.json.JSONStringer; import org.json.JSONTokener; import java.io.Serializable; public class ButtonsData implements Serializable { private String sActiveFace = ""; private String sCat = ""; private String sDelimCaptions = ""; private String sDelimReplies = ""; private String sDelimPoints = ""; public String getActiveFace() { return sActiveFace; } public void setActiveFace(String sInput) { this.sActiveFace = sInput; } public String getCat() { return sCat; } public void setCat(String sInput) { this.sCat = sInput; } public String getDelimCaptions() { return sDelimCaptions; } public void setDelimCaptions(String sInput) { this.sDelimCaptions = sInput; } public String getDelimReplies() { return sDelimReplies; } public void setDelimReplies(String sInput) { this.sDelimReplies = sInput; } public String getDelimPoints() { return sDelimPoints; } public void setDelimPoints(String sInput) { this.sDelimPoints = sInput; } public String toJsonString() { try { String jsonString = new JSONStringer().object() .key("sActiveFace").value(sActiveFace) .key("sCat").value(sCat) .key("sDelimCaptions").value(sDelimCaptions) .key("sDelimReplies").value(sDelimReplies) .key("sDelimPoints").value(sDelimPoints) .endObject().toString(); return jsonString; } catch (JSONException e) { e.printStackTrace(); return ""; } } public static ButtonsData toButtonsData(String jsonString) { JSONObject jsonObject = null; try { jsonObject = (JSONObject) new JSONTokener(jsonString).nextValue(); ButtonsData buttonsData = new ButtonsData(); buttonsData.setActiveFace(jsonObject.getString("sActiveFace")); buttonsData.setCat(jsonObject.getString("sCat")); buttonsData.setDelimCaptions(jsonObject.getString("sDelimCaptions")); buttonsData.setDelimReplies(jsonObject.getString("sDelimReplies")); buttonsData.setDelimPoints(jsonObject.getString("sDelimPoints")); return buttonsData; } catch (JSONException e) { e.printStackTrace(); return null; } } }
[ "mye.morr@gmail.com" ]
mye.morr@gmail.com
f815d8078524c48330549491210eaf38e9d5a7f8
062fa2f3c969f628b1a301b88aaf8fe134e59cc1
/src/main/java/testcases/message/MessageRequest.java
f103c1d2bf89b16fd1b4e238f69b943318222d6c
[]
no_license
IoT-Platform-Group/coap-test-client
1f470affb59e53d60b6c3ba5dcd5aafa5dfa9b4a
936a15478a08730f73e14b2a0b69a9439f7399fc
refs/heads/master
2020-03-23T04:23:14.600371
2018-07-16T03:27:05
2018-07-16T03:27:05
141,021,464
0
0
null
null
null
null
UTF-8
Java
false
false
499
java
package testcases.message; import org.eclipse.californium.core.CoapResponse; import org.eclipse.californium.core.Utils; import request.POSTRequest; import scanner.ParamScanner; public class MessageRequest extends POSTRequest { @Override public ParamScanner generateURIScanner(){ return new MessageScanner(); } @Override public void onLoad(CoapResponse response){ System.out.println(Utils.prettyPrint(response)); } @Override public String getPayload(){ return "message"; } }
[ "zhouyufei1998@vip.qq.com" ]
zhouyufei1998@vip.qq.com
4af7b7015157769adbda7d43476ce4c6fb35410f
81e8fe44bb3cae1305dbcdc920fbb5ad2cece782
/src/englishlearning/views/Login.java
b91059d2d30e22727cd6e24ecc6980d2f301874f
[]
no_license
yuyuvn/OOP-Learning-English
75c0444bbdc646979ce4cb6670d71040ddcd9120
9b7b0ea077f280075b388f98aaf2bc86e929b2fd
refs/heads/master
2020-05-17T00:34:26.221405
2014-05-19T11:36:53
2014-05-19T11:36:53
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,994
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 englishlearning.views; import java.util.Collection; import javafx.beans.property.ReadOnlyBooleanProperty; import javafx.beans.property.ReadOnlyBooleanWrapper; import javafx.beans.property.StringProperty; import javafx.event.ActionEvent; import javafx.fxml.FXML; import javafx.scene.control.TextField; import javafx.scene.input.KeyCode; import javafx.scene.input.KeyEvent; import org.controlsfx.control.textfield.TextFields; /** * * @author Clicia */ public class Login extends Controller { @FXML TextField usernameTextField; //<editor-fold defaultstate="collapsed" desc="Property isLoged"> private ReadOnlyBooleanWrapper loged; private void setLoged(boolean value) { logedProperty(); loged.set(value); } public final boolean isLoged() { return logedProperty().get(); } public final ReadOnlyBooleanProperty logedProperty() { if (loged==null) loged = new ReadOnlyBooleanWrapper(this, "isLoged", false); return loged; } //</editor-fold> //<editor-fold defaultstate="collapsed" desc="Property username"> public final String getUsername() { return usernameProperty().get(); } public final void setUsername(String value) { usernameProperty().set(value); } public final StringProperty usernameProperty() { return usernameTextField.textProperty(); } //</editor-fold> @FXML private void onLogin(ActionEvent event) { if (!getUsername().equals("")) setLoged(true); } @FXML private void onKeyPressed(KeyEvent keyEvent) { if (keyEvent.getCode() == KeyCode.ENTER && !getUsername().equals("")) setLoged(true); } public void setAutoCompletion(Collection<?> dataProvider) { TextFields.bindAutoCompletion(usernameTextField, dataProvider); } }
[ "yuyuvn@mac.com" ]
yuyuvn@mac.com
b653b425e3feb4bfad42c0bede3ba7993584a088
d74c2ca437a58670dc8bfbf20a3babaecb7d0bea
/SAP_858310_lines/Source - 963k/js.webservices.service/dev/src/_tc~je~webservices/java/com/sap/engine/services/webservices/runtime/statelesstable.java
99856b6ef67f57f30887dca223572c0b339b3415
[]
no_license
javafullstackstudens/JAVA_SAP
e848e9e1a101baa4596ff27ce1aedb90e8dfaae8
f1b826bd8a13d1432e3ddd4845ac752208df4f05
refs/heads/master
2023-06-05T20:00:48.946268
2021-06-30T10:07:39
2021-06-30T10:07:39
381,657,064
0
0
null
null
null
null
UTF-8
Java
false
false
2,974
java
package com.sap.engine.services.webservices.runtime; import java.util.Enumeration; import javax.ejb.EJBObject; import com.sap.engine.lib.util.HashMapObjectObject; import com.sap.engine.services.timeout.TimeoutListener; import com.sap.engine.services.webservices.exceptions.WSLogging; import com.sap.engine.services.webservices.tools.InstancesPool; import com.sap.tc.logging.Location; import com.sap.tc.logging.Severity; /** * Copyright (c) 2002 by SAP Labs Sofia., * All rights reserved. * * Description: * @author Dimiter Angelov * @version 6.30 */ public class StatelessTable implements TimeoutListener { private HashMapObjectObject hashTable = new HashMapObjectObject(); public synchronized InstancesPool getPool(String key) { InstancesPool pool = (InstancesPool) hashTable.get(key); if (pool != null) { return pool; } else { pool = new InstancesPool(); hashTable.put(key, pool); return pool; } } public void rollBackInstance(InstanceWrapper instance) { //in case exception has occured before obtaining instance if (instance == null) { return; } InstancesPool pool = instance.getOwnerPool(); pool.rollBackInstance(instance); } public synchronized Enumeration keys() { return this.hashTable.keys(); } public synchronized InstancesPool get(String key) { return (InstancesPool) this.hashTable.get(key); } public boolean check() { return true; } public void timeout() { InstanceWrapper instWrapper; InstancesPool pool; Object[] keys; long endTime = System.currentTimeMillis(); synchronized (this) { keys = hashTable.getAllKeys(); //the currect key content } //!!!!It is not synchnized to hashtable. The new added entries while onTime() goes won't be process for (int i = 0; i < keys.length; i++) { pool = this.get((String) keys[i]); synchronized (pool) { //locking the pool while is checking not to be used for (int j = 0; j < pool.size(); j++) { instWrapper = (InstanceWrapper) pool.get(j); if ( (endTime - instWrapper.getLastActiveTime()) > instWrapper.getSessionTimeout()) { //removing it from the pool Location loc = (instWrapper.logLocation != null) ? instWrapper.logLocation : Location.getLocation(WSLogging.RUNTIME_LOCATION); try { pool.remove(j--); //removing object Object obj = instWrapper.getInstance(); if (obj instanceof EJBObject) { ((EJBObject) obj).remove(); } loc.logT(Severity.PATH, "Removing stateless instance: " + instWrapper.getInstance() + " from pool " + instWrapper.getCacheKey()); } catch (Exception e) { loc.catching("Exception in removing stateless object: [" + instWrapper.getInstance() + "]", e); } } } } } //end for } }
[ "Yalin.Arie@checkmarx.com" ]
Yalin.Arie@checkmarx.com
a19807bf971053e25245c5de01d110e3d6681b2d
5d17d17c6845e07af2da87d59b148cce9d4f7f24
/src/Main2.java
bc9b197632eb21df726034046e6456629ab7ed00
[]
no_license
hitarthk/Algorithms
f08f73ad9912d81c0214e6bca5e1aaa9f114cf23
404262b354037e45189bce6de0f3a40d59003356
refs/heads/master
2021-01-10T10:00:27.828341
2016-01-07T09:41:02
2016-01-07T09:41:02
49,090,963
0
0
null
null
null
null
UTF-8
Java
false
false
4,129
java
import java.io.IOException; import java.io.PrintWriter; import java.util.InputMismatchException; /* * 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. */ /** * * @author hitarthk */ public class Main2 { public static void main(String[] args) { FasterScanner in=new FasterScanner(); PrintWriter out=new PrintWriter(System.out); int t=in.nextInt(); while(t>0){ t--; long n=in.nextLong(); if(n==1){ out.println(-1); continue; } long d=(long)(Math.log(n)/Math.log(2)) + 1; //System.out.println(d); if((long)Math.pow(2, d)==n+1){ out.println((n>>1)); } else{ out.println(-1); } } out.close(); } public static class FasterScanner { private byte[] buf = new byte[1024]; private int curChar; private int numChars; public int read() { if (numChars == -1) throw new InputMismatchException(); if (curChar >= numChars) { curChar = 0; try { numChars = System.in.read(buf); } catch (IOException e) { throw new InputMismatchException(); } if (numChars <= 0) return -1; } return buf[curChar++]; } public String nextLine() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isEndOfLine(c)); return res.toString(); } public String nextString() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isSpaceChar(c)); return res.toString(); } public long nextLong() { int c = read(); while (isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } long res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } while (!isSpaceChar(c)); return res * sgn; } public int nextInt() { int c = read(); while (isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } int res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } while (!isSpaceChar(c)); return res * sgn; } public int[] nextIntArray(int n) { int[] arr = new int[n]; for (int i = 0; i < n; i++) { arr[i] = nextInt(); } return arr; } public long[] nextLongArray(int n) { long[] arr = new long[n]; for (int i = 0; i < n; i++) { arr[i] = nextLong(); } return arr; } private boolean isSpaceChar(int c) { return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } private boolean isEndOfLine(int c) { return c == '\n' || c == '\r' || c == -1; } } }
[ "hitarthk@gmail.com" ]
hitarthk@gmail.com
ac78fc4ac3ea89f4c3955ae980543b471a87eee1
7cd6b8c7e7cc39acd9374d4693b31185300a54a3
/app/src/main/java/com/example/somaiya/somaiyaclassroom/StudentCalendar.java
e7518a35582ab98efd56077621039ae04eaa874d
[ "MIT" ]
permissive
2knal/Project-Somaiya-Classroom
505332f729fc86bfd23cf9c61c8f91c041c29be5
dd3c846127251a5f8ee0144085a7c8aea4a334c7
refs/heads/master
2020-03-30T08:09:22.134112
2018-09-30T18:25:33
2018-09-30T18:25:33
150,993,437
1
0
MIT
2018-09-30T18:18:46
2018-09-30T18:18:45
null
UTF-8
Java
false
false
364
java
package com.example.somaiya.somaiyaclassroom; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class StudentCalendar extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_student_calendar); } }
[ "32769793+2knal@users.noreply.github.com" ]
32769793+2knal@users.noreply.github.com
4c87b29ec55b489a2fdf0c8106466da5e9b3c443
c885ef92397be9d54b87741f01557f61d3f794f3
/results/Mockito-5/org.mockito.internal.verification.VerificationOverTimeImpl/BBC-F0-opt-60/tests/19/org/mockito/internal/verification/VerificationOverTimeImpl_ESTest.java
23d827463424afaea08378c2f0720892fd6393a1
[ "CC-BY-4.0", "MIT" ]
permissive
pderakhshanfar/EMSE-BBC-experiment
f60ac5f7664dd9a85f755a00a57ec12c7551e8c6
fea1a92c2e7ba7080b8529e2052259c9b697bbda
refs/heads/main
2022-11-25T00:39:58.983828
2022-04-12T16:04:26
2022-04-12T16:04:26
309,335,889
0
1
null
2021-11-05T11:18:43
2020-11-02T10:30:38
null
UTF-8
Java
false
false
8,617
java
/* * This file was automatically generated by EvoSuite * Thu Oct 21 18:36:35 GMT 2021 */ package org.mockito.internal.verification; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.runtime.EvoAssertions.*; import org.evosuite.runtime.EvoRunner; import org.evosuite.runtime.EvoRunnerParameters; import org.junit.runner.RunWith; import org.mockito.internal.creation.MockSettingsImpl; import org.mockito.internal.invocation.InvocationMatcher; import org.mockito.internal.progress.MockingProgressImpl; import org.mockito.internal.stubbing.InvocationContainerImpl; import org.mockito.internal.util.Timer; import org.mockito.internal.verification.AtMost; import org.mockito.internal.verification.NoMoreInteractions; import org.mockito.internal.verification.VerificationDataImpl; import org.mockito.internal.verification.VerificationOverTimeImpl; import org.mockito.internal.verification.api.VerificationData; import org.mockito.verification.After; import org.mockito.verification.VerificationMode; @RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, separateClassLoader = true) public class VerificationOverTimeImpl_ESTest extends VerificationOverTimeImpl_ESTest_scaffolding { @Test(timeout = 4000) public void test00() throws Throwable { VerificationOverTimeImpl verificationOverTimeImpl0 = new VerificationOverTimeImpl(0L, (-449L), (VerificationMode) null, false); long long0 = verificationOverTimeImpl0.getPollingPeriod(); assertEquals(0L, long0); assertEquals((-449L), verificationOverTimeImpl0.getDuration()); } @Test(timeout = 4000) public void test01() throws Throwable { VerificationOverTimeImpl verificationOverTimeImpl0 = new VerificationOverTimeImpl(2284L, 0L, (VerificationMode) null, true); long long0 = verificationOverTimeImpl0.getPollingPeriod(); assertEquals(0L, verificationOverTimeImpl0.getDuration()); assertEquals(2284L, long0); } @Test(timeout = 4000) public void test02() throws Throwable { After after0 = new After(1077L, (-2620L), (VerificationMode) null); VerificationOverTimeImpl verificationOverTimeImpl0 = new VerificationOverTimeImpl(1077L, 1878L, after0, true); long long0 = verificationOverTimeImpl0.getDuration(); assertEquals(1077L, verificationOverTimeImpl0.getPollingPeriod()); assertEquals(1878L, long0); } @Test(timeout = 4000) public void test03() throws Throwable { VerificationOverTimeImpl verificationOverTimeImpl0 = new VerificationOverTimeImpl(0L, (-449L), (VerificationMode) null, false); long long0 = verificationOverTimeImpl0.getDuration(); assertEquals((-449L), long0); assertEquals(0L, verificationOverTimeImpl0.getPollingPeriod()); } @Test(timeout = 4000) public void test04() throws Throwable { VerificationOverTimeImpl verificationOverTimeImpl0 = new VerificationOverTimeImpl((-312L), (-312L), (VerificationMode) null, false); verificationOverTimeImpl0.getDelegate(); assertEquals((-312L), verificationOverTimeImpl0.getDuration()); assertEquals((-312L), verificationOverTimeImpl0.getPollingPeriod()); } @Test(timeout = 4000) public void test05() throws Throwable { AtMost atMost0 = new AtMost(0); VerificationOverTimeImpl verificationOverTimeImpl0 = new VerificationOverTimeImpl(0L, 0L, atMost0, true); // Undeclared exception! try { verificationOverTimeImpl0.verify((VerificationData) null); fail("Expecting exception: NullPointerException"); } catch(NullPointerException e) { // // no message in exception (getMessage() returned null) // verifyException("org.mockito.internal.verification.AtMost", e); } } @Test(timeout = 4000) public void test06() throws Throwable { VerificationOverTimeImpl verificationOverTimeImpl0 = new VerificationOverTimeImpl(0L, (-449L), (VerificationMode) null, false); MockingProgressImpl mockingProgressImpl0 = new MockingProgressImpl(); MockSettingsImpl<String> mockSettingsImpl0 = new MockSettingsImpl<String>(); InvocationContainerImpl invocationContainerImpl0 = new InvocationContainerImpl(mockingProgressImpl0, mockSettingsImpl0); VerificationDataImpl verificationDataImpl0 = new VerificationDataImpl(invocationContainerImpl0, (InvocationMatcher) null); verificationOverTimeImpl0.verify(verificationDataImpl0); assertEquals((-449L), verificationOverTimeImpl0.getDuration()); assertEquals(0L, verificationOverTimeImpl0.getPollingPeriod()); } @Test(timeout = 4000) public void test07() throws Throwable { NoMoreInteractions noMoreInteractions0 = new NoMoreInteractions(); After after0 = new After(0L, 403L, noMoreInteractions0); Timer timer0 = new Timer(0L); VerificationOverTimeImpl verificationOverTimeImpl0 = new VerificationOverTimeImpl(0L, (-277L), after0, false, timer0); boolean boolean0 = verificationOverTimeImpl0.canRecoverFromFailure(noMoreInteractions0); assertEquals((-277L), verificationOverTimeImpl0.getDuration()); assertEquals(0L, verificationOverTimeImpl0.getPollingPeriod()); assertFalse(boolean0); } @Test(timeout = 4000) public void test08() throws Throwable { After after0 = new After(1077L, (-2620L), (VerificationMode) null); Timer timer0 = new Timer(1633L); VerificationOverTimeImpl verificationOverTimeImpl0 = new VerificationOverTimeImpl((-2620L), 0L, after0, true, timer0); boolean boolean0 = verificationOverTimeImpl0.canRecoverFromFailure(after0); assertTrue(boolean0); assertEquals(0L, verificationOverTimeImpl0.getDuration()); assertEquals((-2620L), verificationOverTimeImpl0.getPollingPeriod()); } @Test(timeout = 4000) public void test09() throws Throwable { AtMost atMost0 = new AtMost(0); VerificationOverTimeImpl verificationOverTimeImpl0 = new VerificationOverTimeImpl(0L, 0L, atMost0, true); boolean boolean0 = verificationOverTimeImpl0.canRecoverFromFailure(atMost0); assertFalse(boolean0); } @Test(timeout = 4000) public void test10() throws Throwable { VerificationOverTimeImpl verificationOverTimeImpl0 = new VerificationOverTimeImpl(0L, (-449L), (VerificationMode) null, false); VerificationOverTimeImpl verificationOverTimeImpl1 = new VerificationOverTimeImpl(0L, 0L, verificationOverTimeImpl0, false); // Undeclared exception! verificationOverTimeImpl1.verify((VerificationData) null); } @Test(timeout = 4000) public void test11() throws Throwable { After after0 = new After(1077L, (-2620L), (VerificationMode) null); Timer timer0 = new Timer(1633L); VerificationOverTimeImpl verificationOverTimeImpl0 = new VerificationOverTimeImpl((-2620L), 0L, after0, true, timer0); verificationOverTimeImpl0.verify((VerificationData) null); assertEquals((-2620L), verificationOverTimeImpl0.getPollingPeriod()); assertEquals(0L, verificationOverTimeImpl0.getDuration()); } @Test(timeout = 4000) public void test12() throws Throwable { After after0 = new After(1077L, (-2620L), (VerificationMode) null); Timer timer0 = new Timer(1633L); VerificationOverTimeImpl verificationOverTimeImpl0 = new VerificationOverTimeImpl((-2620L), 0L, after0, true, timer0); long long0 = verificationOverTimeImpl0.getPollingPeriod(); assertEquals((-2620L), long0); assertEquals(0L, verificationOverTimeImpl0.getDuration()); } @Test(timeout = 4000) public void test13() throws Throwable { After after0 = new After(1077L, (-2620L), (VerificationMode) null); Timer timer0 = new Timer(1633L); VerificationOverTimeImpl verificationOverTimeImpl0 = new VerificationOverTimeImpl((-2620L), 0L, after0, true, timer0); verificationOverTimeImpl0.getDelegate(); assertEquals(0L, verificationOverTimeImpl0.getDuration()); assertEquals((-2620L), verificationOverTimeImpl0.getPollingPeriod()); } @Test(timeout = 4000) public void test14() throws Throwable { After after0 = new After(1077L, (-2620L), (VerificationMode) null); Timer timer0 = new Timer(1633L); VerificationOverTimeImpl verificationOverTimeImpl0 = new VerificationOverTimeImpl((-2620L), 0L, after0, true, timer0); long long0 = verificationOverTimeImpl0.getDuration(); assertEquals((-2620L), verificationOverTimeImpl0.getPollingPeriod()); assertEquals(0L, long0); } }
[ "pderakhshanfar@serg2.ewi.tudelft.nl" ]
pderakhshanfar@serg2.ewi.tudelft.nl
dc5af4a918112246e4e90a22b4ef7f2ef85712b4
3e04cc612b4c4a919d3d5dd78bae3d7d84f09f71
/6期项目实战资料/BBS_SSM/royal_domain/src/main/java/com/bbs/domain/User.java
09290fc2f473fce1121ee7eebea969c7d6f9e58f
[]
no_license
Sweets-Tiramisu/kinghonor
875e09efc52ef818dfd4d25d5b136fc261ed3eeb
b7ceed80820522bca89213b3b7a624847e538548
refs/heads/master
2022-12-27T18:15:56.212042
2019-08-17T00:40:31
2019-08-17T00:40:31
202,817,096
2
0
null
2022-12-16T04:25:06
2019-08-17T00:38:48
Java
UTF-8
Java
false
false
2,267
java
package com.bbs.domain; import java.util.Date; public class User { private Integer userid; private String username; private String userpass; private String email; private String picurl; private Integer role; private Date lastlogintime; private Integer loginstatus; private Integer talkstatus; private Integer isupdating; private Integer updatestatus; public Integer getUserid() { return userid; } public void setUserid(Integer userid) { this.userid = userid; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username == null ? null : username.trim(); } public String getUserpass() { return userpass; } public void setUserpass(String userpass) { this.userpass = userpass == null ? null : userpass.trim(); } public String getEmail() { return email; } public void setEmail(String email) { this.email = email == null ? null : email.trim(); } public String getPicurl() { return picurl; } public void setPicurl(String picurl) { this.picurl = picurl == null ? null : picurl.trim(); } public Integer getRole() { return role; } public void setRole(Integer role) { this.role = role; } public Date getLastlogintime() { return lastlogintime; } public void setLastlogintime(Date lastlogintime) { this.lastlogintime = lastlogintime; } public Integer getLoginstatus() { return loginstatus; } public void setLoginstatus(Integer loginstatus) { this.loginstatus = loginstatus; } public Integer getTalkstatus() { return talkstatus; } public void setTalkstatus(Integer talkstatus) { this.talkstatus = talkstatus; } public Integer getIsupdating() { return isupdating; } public void setIsupdating(Integer isupdating) { this.isupdating = isupdating; } public Integer getUpdatestatus() { return updatestatus; } public void setUpdatestatus(Integer updatestatus) { this.updatestatus = updatestatus; } }
[ "loveonlytwo@gmail.com" ]
loveonlytwo@gmail.com
547dbfa4f2cb276c75a4ee8dce8c5faaa8affbb4
5582ab4c1ff07ef84c4795e55da9c100a8c9d092
/src/com/icehockey/controller/BingLinChengXiaServlet.java
7017af87a2eb70ad8043761d9ef1aece18ef4080
[]
no_license
277815008/icehockeyDemo
6aa2e948276d3766ed26eb90bde99ac9d2a8a21e
bc43ca63b93cbcba9943890a7108a5369de5438f
refs/heads/master
2021-07-02T15:07:21.562248
2017-09-24T02:10:47
2017-09-24T02:10:47
103,594,961
0
0
null
2017-09-24T02:14:20
2017-09-15T00:23:51
Java
UTF-8
Java
false
false
4,572
java
package com.icehockey.controller; import java.io.IOException; import java.io.PrintWriter; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import com.icehockey.entity.DuiKang; import com.icehockey.service.DuiKangService; /** * Servlet implementation class BingLinChengXiaServlet */ public class BingLinChengXiaServlet extends HttpServlet { private static final long serialVersionUID = 1L; /** * @see HttpServlet#HttpServlet() */ public BingLinChengXiaServlet() { super(); } /** * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse * response) */ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { HttpSession session = request.getSession(); response.setContentType("application/json"); request.setCharacterEncoding("utf-8"); response.setCharacterEncoding("utf-8"); response.setContentType("text/html;charset=UTF-8"); response.setHeader("set-Cookie", "name=value;HttpOnly"); System.out.println("-------------兵临城下.html-----------"); PrintWriter writer = response.getWriter(); DuiKangService duiKangService = new DuiKangService(); List<DuiKang> duiKangs = null; Map<String, Object> map = new HashMap<String, Object>(); System.out.println("跳转后的sessionId :" + session.getId()); String operateType = null; // session if (session.getAttribute("user") == null) { map.put("result", "-1");// 没有用户登录 } else { if (request.getParameter("operateType") != null) { operateType = request.getParameter("operateType"); if ("BingLinChengXia".equals(operateType)) {// 如果操作类型是主控页面到浇冰必拜主页面,则取出场地表中的所有场地信息 duiKangs = duiKangService.getDuiKangs(); session.setAttribute("duiKangs", duiKangs); map.put("duiKangs", duiKangs); map.put("result", "0"); map.put("ok", "1"); } else if ("tianjianxunliansai".equals(operateType)) {// 如果操作类型是主控页面到浇冰必拜主页面,则取出场地表中的所有场地信息 String address = request.getParameter("address"); String clubAName = request.getParameter("clubAName"); String clubBName = request.getParameter("clubBName"); String beizhu = request.getParameter("beizhu"); boolean f = false; f = duiKangService.addSaiShi(address, clubAName, clubBName, beizhu); if (f) {// 添加成功 duiKangs = duiKangService.getDuiKangs(); session.setAttribute("duiKangs", duiKangs); map.put("duiKangs", duiKangs); map.put("result", "0"); map.put("ok", "2"); } else {// 添加失败 map.put("result", "-3"); } } } else { map.put("result", "-2");// 没有操作类型 } } // 根据result值,判断页面如何跳转 if ("0".equals(map.get("result"))) {// 登录成功,且不是第一次登陆 System.out.println("页面操作正确"); if ("1".equals(map.get("ok"))) { writer.println("<script language='javascript'>window.location.href='./views/part5/binglinchengxiazhuyemian.jsp'</script>"); } else if ("2".equals(map.get("ok"))) { writer.println("<script language='javascript'>alert('添加成功');window.location.href='./views/part5/binglinchengxiazhuyemian.jsp'</script>"); } else { } } else if ("-1".equals(map.get("result"))) {// 登陆失败,用户名不存在 writer.println("<script language='javascript'>alert('当前没有登录用户');window.location.href='./views/part1/zhucedengluyemian.jsp'</script>"); } else if ("-2".equals(map.get("result"))) {// 前端错误 writer.println("<script language='javascript'>alert('前端错误');window.location.href='history.back(-1);'</script>"); } else if ("-3".equals(map.get("result"))) {// 插入失败 writer.println("<script language='javascript'>alert('插入失败');window.location.href='history.back(-1);'</script>"); } } /** * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse * response) */ protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { doGet(request, response); } }
[ "1136642649@qq.com" ]
1136642649@qq.com
158c0e52ed8b5af9c92f2b1368d8a9f41e8540f2
04a2eb39353303bbc9764132ca9e8aab1493aafd
/src/test/java/guru/springframework/springrestclientexamples/controllers/UserControllerTest.java
6f7f1cf45ec3215953584c4787a9011a2249c437
[]
no_license
KentCarmine/spring-rest-client-examples
0d9d2d475cb483998b1c05bdba9e63a51ee46080
ac35ae9eeecc475a11c164bbbd10c11484c1ed91
refs/heads/master
2020-08-07T13:19:22.452340
2019-10-08T19:01:54
2019-10-08T19:01:54
213,466,134
0
0
null
2019-10-07T19:15:19
2019-10-07T19:15:19
null
UTF-8
Java
false
false
1,702
java
package guru.springframework.springrestclientexamples.controllers; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.autoconfigure.web.reactive.AutoConfigureWebTestClient; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.context.ApplicationContext; import org.springframework.http.MediaType; import org.springframework.test.context.junit4.SpringRunner; import org.springframework.test.web.reactive.server.WebTestClient; import org.springframework.util.LinkedMultiValueMap; import org.springframework.util.MultiValueMap; import org.springframework.web.reactive.function.BodyInserters; import static org.junit.Assert.*; @RunWith(SpringRunner.class) @SpringBootTest @AutoConfigureWebTestClient public class UserControllerTest { @Autowired private ApplicationContext applicationContext; WebTestClient webTestClient; @Before public void setUp() throws Exception { webTestClient = WebTestClient.bindToApplicationContext(applicationContext).build(); } @Test public void index() { webTestClient.get().uri("/") .exchange() .expectStatus().isOk(); } @Test public void formPost() { MultiValueMap<String, String> formData = new LinkedMultiValueMap<>(); formData.add("limit", "3"); webTestClient.post().uri("users") .contentType(MediaType.APPLICATION_FORM_URLENCODED) .body(BodyInserters.fromFormData(formData)) .exchange() .expectStatus().isOk(); } }
[ "5168853+KentCarmine@users.noreply.github.com" ]
5168853+KentCarmine@users.noreply.github.com