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
0f042ba35d31873c1713850f58bbba3d1e11132f
810fb727187ea450a603e581a99854f8011bfaca
/treinar_7900/projeto/treinar/src/br/com/treinarminas/treinar/io/TestaEntrada.java
f831cb9cd2acdc67e6fca062c60492613cc17e11
[]
no_license
ggmoura/treinar
c97698cfc4cfb9024e2d790bcab64d9658541f2c
5c37e03981cb6d9e69fad0e5c3af8bdb4036e638
refs/heads/master
2022-12-01T04:17:09.451724
2019-10-19T00:53:56
2019-10-19T00:53:56
37,018,624
1
1
null
2022-11-24T07:39:41
2015-06-07T14:02:26
Java
UTF-8
Java
false
false
2,475
java
package br.com.treinarminas.treinar.io; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.io.OutputStreamWriter; import java.text.Collator; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Map.Entry; public class TestaEntrada { public static void main(String[] args) throws IOException { File f = new File("arquivo.txt"); Map<Character, List<String>> mapNomes = new HashMap<Character, List<String>>(); String nome = null; Character primeiraLetra = null; List<String> listaNomes = null; if (f.exists()) { InputStream is = new FileInputStream(f); InputStreamReader isr = new InputStreamReader(is); BufferedReader br = new BufferedReader(isr); nome = br.readLine(); // primeira linha while (nome != null) { if (!nome.isEmpty()) { primeiraLetra = Character.toUpperCase(nome.charAt(0)); if (!mapNomes.containsKey(primeiraLetra)) { listaNomes = new ArrayList<String>(); mapNomes.put(primeiraLetra, listaNomes); } mapNomes.get(primeiraLetra).add(nome); } nome = br.readLine(); } br.close(); OutputStream os = new FileOutputStream("saida.txt"); OutputStreamWriter osw = new OutputStreamWriter(os); BufferedWriter bw = new BufferedWriter(osw); List<Entry<Character, List<String>>> entrysList = new ArrayList<>(mapNomes.entrySet()); Collections.sort(entrysList, new Comparator<Entry<Character, List<String>>>() { @Override public int compare(Entry<Character, List<String>> o1, Entry<Character, List<String>> o2) { return o1.getKey().compareTo(o2.getKey()); } }); //ordena sem acentuacao Collator collator = Collator.getInstance(); collator.setStrength(Collator.PRIMARY); StringBuilder sb = new StringBuilder(); for (Entry<Character, List<String>> entry : entrysList) { Collections.sort(entry.getValue(), collator); sb.append(entry.getKey()).append(" ").append(entry.getValue()).append("\n"); } bw.write(sb.toString()); bw.close(); } } }
[ "Usuario@SL05PROFESSOR" ]
Usuario@SL05PROFESSOR
3b1f0459848d3502d91215dccba2c376bcaf41c1
f94af9d8622ff0c1db6536d66693fdfb45cac0fe
/src/main/java/com/sc/interview/crudapp/CrudApplication.java
11567609532f912991e209bae396a47c24e4d792
[]
no_license
kevi793/UserCrud
3843b0749da3b3be1438695894e03c68c52f3bcf
b8c62a535deb23207bf995df1f3d030d2aea304d
refs/heads/master
2020-08-06T12:16:23.274334
2019-10-05T05:09:36
2019-10-05T05:09:36
212,972,117
0
0
null
null
null
null
UTF-8
Java
false
false
432
java
package com.sc.interview.crudapp; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; @SpringBootApplication public class CrudApplication extends SpringBootServletInitializer { public static void main(String[] args) { SpringApplication.run(CrudApplication.class, args); } }
[ "nilesh.kanawade@cloudjee.com" ]
nilesh.kanawade@cloudjee.com
8cad0a5d487e5cdd3775a348bad69914916cc651
21871460820dba86a7e782a00348794854f0c89b
/app/src/main/java/com/pcassem/yunzhuangpei/home/adapter/CommentListAdapter.java
f26f8f5948b7c9657dc5bd9174a58ef90494cd86
[]
no_license
sengeiou/YunZhuangPei
56ffd204f08e336cb4d67ef2d59d7a5b423a8c1a
2e9da5c5bb2e3726b56bdf9c3a2f95d2587919cd
refs/heads/master
2022-04-27T14:44:42.314625
2020-04-29T02:58:10
2020-04-29T02:58:10
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,824
java
package com.pcassem.yunzhuangpei.home.adapter; import android.content.Context; import android.net.Uri; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.TextView; import com.facebook.drawee.view.SimpleDraweeView; import com.pcassem.yunzhuangpei.R; import com.pcassem.yunzhuangpei.entity.CommentEntity; import java.text.SimpleDateFormat; import java.util.Date; import java.util.List; public class CommentListAdapter extends BaseAdapter { Context context; List<CommentEntity> commentListData; CommentEntity commentEntity; public CommentListAdapter(Context c, List<CommentEntity> data) { this.context = c; this.commentListData = data; } @Override public int getCount() { return commentListData.size(); } @Override public Object getItem(int i) { return commentListData.get(i); } @Override public long getItemId(int i) { return i; } @Override public View getView(int i, View convertView, ViewGroup viewGroup) { ViewHolder viewHolder; // 重用convertView if (convertView == null) { viewHolder = new ViewHolder(); convertView = LayoutInflater.from(context).inflate(R.layout.item_news_comment_list, null); viewHolder.userIcon = (SimpleDraweeView) convertView.findViewById(R.id.user_icon); viewHolder.userName = (TextView) convertView.findViewById(R.id.user_name); viewHolder.createTime = (TextView) convertView.findViewById(R.id.create_time); viewHolder.content = (TextView) convertView.findViewById(R.id.content); convertView.setTag(viewHolder); } else { viewHolder = (ViewHolder) convertView.getTag(); } // 适配数据 commentEntity = commentListData.get(i); String url = commentEntity.getUserIcon(); viewHolder.userIcon.setImageURI(Uri.parse(url)); viewHolder.userName.setText(commentEntity.getUserName()); viewHolder.createTime.setText(formatDate(commentEntity.getCreateTime())); viewHolder.content.setText(commentEntity.getContent()); return convertView; } public void addComment(CommentEntity comment) { commentListData.add(comment); notifyDataSetChanged(); } public static class ViewHolder { SimpleDraweeView userIcon; TextView userName; TextView createTime; TextView content; } //时间戳转换 public String formatDate(long timeStamp) { SimpleDateFormat sdf=new SimpleDateFormat("yyyy年MM月dd日"); String sd = sdf.format(new Date(Long.parseLong(String.valueOf(timeStamp)))); return sd; } }
[ "1795638289@qq.com" ]
1795638289@qq.com
593dec486f8d959dbbfe37343e40308368f23071
a1f2113f479d176eebc97a870523d7283dbbef02
/shoppingCart/src/main/java/com/mediaocean/shoppingcart/service/impl/CheckoutServiceImpl.java
f353f1cb1b7f4204c22e9139d663321bcd52a174
[]
no_license
mubshaikh/Assignments
3b57bf8475c3f41714c425288363cc8f437ece19
70551f0f3f896089fcdecd7b002110aefb271ee9
refs/heads/master
2021-01-10T06:52:24.491084
2016-02-11T16:17:21
2016-02-11T16:17:21
51,505,101
0
0
null
null
null
null
UTF-8
Java
false
false
89
java
package com.mediaocean.shoppingcart.service.impl; public class CheckoutServiceImpl { }
[ "mubeen.devops@gmail.com" ]
mubeen.devops@gmail.com
65ea8dd8158c7585caa3fe0cd2836d95a6c91c63
8ae87351fecb06b1d1f4abd1b77660f44bc62097
/web-services workspace/SpringBootMicroservices/src/test/java/com/cjc/main/SpringBootMicroservicesApplicationTests.java
ecd534db1ccab813946048f846138e48670e801b
[]
no_license
omkar-falke/micro-web-service
d852791cc22a7d70a13cf30246f3df5318b80274
e11a90f3b03abfd72e12b73a4f818506ee680ebc
refs/heads/master
2023-04-11T07:23:14.388589
2019-07-25T15:22:20
2019-07-25T15:22:20
198,855,402
0
0
null
2023-03-27T22:22:25
2019-07-25T15:18:56
JavaScript
UTF-8
Java
false
false
346
java
package com.cjc.main; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest public class SpringBootMicroservicesApplicationTests { @Test public void contextLoads() { } }
[ "omkar.falke95@gmail.com" ]
omkar.falke95@gmail.com
9e17401ef1fdca8b4d9220af26c402f3bc6eeaf6
da53e363c07e16abb281c3e826f5ec3c8182db9a
/BookHub/app/src/main/java/com/androidexample/bookhub/KenBurnsView.java
6c6aca7462fa470e46d97a4230ab32d0ef12e0dd
[]
no_license
manmeet-22/BookHub-App
ba14989a1090d5a11471589375358d1e379a92a5
ec19afb9967e1051554115c960f66991c12289a4
refs/heads/master
2021-12-14T19:22:30.227412
2021-12-07T17:14:58
2021-12-07T17:14:58
85,737,026
1
0
null
null
null
null
UTF-8
Java
false
false
10,830
java
package com.androidexample.bookhub; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Matrix; import android.graphics.RectF; import android.graphics.drawable.Drawable; import android.net.Uri; import android.util.AttributeSet; import android.widget.ImageView; /** * {@link ImageView} extension that animates its image with the * <a href="http://en.wikipedia.org/wiki/Ken_Burns_effect">Ken Burns Effect</a>. * * @author Flavio Faria * @see Transition * @see TransitionGenerator */ public class KenBurnsView extends ImageView { /** * Delay between a pair of frames at a 60 FPS frame rate. */ private static final long FRAME_DELAY = 1000 / 60; /** * Matrix used to perform all the necessary transition transformations. */ private final Matrix mMatrix = new Matrix(); /** * The rect that holds the bounds of this view. */ private final RectF mViewportRect = new RectF(); /** * The {@link TransitionGenerator} implementation used to perform the transitions between * rects. The default {@link TransitionGenerator} is {@link RandomTransitionGenerator}. */ private TransitionGenerator mTransGen = new RandomTransitionGenerator(); /** * A {@link TransitionListener} to be notified when * a transition starts or ends. */ private TransitionListener mTransitionListener; /** * The ongoing transition. */ private Transition mCurrentTrans; /** * The rect that holds the bounds of the current {@link Drawable}. */ private RectF mDrawableRect; /** * The progress of the animation, in milliseconds. */ private long mElapsedTime; /** * The time, in milliseconds, of the last animation frame. * This is useful to increment {@link #mElapsedTime} regardless * of the amount of time the animation has been paused. */ private long mLastFrameTime; /** * Controls whether the the animation is running. */ private boolean mPaused; /** * Indicates whether the parent constructor was already called. * This is needed to distinguish if the image is being set before * or after the super class constructor returns. */ private boolean mInitialized; public KenBurnsView(Context context) { this(context, null); } public KenBurnsView(Context context, AttributeSet attrs) { this(context, attrs, 0); } public KenBurnsView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); mInitialized = true; // Attention to the super call here! super.setScaleType(ScaleType.MATRIX); } @Override public void setScaleType(ScaleType scaleType) { // It'll always be center-cropped by default. } @Override public void setVisibility(int visibility) { super.setVisibility(visibility); /* When not visible, onDraw() doesn't get called, but the time elapses anyway. */ switch (visibility) { case VISIBLE: resume(); break; default: pause(); break; } } @Override public void setImageBitmap(Bitmap bm) { super.setImageBitmap(bm); handleImageChange(); } @Override public void setImageResource(int resId) { super.setImageResource(resId); handleImageChange(); } @Override public void setImageURI(Uri uri) { super.setImageURI(uri); handleImageChange(); } @Override public void setImageDrawable(Drawable drawable) { super.setImageDrawable(drawable); handleImageChange(); } @Override protected void onSizeChanged(int w, int h, int oldw, int oldh) { super.onSizeChanged(w, h, oldw, oldh); restart(); } @Override protected void onDraw(Canvas canvas) { Drawable d = getDrawable(); if (!mPaused && d != null) { if (mDrawableRect.isEmpty()) { updateDrawableBounds(); } else if (hasBounds()) { if (mCurrentTrans == null) { // Starting the first transition. startNewTransition(); } if (mCurrentTrans.getDestinyRect() != null) { // If null, it's supposed to stop. mElapsedTime += System.currentTimeMillis() - mLastFrameTime; RectF currentRect = mCurrentTrans.getInterpolatedRect(mElapsedTime); float widthScale = mDrawableRect.width() / currentRect.width(); float heightScale = mDrawableRect.height() / currentRect.height(); // Scale to make the current rect match the smallest drawable dimension. float currRectToDrwScale = Math.min(widthScale, heightScale); // Scale to make the current rect match the viewport bounds. float currRectToVpScale = mViewportRect.width() / currentRect.width(); // Combines the two scales to fill the viewport with the current rect. float totalScale = currRectToDrwScale * currRectToVpScale; float translX = totalScale * (mDrawableRect.centerX() - currentRect.left); float translY = totalScale * (mDrawableRect.centerY() - currentRect.top); /* Performs matrix transformations to fit the content of the current rect into the entire view. */ mMatrix.reset(); mMatrix.postTranslate(-mDrawableRect.width() / 2, -mDrawableRect.height() / 2); mMatrix.postScale(totalScale, totalScale); mMatrix.postTranslate(translX, translY); setImageMatrix(mMatrix); // Current transition is over. It's time to start a new one. if (mElapsedTime >= mCurrentTrans.getDuration()) { fireTransitionEnd(mCurrentTrans); startNewTransition(); } } else { // Stopping? A stop event has to be fired. fireTransitionEnd(mCurrentTrans); } } mLastFrameTime = System.currentTimeMillis(); postInvalidateDelayed(FRAME_DELAY); } super.onDraw(canvas); } /** * Generates and starts a transition. */ private void startNewTransition() { if (!hasBounds()) { throw new UnsupportedOperationException("Can't start transition if the " + "drawable has no bounds!"); } mCurrentTrans = mTransGen.generateNextTransition(mDrawableRect, mViewportRect); mElapsedTime = 0; mLastFrameTime = System.currentTimeMillis(); fireTransitionStart(mCurrentTrans); } /** * Creates a new transition and starts over. */ public void restart() { int width = getWidth(); int height = getHeight(); if (width == 0 || height == 0) { throw new UnsupportedOperationException("Can't call restart() when view area is zero!"); } updateViewport(width, height); updateDrawableBounds(); if (hasBounds()) { startNewTransition(); } } /** * Checks whether this view has bounds. * * @return */ private boolean hasBounds() { return !mViewportRect.isEmpty(); } /** * Fires a start event on {@link #mTransitionListener}; * * @param transition the transition that just started. */ private void fireTransitionStart(Transition transition) { if (mTransitionListener != null && transition != null) { mTransitionListener.onTransitionStart(transition); } } /** * Fires an end event on {@link #mTransitionListener}; * * @param transition the transition that just ended. */ private void fireTransitionEnd(Transition transition) { if (mTransitionListener != null && transition != null) { mTransitionListener.onTransitionEnd(transition); } } /** * Sets the {@link TransitionGenerator} to be used in animations. * * @param transgen the {@link TransitionGenerator} to be used in animations. */ public void setTransitionGenerator(TransitionGenerator transgen) { mTransGen = transgen; if (hasBounds()) { startNewTransition(); } } /** * Updates the viewport rect. This must be called every time the size of this view changes. * * @param width the new viewport with. * @param height the new viewport height. */ private void updateViewport(float width, float height) { mViewportRect.set(0, 0, width, height); } /** * Updates the drawable bounds rect. This must be called every time the drawable * associated to this view changes. */ private void updateDrawableBounds() { if (mDrawableRect == null) { mDrawableRect = new RectF(); } Drawable d = getDrawable(); if (d != null) { mDrawableRect.set(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight()); } } /** * This method is called every time the underlying image * is changed. */ private void handleImageChange() { updateDrawableBounds(); /* Don't start a new transition if this event was fired during the super constructor execution. The view won't be ready at this time. Also, don't start it if this view size is still unknown. */ if (mInitialized && hasBounds()) { startNewTransition(); } } public void setTransitionListener(TransitionListener transitionListener) { mTransitionListener = transitionListener; } /** * Pauses the Ken Burns Effect animation. */ public void pause() { mPaused = true; } /** * Resumes the Ken Burns Effect animation. */ public void resume() { mPaused = false; // This will make the animation to continue from where it stopped. mLastFrameTime = System.currentTimeMillis(); invalidate(); } /** * A transition listener receives notifications when a transition starts or ends. */ public interface TransitionListener { /** * Notifies the start of a transition. * * @param transition the transition that just started. */ public void onTransitionStart(Transition transition); /** * Notifies the end of a transition. * * @param transition the transition that just ended. */ public void onTransitionEnd(Transition transition); } }
[ "singhmanmeet2222@gmail.com" ]
singhmanmeet2222@gmail.com
1386dbed1c4279600f6fec2424668c180f24518c
885a722e3e5814ae4942ac5e8cf8d0091e734b4c
/BAEKJOON/2000~/2902_KMP는 왜 KMP일까(JAVA)/Main.java
8c38c64865837303692908c28ce515fe893c01dc
[]
no_license
ledpear/algorithm
52f3ea25842eee20b3bbd48e51825b9df4942e03
4922c6fe5ca0b98a90dee218b756006e7ba05d82
refs/heads/master
2023-06-09T17:47:45.674244
2023-06-03T13:47:11
2023-06-03T13:47:11
133,370,193
0
0
null
null
null
null
UTF-8
Java
false
false
459
java
import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; String input = br.readLine(), output = ""; String[] strSplit = input.split("-"); for(String item : strSplit){ output += item.charAt(0); } System.out.println(output); } }
[ "tjsrb75@gmail.com" ]
tjsrb75@gmail.com
f2cde989ffcda8a39b1ee044cb4f9c084b64b36a
8ae0fcf8f835103f09171ad87a1ea7c3b3e11b1a
/classes/examples/VarArgsTwo.java
87b8a190ed98ffe2327ff4c2d0b1da702a07780a
[]
no_license
petreadorin/MyJava
e99fa84ac748ebf50bb4a1b02fa09fcc40397d41
f4713d68df2dd531f3461022e9e90b7a521867be
refs/heads/master
2023-02-23T04:28:36.799213
2021-01-29T10:55:06
2021-01-29T10:55:06
331,701,631
0
0
null
null
null
null
UTF-8
Java
false
false
543
java
package classes.examples; //Normal parameters and var args parameters public class VarArgsTwo { static void vaTest( String msg, int ... v) { System.out.println(msg + v.length); System.out.println("Contents: "); for (int i = 0; i < v.length; i++) System.out.println(" arg " + i + " : " + v[i]); System.out.println(); } public static void main(String[] args) { vaTest("One vararg: ", 10); vaTest("Three varargs: ", 3 , 7, 9); vaTest(("No varargs: ")); } }
[ "petreadorin91@gmail.com" ]
petreadorin91@gmail.com
81914089f2df3d05a6b325c21699fc9904565621
10d31f3c32040aa82a7ff3cfba7a73055704c12e
/methods/src/methods_week_2/GoogleSearch_Method.java
169c6645c0e62c92bb66ea173966a43de8509fdd
[]
no_license
AdnanRumi/Assignments
2c3d9c3573b570e5f09069e07fbd35d93c389fa9
c9f82e4c27b290a677140e34d477062094294db9
refs/heads/master
2023-05-07T09:51:14.455636
2021-05-25T07:28:09
2021-05-25T07:28:09
null
0
0
null
null
null
null
UTF-8
Java
false
false
578
java
package methods_week_2; public class GoogleSearch_Method { public static void main(String[] args) { navigateGoogle(); searchForShoes(); printResults(); } public static void navigateGoogle() { System.out.println("launch safari browser"); System.out.println("navigate to google.com"); } public static void searchForShoes() { System.out.println("type shoe brand into search field"); System.out.println("click on search button"); } public static void printResults() { System.out.println("results for shoes"); } }
[ "saadet@192.168.1.131" ]
saadet@192.168.1.131
852e312a4e9e0c2a63f77b3e620dcf03d97e1b64
28ba6bd6b0006be74530d3f3707f1e68a64d6b65
/src/main/java/com/sxt/utils/OSUtils.java
72ba8e012d06b085ec2339169708139828380d87
[]
no_license
tl2242464389/netty
e3d04a858c38f7da3b65715f294dffa4505b9988
d8522795748ccfac464b2ed56b30ec5793ac3428
refs/heads/master
2020-06-24T11:59:53.592444
2019-07-26T03:19:26
2019-07-26T03:19:26
198,957,909
0
0
null
null
null
null
UTF-8
Java
false
false
16,071
java
package com.sxt.utils; import java.net.InetAddress; import java.net.UnknownHostException; import java.util.Map; import java.util.Properties; import org.hyperic.sigar.CpuInfo; import org.hyperic.sigar.CpuPerc; import org.hyperic.sigar.FileSystem; import org.hyperic.sigar.FileSystemUsage; import org.hyperic.sigar.Mem; import org.hyperic.sigar.NetFlags; import org.hyperic.sigar.NetInterfaceConfig; import org.hyperic.sigar.NetInterfaceStat; import org.hyperic.sigar.OperatingSystem; import org.hyperic.sigar.Sigar; import org.hyperic.sigar.SigarException; import org.hyperic.sigar.Swap; import org.hyperic.sigar.Who; public class OSUtils { public static void main(String[] args) { try { // System信息,从jvm获取 property(); System.out.println("----------------------------------"); // cpu信息 cpu(); System.out.println("----------------------------------"); // 内存信息 memory(); System.out.println("----------------------------------"); // 操作系统信息 os(); System.out.println("----------------------------------"); // 用户信息 who(); System.out.println("----------------------------------"); // 文件系统信息 file(); System.out.println("----------------------------------"); // 网络信息 net(); System.out.println("----------------------------------"); // 以太网信息 ethernet(); System.out.println("----------------------------------"); } catch (Exception e1) { e1.printStackTrace(); } } private static void property() throws UnknownHostException { Runtime r = Runtime.getRuntime(); Properties props = System.getProperties(); InetAddress addr; addr = InetAddress.getLocalHost(); String ip = addr.getHostAddress(); Map<String, String> map = System.getenv(); String userName = map.get("USERNAME");// 获取用户名 String computerName = map.get("COMPUTERNAME");// 获取计算机名 String userDomain = map.get("USERDOMAIN");// 获取计算机域名 System.out.println("用户名: " + userName); System.out.println("计算机名: " + computerName); System.out.println("计算机域名: " + userDomain); System.out.println("本地ip地址: " + ip); System.out.println("本地主机名: " + addr.getHostName()); System.out.println("JVM可以使用的总内存: " + r.totalMemory()); System.out.println("JVM可以使用的剩余内存: " + r.freeMemory()); System.out.println("JVM可以使用的处理器个数: " + r.availableProcessors()); System.out.println("Java的运行环境版本: " + props.getProperty("java.version")); System.out.println("Java的运行环境供应商: " + props.getProperty("java.vendor")); System.out.println("Java供应商的URL: " + props.getProperty("java.vendor.url")); System.out.println("Java的安装路径: " + props.getProperty("java.home")); System.out.println("Java的虚拟机规范版本: " + props.getProperty("java.vm.specification.version")); System.out.println("Java的虚拟机规范供应商: " + props.getProperty("java.vm.specification.vendor")); System.out.println("Java的虚拟机规范名称: " + props.getProperty("java.vm.specification.name")); System.out.println("Java的虚拟机实现版本: " + props.getProperty("java.vm.version")); System.out.println("Java的虚拟机实现供应商: " + props.getProperty("java.vm.vendor")); System.out.println("Java的虚拟机实现名称: " + props.getProperty("java.vm.name")); System.out.println("Java运行时环境规范版本: " + props.getProperty("java.specification.version")); System.out.println("Java运行时环境规范供应商: " + props.getProperty("java.specification.vender")); System.out.println("Java运行时环境规范名称: " + props.getProperty("java.specification.name")); System.out.println("Java的类格式版本号: " + props.getProperty("java.class.version")); System.out.println("Java的类路径: " + props.getProperty("java.class.path")); System.out.println("加载库时搜索的路径列表: " + props.getProperty("java.library.path")); System.out.println("默认的临时文件路径: " + props.getProperty("java.io.tmpdir")); System.out.println("一个或多个扩展目录的路径: " + props.getProperty("java.ext.dirs")); System.out.println("操作系统的名称: " + props.getProperty("os.name")); System.out.println("操作系统的构架: " + props.getProperty("os.arch")); System.out.println("操作系统的版本: " + props.getProperty("os.version")); System.out.println("文件分隔符: " + props.getProperty("file.separator")); System.out.println("路径分隔符: " + props.getProperty("path.separator")); System.out.println("行分隔符: " + props.getProperty("line.separator")); System.out.println("用户的账户名称: " + props.getProperty("user.name")); System.out.println("用户的主目录: " + props.getProperty("user.home")); System.out.println("用户的当前工作目录: " + props.getProperty("user.dir")); } private static void memory() throws SigarException { Sigar sigar = new Sigar(); Mem mem = sigar.getMem(); // 内存总量 System.out.println("内存总量: " + mem.getTotal() / 1024L + "K av"); // 当前内存使用量 System.out.println("当前内存使用量: " + mem.getUsed() / 1024L + "K used"); // 当前内存剩余量 System.out.println("当前内存剩余量: " + mem.getFree() / 1024L + "K free"); Swap swap = sigar.getSwap(); // 交换区总量 System.out.println("交换区总量: " + swap.getTotal() / 1024L + "K av"); // 当前交换区使用量 System.out.println("当前交换区使用量: " + swap.getUsed() / 1024L + "K used"); // 当前交换区剩余量 System.out.println("当前交换区剩余量: " + swap.getFree() / 1024L + "K free"); } private static void cpu() throws SigarException { Sigar sigar = new Sigar(); CpuInfo infos[] = sigar.getCpuInfoList(); CpuPerc cpuList[] = null; cpuList = sigar.getCpuPercList(); for (int i = 0; i < infos.length; i++) {// 不管是单块CPU还是多CPU都适用 CpuInfo info = infos[i]; System.out.println("第" + (i + 1) + "块CPU信息"); System.out.println("CPU的总量MHz: " + info.getMhz());// CPU的总量MHz System.out.println("CPU生产商: " + info.getVendor());// 获得CPU的卖主,如:Intel System.out.println("CPU类别: " + info.getModel());// 获得CPU的类别,如:Celeron System.out.println("CPU缓存数量: " + info.getCacheSize());// 缓冲存储器数量 printCpuPerc(cpuList[i]); } } private static void printCpuPerc(CpuPerc cpu) { System.out.println("CPU用户使用率: " + CpuPerc.format(cpu.getUser()));// 用户使用率 System.out.println("CPU系统使用率: " + CpuPerc.format(cpu.getSys()));// 系统使用率 System.out.println("CPU当前等待率: " + CpuPerc.format(cpu.getWait()));// 当前等待率 System.out.println("CPU当前错误率: " + CpuPerc.format(cpu.getNice()));// System.out.println("CPU当前空闲率: " + CpuPerc.format(cpu.getIdle()));// 当前空闲率 System.out.println("CPU总的使用率: " + CpuPerc.format(cpu.getCombined()));// 总的使用率 } private static void os() { OperatingSystem OS = OperatingSystem.getInstance(); // 操作系统内核类型如: 386、486、586等x86 System.out.println("操作系统: " + OS.getArch()); System.out.println("操作系统CpuEndian(): " + OS.getCpuEndian());// System.out.println("操作系统DataModel(): " + OS.getDataModel());// // 系统描述 System.out.println("操作系统的描述: " + OS.getDescription()); // 操作系统类型 // System.out.println("OS.getName(): " + OS.getName()); // System.out.println("OS.getPatchLevel(): " + OS.getPatchLevel());// // 操作系统的卖主 System.out.println("操作系统的卖主: " + OS.getVendor()); // 卖主名称 System.out.println("操作系统的卖主名: " + OS.getVendorCodeName()); // 操作系统名称 System.out.println("操作系统名称: " + OS.getVendorName()); // 操作系统卖主类型 System.out.println("操作系统卖主类型: " + OS.getVendorVersion()); // 操作系统的版本号 System.out.println("操作系统的版本号: " + OS.getVersion()); } private static void who() throws SigarException { Sigar sigar = new Sigar(); Who who[] = sigar.getWhoList(); if (who != null && who.length > 0) { for (int i = 0; i < who.length; i++) { // System.out.println("当前系统进程表中的用户名" + String.valueOf(i)); Who _who = who[i]; System.out.println("用户控制台: " + _who.getDevice()); System.out.println("用户host: " + _who.getHost()); // System.out.println("getTime(): " + _who.getTime()); // 当前系统进程表中的用户名 System.out.println("当前系统进程表中的用户名: " + _who.getUser()); } } } private static void file() throws Exception { Sigar sigar = new Sigar(); FileSystem fslist[] = sigar.getFileSystemList(); try { for (int i = 0; i < fslist.length; i++) { System.out.println("分区的盘符名称" + i); FileSystem fs = fslist[i]; // 分区的盘符名称 System.out.println("盘符名称: " + fs.getDevName()); // 分区的盘符名称 System.out.println("盘符路径: " + fs.getDirName()); System.out.println("盘符标志: " + fs.getFlags());// // 文件系统类型,比如 FAT32、NTFS System.out.println("盘符类型: " + fs.getSysTypeName()); // 文件系统类型名,比如本地硬盘、光驱、网络文件系统等 System.out.println("盘符类型名: " + fs.getTypeName()); // 文件系统类型 System.out.println("盘符文件系统类型: " + fs.getType()); FileSystemUsage usage = null; usage = sigar.getFileSystemUsage(fs.getDirName()); switch (fs.getType()) { case 0: // TYPE_UNKNOWN :未知 break; case 1: // TYPE_NONE break; case 2: // TYPE_LOCAL_DISK : 本地硬盘 // 文件系统总大小 System.out.println(fs.getDevName() + "总大小: " + usage.getTotal() + "KB"); // 文件系统剩余大小 System.out.println(fs.getDevName() + "剩余大小: " + usage.getFree() + "KB"); // 文件系统可用大小 System.out.println(fs.getDevName() + "可用大小: " + usage.getAvail() + "KB"); // 文件系统已经使用量 System.out.println(fs.getDevName() + "已经使用量: " + usage.getUsed() + "KB"); double usePercent = usage.getUsePercent() * 100D; // 文件系统资源的利用率 System.out.println(fs.getDevName() + "资源的利用率: " + usePercent + "%"); break; case 3:// TYPE_NETWORK :网络 break; case 4:// TYPE_RAM_DISK :闪存 break; case 5:// TYPE_CDROM :光驱 break; case 6:// TYPE_SWAP :页面交换 break; } System.out.println(fs.getDevName() + "读出: " + usage.getDiskReads()); System.out.println(fs.getDevName() + "写入: " + usage.getDiskWrites()); } } catch (Exception e) { // TODO: handle exception e.printStackTrace(); } return; } private static void net() throws Exception { Sigar sigar = new Sigar(); String ifNames[] = sigar.getNetInterfaceList(); for (int i = 0; i < ifNames.length; i++) { String name = ifNames[i]; NetInterfaceConfig ifconfig = sigar.getNetInterfaceConfig(name); System.out.println("网络设备名: " + name);// 网络设备名 System.out.println("IP地址: " + ifconfig.getAddress());// IP地址 System.out.println("子网掩码: " + ifconfig.getNetmask());// 子网掩码 if ((ifconfig.getFlags() & 1L) <= 0L) { System.out.println("!IFF_UP...skipping getNetInterfaceStat"); continue; } NetInterfaceStat ifstat = sigar.getNetInterfaceStat(name); System.out.println(name + "接收的总包裹数:" + ifstat.getRxPackets());// 接收的总包裹数 System.out.println(name + "发送的总包裹数:" + ifstat.getTxPackets());// 发送的总包裹数 System.out.println(name + "接收到的总字节数:" + ifstat.getRxBytes());// 接收到的总字节数 System.out.println(name + "发送的总字节数:" + ifstat.getTxBytes());// 发送的总字节数 System.out.println(name + "接收到的错误包数:" + ifstat.getRxErrors());// 接收到的错误包数 System.out.println(name + "发送数据包时的错误数:" + ifstat.getTxErrors());// 发送数据包时的错误数 System.out.println(name + "接收时丢弃的包数:" + ifstat.getRxDropped());// 接收时丢弃的包数 System.out.println(name + "发送时丢弃的包数:" + ifstat.getTxDropped());// 发送时丢弃的包数 } } private static void ethernet() throws SigarException { Sigar sigar = null; sigar = new Sigar(); String[] ifaces = sigar.getNetInterfaceList(); for (int i = 0; i < ifaces.length; i++) { NetInterfaceConfig cfg = sigar.getNetInterfaceConfig(ifaces[i]); if (NetFlags.LOOPBACK_ADDRESS.equals(cfg.getAddress()) || (cfg.getFlags() & NetFlags.IFF_LOOPBACK) != 0 || NetFlags.NULL_HWADDR.equals(cfg.getHwaddr())) { continue; } System.out.println(cfg.getName() + "IP地址:" + cfg.getAddress());// IP地址 System.out.println(cfg.getName() + "网关广播地址:" + cfg.getBroadcast());// 网关广播地址 System.out.println(cfg.getName() + "网卡MAC地址:" + cfg.getHwaddr());// 网卡MAC地址 System.out.println(cfg.getName() + "子网掩码:" + cfg.getNetmask());// 子网掩码 System.out.println(cfg.getName() + "网卡描述信息:" + cfg.getDescription());// 网卡描述信息 System.out.println(cfg.getName() + "网卡类型" + cfg.getType());// } } }
[ "2242464389@qq.com" ]
2242464389@qq.com
060bf617bdcdf63738ef3714f261d1aaf4f0dac6
f0daa8b59ca5accb6920aa61007c6bd10d6e2961
/src/main/java/mutants/SequentialHeap/LOI_29/SequentialHeap.java
d66dec12f5757d88b3a0788788fc04b5d948817a
[]
no_license
phantomDai/cptiscas
09b211ff984c228471d9ab28f8c5c05f946c753c
83e3ef777b7677c913a0839f8dd8e4df1bc20e0e
refs/heads/master
2021-07-05T10:54:16.856267
2019-06-06T06:18:12
2019-06-06T06:18:12
143,225,040
0
0
null
null
null
null
UTF-8
Java
false
false
3,053
java
// This is a mutant program. // Author : ysma package mutants.SequentialHeap.LOI_29; public class SequentialHeap<T> implements PQueue<T> { private static final int ROOT = 1; int next; HeapNode<T>[] heap; public SequentialHeap( int capacity ) { next = 1; heap = (HeapNode<T>[]) new HeapNode[capacity + 1]; for (int i = 0; i < capacity + 1; i++) { heap[i] = new HeapNode<T>(); } } public void add( T item, int priority ) { int child = next++; heap[child].init( item, priority ); while (child > ROOT) { int parent = child / 2; int oldChild = child; if (heap[child].priority < heap[parent].priority) { swap( child, parent ); child = parent; } else { return; } } } public T getMin() { return heap[ROOT].item; } public synchronized T removeMin() { int bottom = --next; T item = heap[ROOT].item; swap( ROOT, bottom ); if (bottom == ROOT) { return item; } int child = 0; int parent = ROOT; while (parent < heap.length / 2) { int left = parent * 2; int right = parent * 2 + 1; if (left >= next) { break; } else { if (~right >= next || heap[left].priority < heap[right].priority) { child = left; } else { child = right; } } if (heap[child].priority < heap[parent].priority) { swap( parent, child ); parent = child; } else { break; } } return item; } private synchronized void swap( int i, int j ) { HeapNode<T> node = heap[i]; heap[i] = heap[j]; heap[j] = node; } public boolean isEmpty() { return next == 0; } public void sanityCheck() { int stop = next; for (int i = ROOT; i < stop; i++) { int left = i * 2; int right = i * 2 + 1; if (left < stop && heap[left].priority < heap[i].priority) { System.out.println( "Heap property violated:" ); System.out.printf( "\theap[%d] = %d, left child heap[%d] = %d\n", i, heap[i].priority, left, heap[left].priority ); } if (right < stop && heap[right].priority < heap[i].priority) { System.out.println( "Heap property violated:" ); System.out.printf( "\theap[%d] = %d, right child heap[%d] = %d\n", i, heap[i].priority, right, heap[right].priority ); } } } private static class HeapNode<S> { int priority; S item; public void init( S myItem, int myPriority ) { item = myItem; priority = myPriority; } } }
[ "daihepeng@sina.cn" ]
daihepeng@sina.cn
f7bb74f852ebbe49355f29da0f2cf7a0b0de414a
c6e9d89306da3dee1b2339014d8b8216309c052b
/src/org/adligo/fabricate_tests/models/dependencies/LibraryDependencyTrial.java
7d901bdada0749a1a7adebcef8e46a831584a715
[ "Apache-2.0" ]
permissive
adligo/fabricate_tests.adligo.org
70143d659c1cf50cc9ef23e1a0c1ac74ba87fa5a
b2d2c80d2c6fb84338fb1c1599888629b348abe0
refs/heads/master
2021-01-10T21:35:35.966080
2015-04-01T13:36:45
2015-04-01T13:36:45
33,228,690
0
0
null
null
null
null
UTF-8
Java
false
false
5,486
java
package org.adligo.fabricate_tests.models.dependencies; import org.adligo.fabricate.models.dependencies.LibraryDependency; import org.adligo.fabricate.models.dependencies.LibraryDependencyMutant; import org.adligo.fabricate.xml.io_v1.library_v1_0.LibraryReferenceType; import org.adligo.tests4j.shared.asserts.common.ExpectedThrowable; import org.adligo.tests4j.shared.asserts.common.I_Thrower; import org.adligo.tests4j.system.shared.trials.SourceFileScope; import org.adligo.tests4j.system.shared.trials.Test; import org.adligo.tests4j_4mockito.MockitoSourceFileTrial; import java.util.ArrayList; import java.util.List; @SourceFileScope (sourceClass=LibraryDependency.class, minCoverage=80.0) public class LibraryDependencyTrial extends MockitoSourceFileTrial { @Test public void testConstructorExceptions() { assertThrown(new ExpectedThrowable(NullPointerException.class), new I_Thrower() { @SuppressWarnings("unused") @Override public void run() throws Throwable { new LibraryDependency(null); } }); } @Test public void testConstructorCopy() { LibraryDependencyMutant pdm = new LibraryDependencyMutant(); pdm.setPlatform("platform"); pdm.setLibraryName("ln"); assertEquals("platform", pdm.getPlatform()); assertEquals("ln", pdm.getLibraryName()); LibraryDependency pdm2 = new LibraryDependency(pdm); assertEquals("platform", pdm2.getPlatform()); assertEquals("ln", pdm2.getLibraryName()); } @SuppressWarnings("boxing") @Test public void testMethodsEqualsHashCodeAndToString() { LibraryDependencyMutant pdm = new LibraryDependencyMutant(); pdm.setPlatform("platform"); pdm.setLibraryName("ln"); LibraryDependency pd = new LibraryDependency(pdm); LibraryDependencyMutant pdmA = new LibraryDependencyMutant(); pdmA.setPlatform("platform"); pdmA.setLibraryName("ln"); LibraryDependency pdA = new LibraryDependency(pdmA); LibraryDependencyMutant pdm2 = new LibraryDependencyMutant(); pdm2.setPlatform("platform"); pdm2.setLibraryName("ln2"); LibraryDependency pd2 = new LibraryDependency(pdm2); LibraryDependencyMutant pdm3 = new LibraryDependencyMutant(); pdm3.setPlatform("platform3"); pdm3.setLibraryName("ln"); LibraryDependency pd3 = new LibraryDependency(pdm3); LibraryDependencyMutant pdm4 = new LibraryDependencyMutant(); pdm4.setLibraryName("ln"); LibraryDependency pd4 = new LibraryDependency(pdm4); LibraryDependencyMutant pdm5 = new LibraryDependencyMutant(); pdm5.setPlatform("platform"); LibraryDependency pd5 = new LibraryDependency(pdm5); //LibraryDependency ld = new LibraryDependency() assertEquals(pd, pd); assertEquals(pd.hashCode(), pd.hashCode()); assertEquals("LibraryDependency [name=ln,platform=platform]", pd.toString()); assertEquals(pd, pdA); assertEquals(pd.hashCode(), pdA.hashCode()); assertNotEquals(pd, pd2); assertNotEquals(pd.hashCode(), pd2.hashCode()); assertNotEquals(pd, pd3); assertNotEquals(pd.hashCode(), pd3.hashCode()); assertNotEquals(pd, pd4); assertNotEquals(pd.hashCode(), pd4.hashCode()); assertNotEquals(pd, pd5); assertNotEquals(pd.hashCode(), pd5.hashCode()); assertEquals("LibraryDependency [name=ln2,platform=platform]", pd2.toString()); assertEquals("LibraryDependency [name=ln,platform=platform3]", pd3.toString()); assertNotEquals(pdA, pd2); assertNotEquals(pdA.hashCode(), pd2.hashCode()); assertNotEquals(pdA, pd3); assertNotEquals(pdA.hashCode(), pd3.hashCode()); assertNotEquals(pdA, pd4); assertNotEquals(pdA.hashCode(), pd4.hashCode()); assertNotEquals(pdA, pd5); assertNotEquals(pdA.hashCode(), pd5.hashCode()); assertEquals("LibraryDependency [name=ln]", pd4.toString()); assertNotEquals(pd3, pdA); assertNotEquals(pd3.hashCode(), pdA.hashCode()); assertNotEquals(pd3, pd2); assertNotEquals(pd3.hashCode(), pd2.hashCode()); assertNotEquals(pd3, pd4); assertNotEquals(pd3.hashCode(), pd4.hashCode()); assertNotEquals(pd3, pd5); assertNotEquals(pd3.hashCode(), pd5.hashCode()); assertEquals("LibraryDependency [name=null,platform=platform]", pd5.toString()); } @Test public void testStaticMethodsConvert() { LibraryReferenceType lrt = new LibraryReferenceType(); lrt.setPlatform("platform"); lrt.setValue("libA"); LibraryDependency ldm = LibraryDependency.convert(lrt); assertEquals("platform", ldm.getPlatform()); assertEquals("libA", ldm.getLibraryName()); LibraryReferenceType lrtB = new LibraryReferenceType(); lrtB.setPlatform("platformB"); lrtB.setValue("libB"); LibraryDependency ldmB = LibraryDependency.convert(lrtB); assertEquals("platformB", ldmB.getPlatform()); assertEquals("libB", ldmB.getLibraryName()); List<LibraryReferenceType> asList = new ArrayList<LibraryReferenceType>(); asList.add(lrt); asList.add(lrtB); List<LibraryDependency> convertedList = LibraryDependency.convert(asList); ldm = convertedList.get(0); assertEquals("platform", ldm.getPlatform()); assertEquals("libA", ldm.getLibraryName()); ldmB = convertedList.get(1); assertEquals("platformB", ldmB.getPlatform()); assertEquals("libB", ldmB.getLibraryName()); } }
[ "scott@adligo.com" ]
scott@adligo.com
f00899dfee0f30d53fe2fa679589bd72f9dec78c
15aef5ed8bf19ba6a332f924887b364d7baf1aec
/src/gui/MainFrame.java
089e20cb0433d94a7551166490e2c003dbd4b0ff
[]
no_license
madchemist10/Euchre
3dbbead48f2424ec73650c97185267e0c3c4ec9a
4aa886032539b6eb48667e0d612f70f388659d11
refs/heads/master
2020-12-07T16:47:57.764083
2016-08-18T19:53:00
2016-08-18T19:53:00
null
0
0
null
null
null
null
UTF-8
Java
false
false
681
java
package gui; import constants.Constants; import gamePlay.Euker; import javax.swing.*; import java.awt.*; /** * Top level frame for the gui. */ public class MainFrame extends JFrame{ public MainFrame(Euker eukerGame){ this.setLayout(new FlowLayout()); this.setSize(Constants.WIDTH_FRAME, Constants.HEIGHT_FRAME); this.setTitle(Constants.EUKER); this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); } /** * Helper method to validate drawn components. * @param c component that is to be validated. */ public static void validateComponent(Component c){ c.revalidate(); c.repaint(); } }
[ "2012kemp1234@gmail.com" ]
2012kemp1234@gmail.com
08959026a68161f8326eccaeb14a6d9b4fa67cf4
a8eca0a546d09a13e86e0bcf00ba81f748e134ed
/app/src/androidTest/java/com/hcykj/mvpdemo/ExampleInstrumentedTest.java
e72a4ea94b4eb4bb2cf26c250495d7263d1d6f16
[]
no_license
SongJun973208/MvpDemo
be78cb4487b68675887277f3d6ea2df1de1b315d
49ac4405a639f96990a05884c37ed24c9ee210d8
refs/heads/master
2020-04-28T17:13:43.546742
2019-03-13T16:19:46
2019-03-13T16:19:46
175,438,260
1
0
null
null
null
null
UTF-8
Java
false
false
718
java
package com.hcykj.mvpdemo; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() { // Context of the app under test. Context appContext = InstrumentationRegistry.getTargetContext(); assertEquals("com.hcykj.mvpdemo", appContext.getPackageName()); } }
[ "1090534619@qq/com" ]
1090534619@qq/com
51f2ef53634b11fd894a28ab275f4adb671ffef7
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/5/5_93071832040f1bec1a961c5a8d6990cc4ff50854/ClusterConnectionImpl/5_93071832040f1bec1a961c5a8d6990cc4ff50854_ClusterConnectionImpl_s.java
f9aafe9cd946188e31dfbf0b758a0c2da0293f9c
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
34,572
java
/* * Copyright 2009 Red Hat, Inc. * Red Hat 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.hornetq.core.server.cluster.impl; import static org.hornetq.api.core.management.NotificationType.CONSUMER_CLOSED; import static org.hornetq.api.core.management.NotificationType.CONSUMER_CREATED; import java.util.*; import java.util.Map.Entry; import java.util.concurrent.ScheduledExecutorService; import org.hornetq.api.core.DiscoveryGroupConfiguration; import org.hornetq.api.core.Pair; import org.hornetq.api.core.SimpleString; import org.hornetq.api.core.TransportConfiguration; import org.hornetq.api.core.client.ClientMessage; import org.hornetq.api.core.client.HornetQClient; import org.hornetq.api.core.management.ManagementHelper; import org.hornetq.api.core.management.NotificationType; import org.hornetq.core.client.impl.ServerLocatorInternal; import org.hornetq.core.logging.Logger; import org.hornetq.core.postoffice.Binding; import org.hornetq.core.postoffice.Bindings; import org.hornetq.core.postoffice.PostOffice; import org.hornetq.core.postoffice.impl.PostOfficeImpl; import org.hornetq.core.server.HornetQComponent; import org.hornetq.core.server.HornetQServer; import org.hornetq.core.server.Queue; import org.hornetq.core.server.cluster.Bridge; import org.hornetq.core.server.cluster.ClusterConnection; import org.hornetq.core.server.cluster.MessageFlowRecord; import org.hornetq.core.server.cluster.RemoteQueueBinding; import org.hornetq.core.server.group.impl.Proposal; import org.hornetq.core.server.group.impl.Response; import org.hornetq.core.server.management.ManagementService; import org.hornetq.core.server.management.Notification; import org.hornetq.utils.ExecutorFactory; import org.hornetq.utils.TypedProperties; import org.hornetq.utils.UUID; /** * * A ClusterConnectionImpl * * @author <a href="mailto:tim.fox@jboss.com">Tim Fox</a> * * Created 21 Jan 2009 14:43:05 * * */ public class ClusterConnectionImpl implements ClusterConnection { private static final Logger log = Logger.getLogger(ClusterConnectionImpl.class); private final org.hornetq.utils.ExecutorFactory executorFactory; private final HornetQServer server; private final PostOffice postOffice; private final ManagementService managementService; private final SimpleString name; private final SimpleString address; private final long retryInterval; private final boolean useDuplicateDetection; private final boolean routeWhenNoConsumers; private final Map<String, MessageFlowRecord> records = new HashMap<String, MessageFlowRecord>(); private final ScheduledExecutorService scheduledExecutor; private final int maxHops; private final UUID nodeUUID; private boolean backup; private volatile boolean started; private final String clusterUser; private final String clusterPassword; private final ClusterConnector clusterConnector; private ServerLocatorInternal serverLocator; private final TransportConfiguration connector; private final boolean allowDirectConnectionsOnly; private final Set<TransportConfiguration> allowableConnections = new HashSet<TransportConfiguration>(); public ClusterConnectionImpl(final TransportConfiguration[] tcConfigs, final TransportConfiguration connector, final SimpleString name, final SimpleString address, final long retryInterval, final boolean useDuplicateDetection, final boolean routeWhenNoConsumers, final int confirmationWindowSize, final ExecutorFactory executorFactory, final HornetQServer server, final PostOffice postOffice, final ManagementService managementService, final ScheduledExecutorService scheduledExecutor, final int maxHops, final UUID nodeUUID, final boolean backup, final String clusterUser, final String clusterPassword, final boolean allowDirectConnectionsOnly) throws Exception { if (nodeUUID == null) { throw new IllegalArgumentException("node id is null"); } this.nodeUUID = nodeUUID; this.connector = connector; this.name = name; this.address = address; this.retryInterval = retryInterval; this.useDuplicateDetection = useDuplicateDetection; this.routeWhenNoConsumers = routeWhenNoConsumers; this.executorFactory = executorFactory; this.server = server; this.postOffice = postOffice; this.managementService = managementService; this.scheduledExecutor = scheduledExecutor; this.maxHops = maxHops; this.backup = backup; this.clusterUser = clusterUser; this.clusterPassword = clusterPassword; this.allowDirectConnectionsOnly = allowDirectConnectionsOnly; clusterConnector = new StaticClusterConnector(tcConfigs); if (tcConfigs != null && tcConfigs.length > 0) { // a cluster connection will connect to other nodes only if they are directly connected // through a static list of connectors or broadcasting using UDP. if(allowDirectConnectionsOnly) { allowableConnections.addAll(Arrays.asList(tcConfigs)); } } } public ClusterConnectionImpl(DiscoveryGroupConfiguration dg, final TransportConfiguration connector, final SimpleString name, final SimpleString address, final long retryInterval, final boolean useDuplicateDetection, final boolean routeWhenNoConsumers, final int confirmationWindowSize, final ExecutorFactory executorFactory, final HornetQServer server, final PostOffice postOffice, final ManagementService managementService, final ScheduledExecutorService scheduledExecutor, final int maxHops, final UUID nodeUUID, final boolean backup, final String clusterUser, final String clusterPassword, final boolean allowDirectConnectionsOnly) throws Exception { if (nodeUUID == null) { throw new IllegalArgumentException("node id is null"); } this.nodeUUID = nodeUUID; this.connector = connector; this.name = name; this.address = address; this.retryInterval = retryInterval; this.useDuplicateDetection = useDuplicateDetection; this.routeWhenNoConsumers = routeWhenNoConsumers; this.executorFactory = executorFactory; this.server = server; this.postOffice = postOffice; this.managementService = managementService; this.scheduledExecutor = scheduledExecutor; this.maxHops = maxHops; this.backup = backup; this.clusterUser = clusterUser; this.clusterPassword = clusterPassword; this.allowDirectConnectionsOnly = allowDirectConnectionsOnly; clusterConnector = new DiscoveryClusterConnector(dg); } public synchronized void start() throws Exception { if (started) { return; } started = true; if(!backup) { activate(); } } public void stop() throws Exception { if (!started) { return; } if (serverLocator != null) { serverLocator.removeClusterTopologyListener(this); } synchronized (this) { for (MessageFlowRecord record : records.values()) { try { record.close(); } catch (Exception ignore) { } } if (managementService != null) { TypedProperties props = new TypedProperties(); props.putSimpleStringProperty(new SimpleString("name"), name); Notification notification = new Notification(nodeUUID.toString(), NotificationType.CLUSTER_CONNECTION_STOPPED, props); managementService.sendNotification(notification); } if(serverLocator != null) { serverLocator.close(); serverLocator = null; } started = false; } } public boolean isStarted() { return started; } public SimpleString getName() { return name; } public String getNodeID() { return nodeUUID.toString(); } public synchronized Map<String, String> getNodes() { Map<String, String> nodes = new HashMap<String, String>(); for (Entry<String, MessageFlowRecord> record : records.entrySet()) { if (record.getValue().getBridge().getForwardingConnection() != null) { nodes.put(record.getKey(), record.getValue().getBridge().getForwardingConnection().getRemoteAddress()); } } return nodes; } public synchronized void activate() throws Exception { if (!started) { return; } backup = false; serverLocator = clusterConnector.createServerLocator(); if (serverLocator != null) { serverLocator.setNodeID(nodeUUID.toString()); serverLocator.setReconnectAttempts(-1); serverLocator.setClusterConnection(true); serverLocator.setClusterTransportConfiguration(connector); serverLocator.setBackup(server.getConfiguration().isBackup()); serverLocator.setInitialConnectAttempts(-1); if(retryInterval > 0) { this.serverLocator.setRetryInterval(retryInterval); } serverLocator.addClusterTopologyListener(this); serverLocator.start(server.getExecutorFactory().getExecutor()); } if (managementService != null) { TypedProperties props = new TypedProperties(); props.putSimpleStringProperty(new SimpleString("name"), name); Notification notification = new Notification(nodeUUID.toString(), NotificationType.CLUSTER_CONNECTION_STARTED, props); managementService.sendNotification(notification); } } public TransportConfiguration getConnector() { return connector; } // ClusterTopologyListener implementation ------------------------------------------------------------------ public synchronized void nodeDown(final String nodeID) { if (nodeID.equals(nodeUUID.toString())) { return; } //Remove the flow record for that node MessageFlowRecord record = records.get(nodeID); if (record != null) { try { record.reset(); } catch (Exception e) { log.error("Failed to close flow record", e); } } server.getClusterManager().notifyNodeDown(nodeID); } public synchronized void nodeUP(final String nodeID, final Pair<TransportConfiguration, TransportConfiguration> connectorPair, final boolean last, final int distance) { // discard notifications about ourselves unless its from our backup if (nodeID.equals(nodeUUID.toString())) { if(connectorPair.b != null) { server.getClusterManager().notifyNodeUp(nodeID, connectorPair, last, distance); } return; } // we propagate the node notifications to all cluster topology listeners server.getClusterManager().notifyNodeUp(nodeID, connectorPair, last, distance); // if the node is more than 1 hop away, we do not create a bridge for direct cluster connection if (allowDirectConnectionsOnly && distance > 1 && !allowableConnections.contains(connectorPair.a)) { return; } // FIXME required to prevent cluster connections w/o discovery group // and empty static connectors to create bridges... ulgy! if (serverLocator == null) { return; } try { MessageFlowRecord record = records.get(nodeID); if (record == null) { // New node - create a new flow record final SimpleString queueName = new SimpleString("sf." + name + "." + nodeID); Binding queueBinding = postOffice.getBinding(queueName); Queue queue; if (queueBinding != null) { queue = (Queue)queueBinding.getBindable(); } else { // Add binding in storage so the queue will get reloaded on startup and we can find it - it's never // actually routed to at that address though queue = server.createQueue(queueName, queueName, null, true, false); } createNewRecord(nodeID, connectorPair.a, queueName, queue, true); } else { // FIXME apple and orange comparison. I don't understand it... //if (!connectorPair.a.equals(record.getBridge().getForwardingConnection().getTransportConnection())) // { // // New live node - close it and recreate it - TODO - CAN THIS EVER HAPPEN? //} } } catch (Exception e) { log.error("Failed to update topology", e); } } private void createNewRecord(final String nodeID, final TransportConfiguration connector, final SimpleString queueName, final Queue queue, final boolean start) throws Exception { MessageFlowRecordImpl record = new MessageFlowRecordImpl(queue); Bridge bridge = new ClusterConnectionBridge(serverLocator, nodeUUID, nodeID, queueName, queue, executorFactory.getExecutor(), null, null, scheduledExecutor, null, useDuplicateDetection, clusterUser, clusterPassword, !backup, server.getStorageManager(), managementService.getManagementAddress(), managementService.getManagementNotificationAddress(), record, connector); record.setBridge(bridge); records.put(nodeID, record); if (start) { bridge.start(); } } // Inner classes ----------------------------------------------------------------------------------- private class MessageFlowRecordImpl implements MessageFlowRecord { private Bridge bridge; private final Queue queue; private final Map<SimpleString, RemoteQueueBinding> bindings = new HashMap<SimpleString, RemoteQueueBinding>(); private volatile boolean firstReset = false; public MessageFlowRecordImpl(final Queue queue) { this.queue = queue; } public String getAddress() { return address.toString(); } public int getMaxHops() { return maxHops; } public void close() throws Exception { bridge.stop(); clearBindings(); } public void reset() throws Exception { clearBindings(); } public void setBridge(final Bridge bridge) { this.bridge = bridge; } public Bridge getBridge() { return bridge; } public synchronized void onMessage(final ClientMessage message) { try { // Reset the bindings if (message.containsProperty(PostOfficeImpl.HDR_RESET_QUEUE_DATA)) { clearBindings(); firstReset = true; return; } if (!firstReset) { return; } // TODO - optimised this by just passing int in header - but filter needs to be extended to support IN with // a list of integers SimpleString type = message.getSimpleStringProperty(ManagementHelper.HDR_NOTIFICATION_TYPE); NotificationType ntype = NotificationType.valueOf(type.toString()); switch (ntype) { case BINDING_ADDED: { doBindingAdded(message); break; } case BINDING_REMOVED: { doBindingRemoved(message); break; } case CONSUMER_CREATED: { doConsumerCreated(message); break; } case CONSUMER_CLOSED: { doConsumerClosed(message); break; } case PROPOSAL: { doProposalReceived(message); break; } case PROPOSAL_RESPONSE: { doProposalResponseReceived(message); break; } default: { throw new IllegalArgumentException("Invalid type " + ntype); } } } catch (Exception e) { ClusterConnectionImpl.log.error("Failed to handle message", e); } } /* * Inform the grouping handler of a proposal * */ private synchronized void doProposalReceived(final ClientMessage message) throws Exception { if (!message.containsProperty(ManagementHelper.HDR_PROPOSAL_GROUP_ID)) { throw new IllegalStateException("proposal type is null"); } SimpleString type = message.getSimpleStringProperty(ManagementHelper.HDR_PROPOSAL_GROUP_ID); SimpleString val = message.getSimpleStringProperty(ManagementHelper.HDR_PROPOSAL_VALUE); Integer hops = message.getIntProperty(ManagementHelper.HDR_DISTANCE); Response response = server.getGroupingHandler().receive(new Proposal(type, val), hops + 1); if (response != null) { server.getGroupingHandler().send(response, 0); } } /* * Inform the grouping handler of a response from a proposal * * */ private synchronized void doProposalResponseReceived(final ClientMessage message) throws Exception { if (!message.containsProperty(ManagementHelper.HDR_PROPOSAL_GROUP_ID)) { throw new IllegalStateException("proposal type is null"); } SimpleString type = message.getSimpleStringProperty(ManagementHelper.HDR_PROPOSAL_GROUP_ID); SimpleString val = message.getSimpleStringProperty(ManagementHelper.HDR_PROPOSAL_VALUE); SimpleString alt = message.getSimpleStringProperty(ManagementHelper.HDR_PROPOSAL_ALT_VALUE); Integer hops = message.getIntProperty(ManagementHelper.HDR_DISTANCE); Response response = new Response(type, val, alt); server.getGroupingHandler().proposed(response); server.getGroupingHandler().send(response, hops + 1); } private synchronized void clearBindings() throws Exception { for (RemoteQueueBinding binding : new HashSet<RemoteQueueBinding>(bindings.values())) { removeBinding(binding.getClusterName()); } } private synchronized void doBindingAdded(final ClientMessage message) throws Exception { if (!message.containsProperty(ManagementHelper.HDR_DISTANCE)) { throw new IllegalStateException("distance is null"); } if (!message.containsProperty(ManagementHelper.HDR_ADDRESS)) { throw new IllegalStateException("queueAddress is null"); } if (!message.containsProperty(ManagementHelper.HDR_CLUSTER_NAME)) { throw new IllegalStateException("clusterName is null"); } if (!message.containsProperty(ManagementHelper.HDR_ROUTING_NAME)) { throw new IllegalStateException("routingName is null"); } if (!message.containsProperty(ManagementHelper.HDR_BINDING_ID)) { throw new IllegalStateException("queueID is null"); } Integer distance = message.getIntProperty(ManagementHelper.HDR_DISTANCE); SimpleString queueAddress = message.getSimpleStringProperty(ManagementHelper.HDR_ADDRESS); SimpleString clusterName = message.getSimpleStringProperty(ManagementHelper.HDR_CLUSTER_NAME); SimpleString routingName = message.getSimpleStringProperty(ManagementHelper.HDR_ROUTING_NAME); SimpleString filterString = message.getSimpleStringProperty(ManagementHelper.HDR_FILTERSTRING); Long queueID = message.getLongProperty(ManagementHelper.HDR_BINDING_ID); RemoteQueueBinding binding = new RemoteQueueBindingImpl(server.getStorageManager().generateUniqueID(), queueAddress, clusterName, routingName, queueID, filterString, queue, bridge.getName(), distance + 1); if (postOffice.getBinding(clusterName) != null) { // Sanity check - this means the binding has already been added via another bridge, probably max // hops is too high // or there are multiple cluster connections for the same address ClusterConnectionImpl.log.warn("Remote queue binding " + clusterName + " has already been bound in the post office. Most likely cause for this is you have a loop " + "in your cluster due to cluster max-hops being too large or you have multiple cluster connections to the same nodes using overlapping addresses"); return; } bindings.put(clusterName, binding); try { postOffice.addBinding(binding); } catch (Exception ignore) { } Bindings theBindings = postOffice.getBindingsForAddress(queueAddress); theBindings.setRouteWhenNoConsumers(routeWhenNoConsumers); } private void doBindingRemoved(final ClientMessage message) throws Exception { if (!message.containsProperty(ManagementHelper.HDR_CLUSTER_NAME)) { throw new IllegalStateException("clusterName is null"); } SimpleString clusterName = message.getSimpleStringProperty(ManagementHelper.HDR_CLUSTER_NAME); removeBinding(clusterName); } private synchronized void removeBinding(final SimpleString clusterName) throws Exception { RemoteQueueBinding binding = bindings.remove(clusterName); if (binding == null) { throw new IllegalStateException("Cannot find binding for queue " + clusterName); } postOffice.removeBinding(binding.getUniqueName()); } private synchronized void doConsumerCreated(final ClientMessage message) throws Exception { if (!message.containsProperty(ManagementHelper.HDR_DISTANCE)) { throw new IllegalStateException("distance is null"); } if (!message.containsProperty(ManagementHelper.HDR_CLUSTER_NAME)) { throw new IllegalStateException("clusterName is null"); } Integer distance = message.getIntProperty(ManagementHelper.HDR_DISTANCE); SimpleString clusterName = message.getSimpleStringProperty(ManagementHelper.HDR_CLUSTER_NAME); message.putIntProperty(ManagementHelper.HDR_DISTANCE, distance + 1); SimpleString filterString = message.getSimpleStringProperty(ManagementHelper.HDR_FILTERSTRING); RemoteQueueBinding binding = bindings.get(clusterName); if (binding == null) { throw new IllegalStateException("Cannot find binding for " + clusterName); } binding.addConsumer(filterString); // Need to propagate the consumer add TypedProperties props = new TypedProperties(); props.putSimpleStringProperty(ManagementHelper.HDR_ADDRESS, binding.getAddress()); props.putSimpleStringProperty(ManagementHelper.HDR_CLUSTER_NAME, clusterName); props.putSimpleStringProperty(ManagementHelper.HDR_ROUTING_NAME, binding.getRoutingName()); props.putIntProperty(ManagementHelper.HDR_DISTANCE, distance + 1); Queue theQueue = (Queue)binding.getBindable(); props.putIntProperty(ManagementHelper.HDR_CONSUMER_COUNT, theQueue.getConsumerCount()); if (filterString != null) { props.putSimpleStringProperty(ManagementHelper.HDR_FILTERSTRING, filterString); } Notification notification = new Notification(null, CONSUMER_CREATED, props); managementService.sendNotification(notification); } private synchronized void doConsumerClosed(final ClientMessage message) throws Exception { if (!message.containsProperty(ManagementHelper.HDR_DISTANCE)) { throw new IllegalStateException("distance is null"); } if (!message.containsProperty(ManagementHelper.HDR_CLUSTER_NAME)) { throw new IllegalStateException("clusterName is null"); } Integer distance = message.getIntProperty(ManagementHelper.HDR_DISTANCE); SimpleString clusterName = message.getSimpleStringProperty(ManagementHelper.HDR_CLUSTER_NAME); message.putIntProperty(ManagementHelper.HDR_DISTANCE, distance + 1); SimpleString filterString = message.getSimpleStringProperty(ManagementHelper.HDR_FILTERSTRING); RemoteQueueBinding binding = bindings.get(clusterName); if (binding == null) { throw new IllegalStateException("Cannot find binding for " + clusterName); } binding.removeConsumer(filterString); // Need to propagate the consumer close TypedProperties props = new TypedProperties(); props.putSimpleStringProperty(ManagementHelper.HDR_ADDRESS, binding.getAddress()); props.putSimpleStringProperty(ManagementHelper.HDR_CLUSTER_NAME, clusterName); props.putSimpleStringProperty(ManagementHelper.HDR_ROUTING_NAME, binding.getRoutingName()); props.putIntProperty(ManagementHelper.HDR_DISTANCE, distance + 1); Queue theQueue = (Queue)binding.getBindable(); props.putIntProperty(ManagementHelper.HDR_CONSUMER_COUNT, theQueue.getConsumerCount()); if (filterString != null) { props.putSimpleStringProperty(ManagementHelper.HDR_FILTERSTRING, filterString); } Notification notification = new Notification(null, CONSUMER_CLOSED, props); managementService.sendNotification(notification); } } public void handleReplicatedAddBinding(final SimpleString address, final SimpleString uniqueName, final SimpleString routingName, final long queueID, final SimpleString filterString, final SimpleString queueName, final int distance) throws Exception { Binding queueBinding = postOffice.getBinding(queueName); if (queueBinding == null) { throw new IllegalStateException("Cannot find s & f queue " + queueName); } Queue queue = (Queue)queueBinding.getBindable(); RemoteQueueBinding binding = new RemoteQueueBindingImpl(server.getStorageManager().generateUniqueID(), address, uniqueName, routingName, queueID, filterString, queue, queueName, distance); if (postOffice.getBinding(uniqueName) != null) { ClusterConnectionImpl.log.warn("Remoting queue binding " + uniqueName + " has already been bound in the post office. Most likely cause for this is you have a loop " + "in your cluster due to cluster max-hops being too large or you have multiple cluster connections to the same nodes using overlapping addresses"); return; } postOffice.addBinding(binding); Bindings theBindings = postOffice.getBindingsForAddress(address); theBindings.setRouteWhenNoConsumers(routeWhenNoConsumers); } // for testing only public Map<String, MessageFlowRecord> getRecords() { return records; } public String description() { String out = name + " connected to\n"; for (Entry<String, MessageFlowRecord> messageFlow : records.entrySet()) { String nodeID = messageFlow.getKey(); Bridge bridge = messageFlow.getValue().getBridge(); out += "\t" + nodeID + " -- " + bridge.isStarted() + "\n"; } return out; } interface ClusterConnector { ServerLocatorInternal createServerLocator(); } private class StaticClusterConnector implements ClusterConnector { private final TransportConfiguration[] tcConfigs; public StaticClusterConnector(TransportConfiguration[] tcConfigs) { this.tcConfigs = tcConfigs; } public ServerLocatorInternal createServerLocator() { if(tcConfigs != null && tcConfigs.length > 0) { return (ServerLocatorInternal) HornetQClient.createServerLocatorWithHA(tcConfigs); } else { return null; } } } private class DiscoveryClusterConnector implements ClusterConnector { private final DiscoveryGroupConfiguration dg; public DiscoveryClusterConnector(DiscoveryGroupConfiguration dg) { this.dg = dg; } public ServerLocatorInternal createServerLocator() { return (ServerLocatorInternal) HornetQClient.createServerLocatorWithHA(dg); } } }
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
daa9aefe73ebad4d56d34c57a1037ef7945d09b7
d0e61d767e3fae4a60fbc4f0ddb3b3a1aba0d34b
/experiments/flink-experiment/src/test/java/edu/upenn/flumina/pageview/GetOrUpdateTest.java
3610b650b1764bf813486292cbcbef00b7888743
[ "MIT" ]
permissive
angelhof/flumina
d53bddaecda4dc2f33a6aeac1fbc7c5fd9a73f0d
abc61255749e75ec147c0739a5ed0abc1b3e767a
refs/heads/master
2022-06-26T00:23:44.529797
2022-06-08T05:00:32
2022-06-08T05:00:48
239,618,776
14
1
null
null
null
null
UTF-8
Java
false
false
1,351
java
package edu.upenn.flumina.pageview; import edu.upenn.flumina.pageview.data.*; import org.junit.Test; import static org.junit.Assert.assertEquals; public class GetOrUpdateTest { @Test public void testGetOrUpdateOrHeartbeatMatch() { final GetOrUpdateOrHeartbeat get = new Get(1, 1); final GetOrUpdateOrHeartbeat update = new Update(1, 10000, 1); final GetOrUpdateOrHeartbeat heartbeat = new GetOrUpdateHeartbeat(1); final int getMatch = get.match(gou -> gou.match(g -> 1, u -> 2), hb -> 3); assertEquals("Get match should return 1", 1, getMatch); final int updateMatch = update.match(gou -> gou.match(g -> 1, u -> 2), hb -> 3); assertEquals("Update match should return 2", 2, updateMatch); final int heartbeatMatch = heartbeat.match(gou -> gou.match(g -> 1, u -> 2), hb -> 3); assertEquals("Heartbeat match should return 3", 3, heartbeatMatch); } @Test public void testGetOrUpdateMatch() { final GetOrUpdate get = new Get(1, 1); final GetOrUpdate update = new Update(1, 10000, 1); final int getMatch = get.match(g -> 1, u -> 2); assertEquals("Get match should return 1", 1, getMatch); final int updateMatch = update.match(g -> 1, u -> 2); assertEquals("Match should return 2", 2, updateMatch); } }
[ "fniksic@seas.upenn.edu" ]
fniksic@seas.upenn.edu
06d252bf299dbd74f709ef496027c303dcc24143
054503556e1277f20f31da30149c2e863415dae5
/app/src/main/java/com/example/photogridapp/CatApi/CatAPI.java
47bdce1300a395cead5bfb99c7c94869921f9a39
[]
no_license
bara111/PhotoGridApp
ccb8df7d8722e551344368a4be8f4d4a8cc7086f
4fc96dfb4d5842d9107026a9eafa4a1d9b13b811
refs/heads/master
2020-06-08T16:51:42.472033
2019-06-22T18:40:01
2019-06-22T18:40:01
193,267,408
0
0
null
null
null
null
UTF-8
Java
false
false
208
java
package com.example.photogridapp.CatApi; import retrofit2.Call; import retrofit2.http.GET; import retrofit2.http.Query; public interface CatAPI { @GET("/v1/images/search") Call<CatResponse> get(); }
[ "am.bara059@gmail.com" ]
am.bara059@gmail.com
d61abe6e26f22cb7debfcca3d886e149406c624b
296b34dce2f448f07479e8b02b4dfa37473a7113
/sunshine-security/sunshine-admin/src/main/java/com/sunshine/common/config/WebConfig.java
78f79fd74e037e8e35dd6f52d5e33de28cb56a84
[ "Apache-2.0" ]
permissive
Delevan24/sunshine
b0cc258b6f013dedbdc1a9fb9623b1900c9ff99b
6b88f42ccae1ca84f694cb2f6fb725d2dac2f673
refs/heads/master
2022-08-18T05:26:34.237316
2020-04-13T03:08:26
2020-04-13T03:08:26
160,441,875
0
0
null
2022-07-06T20:32:04
2018-12-05T01:29:53
JavaScript
UTF-8
Java
false
false
1,384
java
package com.sunshine.common.config; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; /** * WebMvc配置 * * @author Mark sunlightcs@gmail.com * @since 3.0.0 2018-01-25 */ @Configuration public class WebConfig implements WebMvcConfigurer { @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/statics/**").addResourceLocations("classpath:/statics/"); } // @Override // public void extendMessageConverters(List<HttpMessageConverter<?>> converters) { // MappingJackson2HttpMessageConverter jackson2HttpMessageConverter = new MappingJackson2HttpMessageConverter(); // ObjectMapper objectMapper = jackson2HttpMessageConverter.getObjemctMapper(); // // //生成json时,将所有Long转换成String // SimpleModule simpleModule = new SimpleModule(); // simpleModule.addSerializer(Long.class, ToStringSerializer.instance); // simpleModule.addSerializer(Long.TYPE, ToStringSerializer.instance); // objectMapper.registerModule(simpleModule); // // jackson2HttpMessageConverter.setObjectMapper(objectMapper); // converters.add(0, jackson2HttpMessageConverter); // } }
[ "1035454584@qq.com" ]
1035454584@qq.com
8f1dffc7ba9051f01c6d7f4a82cb2005a82439f8
dce4ff9edbef476d218c79cec4acd8861b09642c
/xenon-android-library/src/main/java/com/abubusoft/xenon/animations/TextureAnimationLoader.java
c989f288c1cdb5402c92abd9e3684cc3f2887e92
[]
no_license
skykying/xenon
d3e1cdc79932892d2a396926f9d21962ddef0568
619cc533e602307a62ceaf739daea76f88c37994
refs/heads/master
2021-09-16T04:22:45.416370
2018-06-16T09:01:28
2018-06-16T09:01:28
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,847
java
package com.abubusoft.xenon.animations; import java.util.ArrayList; import java.util.HashMap; import com.abubusoft.xenon.texture.Texture; import com.abubusoft.xenon.texture.TextureManager; import com.abubusoft.xenon.texture.TextureOptions; import com.abubusoft.xenon.texture.AtlasTexture; import com.abubusoft.xenon.texture.AtlasTextureOptions; import com.abubusoft.xenon.texture.TextureRegion; import com.abubusoft.kripton.android.Logger; import com.abubusoft.xenon.core.util.IOUtility; import android.content.Context; /** * Classe di utilitaà per caricare animazioni in formato gdx * * @author Francesco Benincasa * */ class TextureAnimationLoader { /** * <p> * Carica la definizione di una texture animation. L'animazione si compone di 3 risorse: l'atlas, la definizione degli sprite e quella delle animazioni. Dato ad esempio un * baseName <b>heart</b> i nomi dei file dovrebbero essere rispettivamente <b>heart.png</b> <b>heart_sprites.txt</b> e <b>heart_animations.txt</b> * </p> * * @param context * context * @param spriteDefinitionResourceId * resource id della definizione dello sprite * @param animationDefinitionResourceId * resource id della definizione delle animazioni * @param imageResourceId * id dell'immagine * @param options * opzioni per il caricamento della texture * @return atlas */ static ArrayList<TextureAnimation> loadFromResources(Context context, int spriteDefinitionResourceId, int animationDefinitionResourceId, int imageResourceId, TextureOptions options) { try { Texture texture = TextureManager.instance().createTextureFromResourceId(context, imageResourceId, options); AtlasTexture atlasTexture = TextureManager.instance().createAtlasTexture(texture, AtlasTextureOptions.build()); String spriteDefinition = IOUtility.readRawTextFile(context, spriteDefinitionResourceId); HashMap<String, TextureRegion> tilesMap = GDXParserHelper.createTiles(spriteDefinition, atlasTexture); String animationDefinition = IOUtility.readRawTextFile(context, animationDefinitionResourceId); ArrayList<TextureAnimation> animationMap = GDXParserHelper.createAnimations(animationDefinition, tilesMap, atlasTexture); return animationMap; } catch (Exception e) { Logger.fatal(e.getMessage()); e.printStackTrace(); return null; } } /** * <p> * Carica la definizione di una texture animation. L'animazione si compone di 3 file: l'atlas, la definizione degli sprite e quella delle animazioni. Dato ad esempio un * baseName <b>heart</b> i nomi dei file dovrebbero essere rispettivamente <b>heart.png</b> <b>heart.sprites</b> e <b>heart.animations</b> * </p> * * @param context * context * @param baseName * nome di base dell'animazione * @param options * opzioni per il caricamento della texture * @return atlas */ static ArrayList<TextureAnimation> loadFromAssets(Context context, String baseName, TextureOptions options) { try { Texture texture = TextureManager.instance().createTextureFromAssetsFile(context, baseName + ".png", options); AtlasTexture atlasTexture = TextureManager.instance().createAtlasTexture(texture, AtlasTextureOptions.build()); String spriteDefinition = IOUtility.readTextFileFromAssets(context, baseName + ".sprites"); HashMap<String, TextureRegion> tilesMap = GDXParserHelper.createTiles(spriteDefinition, atlasTexture); String animationDefinition = IOUtility.readTextFileFromAssets(context, baseName + ".animations"); ArrayList<TextureAnimation> animationMap = GDXParserHelper.createAnimations(animationDefinition, tilesMap, atlasTexture); return animationMap; } catch (Exception e) { Logger.fatal(e.getMessage()); e.printStackTrace(); return null; } } }
[ "abubusoft@gmail.com" ]
abubusoft@gmail.com
c6c06a8f3f45fa20d0190a19c73ffecbcf6c9c4f
e5e048e558af1b5e1d5f925d91bec468c9ae275a
/src/inheritance/InheritanceExample.java
8205d3ac7fb854c93d91342a6404cb7a7f6d79f2
[]
no_license
JaydeepUniverse/java_core
e1857a041ae8054066f87d7b8384ae722b4eb57b
ab74c920cca88ef315a51f54c52d93f9b37b2818
refs/heads/master
2021-10-09T11:32:49.525628
2018-12-27T05:52:22
2018-12-27T05:52:22
153,394,040
0
0
null
null
null
null
UTF-8
Java
false
false
1,325
java
package inheritance; class Box { double height; double width; double depth; // Construct clone of an object Box(Box obj) { height = obj.height; width = obj.width; depth = obj.depth; } // Constructor when all dimensions are specified Box(double h, double w, double d) { height = h; width = w; depth = d; } // Constructor when no dimensions are specified Box() { height = width = depth = -1; } // Constructor for cube Box(double length) { height = width = depth = length; } // Compute and return volume double volume() { return height * width * depth; } } class BoxWeight extends Box { double weight; // constructor for boxweight BoxWeight(double h, double w, double d, double we) { height = h; width = w; depth = d; weight = we; } double volumeWithWeight() { return height * width * depth * weight; } } class InheritanceExample { public static void main(String[] args) { BoxWeight a = new BoxWeight(1, 2, 3, 4); BoxWeight b = new BoxWeight(5, 6, 7, 8); System.out.println(a.volume()); System.out.println(a.weight); System.out.println(a.volumeWithWeight()); System.out.println(); System.out.println(b.volume()); System.out.println(b.weight); System.out.println(b.volumeWithWeight()); } }
[ "ecjaydeepsoni@gmail.com" ]
ecjaydeepsoni@gmail.com
053ce08322c2202aa3452d3ce7c349886df9662a
7c235ac018e6b13dd8c7f0c07bfaced805e7300b
/src/main/java/com/monicseq/run/seq/MonicSeqHandle.java
ce0d703f6a53bd77b070dd301c4b722fb4e03cc2
[]
no_license
OpenDoing/algMonicSeqRunner
f67d63fa685d1f88502105ff6fa8ccf64bd0ec1c
f422a8443c229657e42f269f7d166adaa9fc6599
refs/heads/master
2022-07-31T05:13:43.309650
2019-12-16T12:34:19
2019-12-16T12:34:19
227,378,785
0
0
null
2022-06-17T02:46:45
2019-12-11T13:59:15
Java
UTF-8
Java
false
false
7,193
java
package com.monicseq.run.seq; import com.monicseq.run.data.TestDataGenerator; import com.monicseq.run.request.HttpRequest; import com.monicseq.run.request.Request; import com.monicseq.run.request.RequestBuilder; import com.monicseq.run.request.RequestExecutor; import com.monicseq.run.util.FileUtil; import com.monicseq.run.util.Util; import lombok.extern.slf4j.Slf4j; import java.io.IOException; import java.util.HashMap; import java.util.Iterator; import java.util.Map; /** * 单线测试序列处理 * * @author Duyining * @date 2019/12/5 */ @Slf4j public class MonicSeqHandle { /** * 单线测试序列的结果 */ public static Map<String,Object> result = new HashMap<>(16); public static String ISEQUAL = "isEq"; public static String ISSUBSET = "isSub"; public static String ISSAME = "isSame"; public static String EMPTY = ""; public static String DOT = "."; public static String LINE = "_"; public static String INTERGER = "Integer"; public static String ASSERT = "Assert"; public static String IS = "is"; public static String EQUAL = "="; public static String TRUE = "true"; /** * 序列中用到的所有参数 */ public static Map<String,Object> param = new HashMap<>(16); /** * 全局变量表 */ public static Map<String,String> reqs = new HashMap<>(16); public static void initGlobal(String s) { reqs = Util.getGlobalVar(s); } /** * 从文件中读取单线测试序列 * @param file 文件路径 * @throws IOException IO异常 */ public static void getSeq(String file) throws IOException{ String monicSequence = FileUtil.readFile(file); parseSeq(monicSequence); } public static void parseSeq(String mseq) { String[] seq = mseq.split("\n"); for (int i = 0;i<seq.length;i++) { if (!EMPTY.equals(seq[i])){ if (!handleSingleSeq(seq[i].trim())) { log.error("断言为假,无法继续执行"); break; } } } } private static boolean handleSingleSeq(String s) { if(s.startsWith(ASSERT)) { boolean b = handleAssert(s); if (b) { log.info("{} 结果为:{}", "AssertTrue", true); } else { log.info("{} 结果为:{}", "AssertTrue", false); } return b; } String[] ope = s.split(EQUAL); if (ope[1].trim().startsWith(IS)) { boolean cres = handleCompare(ope[1]); result.put(ope[0].trim(),cres); log.info("{} 结果为:{}",ope[0],result.get(ope[0].trim())); } else { String response = handleServiceReq(s,reqs,param); result.put(ope[0].trim(), response); log.info("{} 结果为:{}",ope[0],result.get(ope[0].trim())); } return true; } /** * 处理服务请求操作 * @param s 单线序列操作 getArray(greq) * @param reqs 全局变量的map,通过greq查询对应的类子结构 GetArrayReq * @param param 变量初始化map,已经初始化的map不应该被重复初始化 */ private static String handleServiceReq(String s, Map<String, String> reqs, Map<String, Object> param) { // getArray(greq) int left = s.indexOf("("); int right = s.indexOf(")"); String ps = s.substring(left+1,right); Request request = RequestBuilder.buildReq(ps,reqs, param); HttpRequest httpRequest = RequestExecutor.getReqRunner(request.getMethod()); String url = request.getUrl(); return httpRequest.sendRequest(url, request.getParams()); } private static boolean handleAssert(String s) { int left = s.indexOf("("); int right = s.indexOf(")"); String ps = s.substring(left+1,right); log.info("操作:{} 参数: {}","AssertTrue",ps); String temp = result.get(ps).toString(); return TRUE.equals(temp); } private static boolean handleCompare(String s) { int left = s.indexOf("("); int right = s.indexOf(")"); String type = s.substring(0,left).trim(); String ps = s.substring(left+1,right); String[] params = ps.split(","); log.info("操作: {} 参数1: {} 参数2: {}" , type,params[0],params[1]); if (ISEQUAL.equals(type)) { return handleIsEqual(params[0],params[1]); } else if(ISSUBSET.equals(type)) { } else if (ISSAME.equals(type)) { } else { // ...... } return true; } private static boolean handleIsEqual(String param1, String param2) { // System.out.println("param1:" + param1 + "param2:" + param2); // 两个都是服务请求参数 if (param1.contains(DOT) && param2.contains(DOT)) { // 参数没有进行初始化 if (!param.containsKey(param1) && !param.containsKey(param2)) { // 如果数据类型是整型 if (INTERGER.equals(getParamType(param1))) { String temp = Integer.toString(TestDataGenerator.getRandomInt(1,10)); param.put(param1, temp); param.put(param2, temp); return true; } else { // 其他数据类型的策略 } } else if (param.containsKey(param1) || param.containsKey(param2)) { // 如果其中一个参数已经初始化,则将初始化的值赋给未初始化的参数 if (param.containsKey(param1)) { param.put(param2,param.get(param1)); } else { param.put(param1,param.get(param2)); } return true; } } else if (param1.startsWith(LINE) && !param2.startsWith(LINE)) { /* 如果类似这种形式 isEq(_1,true) */ String pa1 = result.get(param1).toString(); return pa1.equals(param2); } else if (param1.startsWith(LINE) && param2.startsWith(LINE)) { // 如果类似这种形式 isEq(_7,_10) String pa1 = result.get(param1).toString(); String pa2 = result.get(param2).toString(); return pa1.equals(pa2); } return false; } private static String getParamType(String param1) { //1 return "Integer"; } public static void getPrams(){ Iterator iterator = param.entrySet().iterator(); while (iterator.hasNext()) { Map.Entry entry = (Map.Entry) iterator.next(); String key = entry.getKey().toString(); String value = entry.getValue().toString(); log.info("参数:{} 参数的值:{}", key, value); } } public static void main(String[] args) throws IOException{ initGlobal("For all as:ArrayService,greq:GetArrReq,ireq:InsertReq,dreq:DelReq That"); getSeq("D:\\1NJUST\\大论文\\paper\\casestudy\\monicArray.txt"); getPrams(); } }
[ "dyninger@163.com" ]
dyninger@163.com
8d942c85a3e7f15387d6dd51638860475fe3a239
d58e269125ee0f58c6cf12019f9c7ee34383ff79
/springhateoas/src/main/java/com/sonic/controller/JSPController.java
04bd7d826d7ca2489221f138435df35ef6593c8c
[]
no_license
AK47Sonic/drive-in-spring-boot
7a011a878c21487d3e502f48b800721dba002752
403f67034b60c37082f0159e0ecc28cec5629e15
refs/heads/master
2022-12-25T20:29:32.694725
2020-06-21T01:22:42
2020-06-21T01:22:42
163,733,768
0
0
null
2022-12-16T03:39:56
2019-01-01T12:06:07
Java
UTF-8
Java
false
false
435
java
package com.sonic.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; /** * JSPController * * @author Sonic * @since 2019/8/4 */ @Controller public class JSPController { @RequestMapping("/index") public String index(Model model){ model.addAttribute("message", "Sky"); return "index"; } }
[ "675737965@qq.com" ]
675737965@qq.com
c77256d26c6513ae6a490a5f76f2622984a079ec
7c10d55ff24a4d4ec519e5d30dc689c38352f587
/app/src/main/java/com/utad/kiran/dint_database_task/ClassDialog/Class_Fragment_Dialog.java
606d5a11cc6676004a71ca20827a6bbb4aefe6d3
[]
no_license
KiranLorenzoHoyos/DINT_Database_Task
afca4c9312f09ef0d008767cb69d4076cf50ffd7
499731d8c7c2e114d6b8bed0df2f74783b83f284
refs/heads/master
2020-04-09T09:41:35.494909
2018-12-03T19:29:43
2018-12-03T19:29:43
160,242,839
0
0
null
null
null
null
UTF-8
Java
false
false
3,421
java
package com.utad.kiran.dint_database_task.ClassDialog; import android.app.AlertDialog; import android.app.Dialog; import android.content.DialogInterface; import android.os.Bundle; import android.support.v4.content.res.ResourcesCompat; import android.support.v4.widget.DrawerLayout; import android.support.v7.app.AppCompatDialogFragment; import android.support.v7.widget.RecyclerView; import android.support.v7.widget.StaggeredGridLayoutManager; import android.view.LayoutInflater; import android.view.View; import android.widget.ImageView; import android.widget.TextView; import com.utad.kiran.dint_database_task.R; import java.util.Objects; public class Class_Fragment_Dialog extends AppCompatDialogFragment { private ImageView classImg; private TextView className; private TextView classYear; private TextView classDescriptionTitle; private TextView classDescription; private DrawerLayout drawerLayout; private RecyclerView recyclerView; private RecyclerView.Adapter recyclerViewAdapter; private RecyclerView.LayoutManager recyclerViewManager; @Override public Dialog onCreateDialog(Bundle savedInstanceState) { AlertDialog.Builder builder = new AlertDialog.Builder(getActivity()); LayoutInflater inflater = Objects.requireNonNull(getActivity()).getLayoutInflater(); View view = inflater.inflate(R.layout.activity_classdialog, null); Class_Data_CardView n_students = new Class_Data_CardView(ResourcesCompat.getDrawable(getResources(), R.drawable.students, null), "Nº Students"); Class_Data_CardView professor = new Class_Data_CardView(ResourcesCompat.getDrawable(getResources(), R.drawable.professor, null), "Professor"); Class_Data_CardView average = new Class_Data_CardView(ResourcesCompat.getDrawable(getResources(), R.drawable.average, null), "Average"); Class_Data_CardView my_average = new Class_Data_CardView(ResourcesCompat.getDrawable(getResources(), R.drawable.myaverage, null), "My average"); Class_Data_CardView ranking = new Class_Data_CardView(ResourcesCompat.getDrawable(getResources(), R.drawable.ranking, null), "Ranking"); Class_Data_CardView[] classDataArray = {n_students, professor, average, my_average, ranking}; builder.setView(view).setNegativeButton("cancel", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { } }).setPositiveButton("accept", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { } }); classImg = view.findViewById(R.id.classImg); className = view.findViewById(R.id.className); classYear = view.findViewById(R.id.classYear); classDescriptionTitle = view.findViewById(R.id.descriptionTitle); classDescription = view.findViewById(R.id.descriptionText); drawerLayout = view.findViewById(R.id.drawerLayout); recyclerView = view.findViewById(R.id.recyclerView); recyclerViewAdapter = new Class_Recycler_Adapter(classDataArray); recyclerViewManager = new StaggeredGridLayoutManager(1, StaggeredGridLayoutManager.HORIZONTAL); recyclerView.setAdapter(recyclerViewAdapter); recyclerView.setLayoutManager(recyclerViewManager); return builder.create(); } }
[ "kiran.lorenzo@live.u-tad.com" ]
kiran.lorenzo@live.u-tad.com
3c023b0b39fd802ec482dd6504ef1f1910dc13bd
a06cafcdfa8541e70a064875a1a3425a228de740
/curator-recipes/src/main/java/com/netflix/curator/framework/recipes/locks/RevocationListener.java
6a75ff24aa0122820590bb075d0f14ecc8f7a9d5
[ "Apache-2.0" ]
permissive
artemip/curator
0e1312e9e6e624ce50b43c4befeaf7fa47c04a87
01104d219adb3cfdedf9304b57beaf13f11d79ff
refs/heads/master
2021-01-18T06:41:41.375901
2012-07-05T19:04:23
2012-07-05T19:04:23
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,010
java
/* * * Copyright 2011 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package com.netflix.curator.framework.recipes.locks; public interface RevocationListener<T> { /** * Called when a revocation request has been received. You should release the lock as soon * as possible. Revocation is cooperative. * * @param forLock the lock that should release */ public void revocationRequested(T forLock); }
[ "jordan@jordanzimmerman.com" ]
jordan@jordanzimmerman.com
9e6eb136081a49fdc108bef4aa6591bdfc18209d
382656ecf2594660755afe29a5debb9c5253197b
/api/core/src/main/java/com/jd/core/annotation/NotLogin.java
b1c60fa204f0896192f0cad38997349cc991e302
[]
no_license
JDongKhan/java_app
78f43c3309005b01e5f53fd1142741b027e47b58
b92b91e548be7afe8cd813fafcafaf102afcd06c
refs/heads/main
2023-08-12T18:21:10.109950
2021-09-22T06:44:40
2021-09-22T06:44:40
407,485,455
0
0
null
null
null
null
UTF-8
Java
false
false
291
java
package com.jd.core.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface NotLogin { }
[ "419591321@qq.com" ]
419591321@qq.com
7a50b378926a06a58feadb2993155202252115b8
0f4e9fee5752b4f417c2f0e04d417267520d703b
/app/src/main/java/com/kslimweb/one2many/client/ScanQRCodeActivity.java
1623628fb56db70cece615f35bcb752bce8c4e88
[ "MIT" ]
permissive
limkhashing/One2Many
7a5788003979d13f3c6fca794e53799bae2e0e0d
fef8478f7f1f7938cccc8a66f78039bda7909ad2
refs/heads/master
2021-08-16T02:59:39.681376
2020-02-22T09:23:11
2020-02-22T09:27:01
170,728,229
0
1
MIT
2020-02-22T09:27:03
2019-02-14T17:10:35
Java
UTF-8
Java
false
false
1,867
java
package com.kslimweb.one2many.client; import android.content.Intent; import android.os.Bundle; import androidx.appcompat.app.AlertDialog; import androidx.appcompat.app.AppCompatActivity; import android.util.Log; import com.google.zxing.Result; import me.dm7.barcodescanner.zxing.ZXingScannerView; public class ScanQRCodeActivity extends AppCompatActivity implements ZXingScannerView.ResultHandler { private static final String TAG = ScanQRCodeActivity.class.getSimpleName(); ZXingScannerView scannerView; // Class-Topic will become [test-test] for development public static String SUBSCRIBE_TOPIC; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); scannerView = new ZXingScannerView(this); setContentView(scannerView); } @Override public void handleResult(Result result) { Log.d(TAG, "handleResult: " + result.getText()); String qrCodeValue = result.getText(); if (qrCodeValue.contains("One2Many")) { SUBSCRIBE_TOPIC = qrCodeValue; startActivity(new Intent(ScanQRCodeActivity.this, ClientTranslationActivity.class)); } else { new AlertDialog.Builder(this) .setTitle("Invalid QR Code Scanned") .setMessage("Please make sure you scan the right QR code displayed by One2Many app") .setPositiveButton(android.R.string.yes, (dialog, which) -> scannerView.resumeCameraPreview(this)) .show(); } } @Override protected void onPause() { super.onPause(); scannerView.stopCamera(); } @Override protected void onResume() { super.onResume(); scannerView.setResultHandler(this); scannerView.startCamera(); } }
[ "kslim5703@gmail.com" ]
kslim5703@gmail.com
5270aed25bad7d1dddfe26a6417548278aabb435
2cbb1fc9ea123dc452cbd57b399ddf384c936388
/src/main/java/com/hisen/interview/math/LingXing.java
9ee21ec86ba7ba967064aecdf0733bf2f295b904
[]
no_license
xiamuzhen/IDEAPractice
88e8e0f7a5717d09cc91a628926b42456215554c
549928b9e1cf80b2d1d6a3fd394432ceec1c8dc6
refs/heads/master
2022-07-29T14:14:18.494990
2020-03-05T01:01:32
2020-03-05T01:01:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,050
java
package com.hisen.interview.math; /** * 观察规律,打印菱形的话是由空格跟*组成 * 每一行里面 空格个数+星号的个数都是相等的 * 所以在for循环里面加入两个并行的循环可以实现打印 */ public class LingXing { public static void main(String[] args) { printLX(5); } /** * 打印菱形的方法 * * @param n 菱形最宽处*的个数 */ public static void printLX(int n) { // 菱形的上半部分 for (int i = 1; i <= n; i++) { for (int k = 0; k < n - i; k++) { System.out.print("\t"); } for (int j = 1; j <= i; j++) { System.out.print("\t*\t"); } System.out.println(""); } // 菱形下半部分,x从1开始,否则会多一行 for (int x = 1; x <= n; x++) { for (int y = 0; y < x; y++) { System.out.print("\t"); } for (int z = 1; z <= n - x; z++) { System.out.print("\t*\t"); } System.out.println(""); } } }
[ "hisenyuan@gmail.com" ]
hisenyuan@gmail.com
4b419e709a9133ee65f6eb64017c837a441e6ce5
5f2af2198c11a447c8390de7c5a0675495c6e5af
/Parcial Recuperatorio/src/main/java/Repositorio/IRepositorioCrearEquipo.java
faaf940c32b319f0567826d2331c4594ee8180a0
[]
no_license
himuraxkenji/undec-prog3-2019
b43144f011a54a1aa89d5fc54e735e5303347a80
451395a6eb217fda5ba6287c210187581cdf28b6
refs/heads/master
2021-07-04T03:43:46.776880
2019-10-30T22:33:05
2019-10-30T22:33:05
181,970,607
0
0
null
2020-10-13T17:06:37
2019-04-17T21:26:13
Java
UTF-8
Java
false
false
166
java
package Repositorio; import Model.Equipo; public interface IRepositorioCrearEquipo { Equipo findByNombre(String nombre); Boolean guardar(Equipo equipo); }
[ "aaron.ariperto@gmail.com" ]
aaron.ariperto@gmail.com
9332dc818f20e4acc87a7c59480eecc8f18b502f
2e269300a47b07a6e4d2cf9395ab27b1e4ecbe7a
/EclipseWorkspace/WCARE/src/com/enercon/struts/requestProcessor/ManageFeederMasterRP.java
b87a1d1c10385fc1777a357477a99806398586d0
[]
no_license
Mitzz/WWIL
694f81f916d622c6e8fb76cd17a00bcdfea63c39
e0bb3a11e558357d894e534c829b83a280f7dc28
refs/heads/master
2021-05-04T10:22:22.860253
2016-10-02T12:01:30
2016-10-02T12:01:30
44,241,840
0
0
null
null
null
null
UTF-8
Java
false
false
2,104
java
package com.enercon.struts.requestProcessor; import java.util.List; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.log4j.Logger; import org.apache.struts.action.Action; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping; import com.enercon.model.master.SubstationMasterVo; import com.enercon.service.master.FeederMasterService; import com.enercon.service.master.SubstationMasterService; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.ser.FilterProvider; import com.fasterxml.jackson.databind.ser.impl.SimpleBeanPropertyFilter; import com.fasterxml.jackson.databind.ser.impl.SimpleFilterProvider; public class ManageFeederMasterRP extends Action { private static Logger logger = Logger.getLogger(ManageSubstationMasterRP.class); @Override public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { logger.debug("enter"); List<SubstationMasterVo> substations = SubstationMasterService.getInstance().getAll(); FeederMasterService.getInstance().associateSubstations(substations); ObjectMapper objectMapper = new ObjectMapper(); SimpleBeanPropertyFilter substationFilter = SimpleBeanPropertyFilter.filterOutAllExcept("name","id", "feeders"); SimpleBeanPropertyFilter feederFilter = SimpleBeanPropertyFilter.filterOutAllExcept("name","id"); SimpleFilterProvider propertyFilter = new SimpleFilterProvider(); propertyFilter.addFilter("substationMasterVo", substationFilter); propertyFilter.addFilter("feederMasterVo", feederFilter); FilterProvider filters = propertyFilter; // Converting List of Java Object to List of Javascript Object String substationsJson = objectMapper.writer(filters).writeValueAsString(substations); request.setAttribute("substations", substationsJson); return mapping.findForward("success"); } }
[ "test@192.168.2.9" ]
test@192.168.2.9
eeb1c05be479fc12c339302347a676956ec3dd44
7d1eb5d034b2d55af90633b8789dfe9ea6255211
/src/main/java/org/akginara/controller/CommonController.java
f1813c2ce8f38da5c499a5ce2065ba4ea06a23b1
[]
no_license
BAEHANBIN/akginara
1afa25363a8dd9796dc8dd714bd62cdadbd975a7
0e47bcec9d1712f64e0744d91adaa5cc8f1c809c
refs/heads/master
2022-12-07T01:16:00.101707
2020-09-03T15:23:34
2020-09-03T15:23:34
286,487,267
0
0
null
null
null
null
UTF-8
Java
false
false
1,015
java
package org.akginara.controller; import org.springframework.security.core.Authentication; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import lombok.extern.log4j.Log4j; @Controller @Log4j @RequestMapping("/akginara/*") public class CommonController { @GetMapping("/accessError") public void accessDenied(Authentication auth, Model model) { log.info(("access Denied : " + auth)); model.addAttribute("msg", "Access Denied"); } @GetMapping("/login") public void loginInput(String error, String logout, Model model) { log.info("error : " + error); log.info("logout : " + logout); if (error != null) { model.addAttribute("error", "Login Error Check Your Account"); } if (logout != null) { model.addAttribute("logout", "Logout!!"); } } @GetMapping("/logout") public void logoutGet() { log.info("logout"); } }
[ "phantom-b@naver.com" ]
phantom-b@naver.com
308f97d57257e77f5dc12a1589957f2734e36a6b
a6f12fc5a796c02ec64fa3edc1e77def2828e32e
/AzuraJava/src/common/collections/buffer/DataArray.java
864236d63cb5ebd7dea2ac42efd8422886ab2901
[]
no_license
jixingrui/java
94b7a599175e572b6f4ef73686ecebfc21e165e2
347680e37a363ebf3b5d79e38718416de5f787f0
refs/heads/master
2021-06-27T15:12:16.180217
2017-09-19T18:59:56
2017-09-19T18:59:56
104,111,505
1
1
null
null
null
null
UTF-8
Java
false
false
2,331
java
package common.collections.buffer; public class DataArray { protected LogicalArray array; public DataArray(LogicalArray array) { this.array = array; } public void expand(int more) { LogicalArray la = LogicalArray.allocate(array.length + more); LogicalArray.copy(array, 0, la, 0, array.length); array = la; } public boolean getBoolean(int idx) { byte b = getByte(idx); return b != 0; } public byte getByte(int idx) { return array.get(idx); } public short getShort(int idx) { return (short) (array.get(idx) << 8 | array.get(idx + 1) & 0xFF); } public int getInt(int idx) { return (array.get(idx) & 0xff) << 24 | (array.get(idx + 1) & 0xff) << 16 | (array.get(idx + 2) & 0xff) << 8 | array.get(idx + 3) & 0xff; } public long getLong(int idx) { return ((long) array.get(idx) & 0xff) << 56 | ((long) array.get(idx + 1) & 0xff) << 48 | ((long) array.get(idx + 2) & 0xff) << 40 | ((long) array.get(idx + 3) & 0xff) << 32 | ((long) array.get(idx + 4) & 0xff) << 24 | ((long) array.get(idx + 5) & 0xff) << 16 | ((long) array.get(idx + 6) & 0xff) << 8 | (long) array.get(idx + 7) & 0xff; } public double getDouble(int idx) { return Double.longBitsToDouble(getLong(idx)); } public DataArray setBoolean(int idx, boolean value) { int b = (value) ? 1 : 0; return setByte(idx, b); } public DataArray setByte(int idx, int value) { array.set(idx, value); return this; } public DataArray setShort(int idx, int value) { array.set(idx, value >>> 8); array.set(idx + 1, value); return this; } public DataArray setInt(int idx, int value) { array.set(idx, value >>> 24); array.set(idx + 1, value >>> 16); array.set(idx + 2, value >>> 8); array.set(idx + 3, value); return this; } public DataArray setLong(int idx, long value) { array.set(idx, value >>> 56); array.set(idx + 1, value >>> 48); array.set(idx + 2, value >>> 40); array.set(idx + 3, value >>> 32); array.set(idx + 4, value >>> 24); array.set(idx + 5, value >>> 16); array.set(idx + 6, value >>> 8); array.set(idx + 7, value); return this; } public DataArray setDouble(int idx, double value) { return setLong(idx, Double.doubleToRawLongBits(value)); } }
[ "jixingrui@foxmail.com" ]
jixingrui@foxmail.com
c9a28b206e5802eb993a4564721b142f4654cf2a
c9eae5f5116e60cef12dcf26ef47bcb93e5dd3a8
/src/day11_MultiBranchIf/MaxMin1.java
6348aac546472f627ec08e726721d5b01808c413
[]
no_license
A1myra/JavaProgramming2020_B21
871bb5630f92db3a6c211b28b8f8c872a373e972
0e23000c9aac88c8cb66d75dfc09aada896b46ce
refs/heads/master
2023-02-26T07:51:03.634622
2021-02-01T20:33:26
2021-02-01T20:33:26
312,080,251
0
0
null
null
null
null
UTF-8
Java
false
false
1,549
java
package day11_MultiBranchIf; import org.w3c.dom.ls.LSOutput; public class MaxMin1 { public static void main(String[] args) { int num1 = 20; int num2= 50; String maxNum = ""; if(num1>num2){ maxNum = num1 + ": is the maximum number"; }else{ maxNum = num2 +" : is the maximum number"; } System.out.println(maxNum); System.out.println("=============================="); String maximumnumber = (num1>num2)? num1 + ": is the maximum number" : num2 + " : is the maximum number"; System.out.println(maximumnumber); System.out.println("==============================="); String minNum = ""; if (num1 < num2) { minNum = num1 + " : is the minimum number"; } else { minNum = num2 + " : is the minimum number"; } System.out.println(minNum); System.out.println("================================"); String minimumNum = (num1 < num2) ? num1 +" : is the minimum number" : num2 + " : is the minimum number"; System.out.println(minimumNum); } } /*Task: 1. write a program that can find the maximum number between two different numbers first solution: if & else statement second solution: do not use any if statement 2. write a program that can find the minimum number between two different numbers first solution: if & else statement second solution: do not use any if statement */
[ "amiraa1225@gmail.com" ]
amiraa1225@gmail.com
d2c42c2b4ec86f346b395480a262c52936073bb5
62aa0675b0f49531418298f943ce5d54d6b82a13
/decoder.java
8da1c3aa1175f1d078841ae08d32b10f1f5f59b7
[]
no_license
LIMONIC/Huffman-Encoding-with-4way-heap
a4e2b2ecac582f01c092df4a20be0458e6c002a1
cb921a0665835af7f4ae9e1c464a0a3cd4c4c7d9
refs/heads/master
2023-03-22T14:21:33.832671
2021-03-06T16:12:21
2021-03-06T16:12:21
316,046,419
0
0
null
null
null
null
UTF-8
Java
false
false
3,786
java
import java.io.*; import java.util.*; public class decoder { public static String binPath = null; public static String codeTablePath = null; public static void expand() throws IOException { Map<String, String> codeTable = new HashMap<>(); /* Convert code table to Map<code, data>*/ try { Scanner scanner = new Scanner(new File(codeTablePath)); while (scanner.hasNextLine()) { String line = scanner.nextLine(); String lineSplit[] = line.split(" "); codeTable.put(lineSplit[1], lineSplit[0]); } } catch (FileNotFoundException e) { e.printStackTrace(); } /* Build Huffman Tree with code table */ HuffmanNode root = buildHTree(codeTable); /* Using Huffman Tree to decode encoded.bin */ writeDecodedFile(root); } /* Build Huffman Tree with code table */ private static HuffmanNode buildHTree(Map<String, String> codeTable) { HuffmanNode root = new HuffmanNode('\0',-1,null,null); HuffmanNode current = root; int size = codeTable.keySet().size(); for (String ct : codeTable.keySet()) { char[] ch = ct.toCharArray(); for (int i = 0; i < ct.length(); i++) { if (ch[i] == '0') { if (current.left == null) { current.left = new HuffmanNode('\0',-1,null,null); current = current.left; } else { current = current.left; } } if (ch[i] == '1') { if (current.right == null) { current.right = new HuffmanNode('\0',-1,null,null); current = current.right; } else { current = current.right; } } } current.data = Integer.parseInt(codeTable.get(ct)); current = root; size--; if (size < 0) { break; } } return root; } /* Using Huffman Tree to decode encoded.bin */ private static void writeDecodedFile (HuffmanNode root) throws IOException { HuffmanNode current = root; BufferedWriter bw = new BufferedWriter(new FileWriter("decoded.txt")); File file = new File(binPath); byte[] data = new byte[(int) file.length()]; DataInputStream dis = new DataInputStream(new FileInputStream(file)); dis.readFully(data); dis.close(); String temp; for (int i = 0; i < data.length; i++) { temp = Integer.toBinaryString((data[i] & 0xFF) + 0x100).substring(1); for (int bit = 0; bit < temp.length(); bit++) { if (temp.charAt(bit) == '1') { current = current.right; } else if (temp.charAt(bit) == '0') { current = current.left; } if (current.isLeaf()) { bw.write(current.data + "\n"); current = root; } } } bw.close(); } public static void main(String[] args) { try { if (args.length < 1) { System.out.println("The Input File name is not specified!"); System.out.println("path:[encoded.bin] path:[code_table.txt]"); return; } binPath = args[0]; codeTablePath = args[1]; decoder.expand(); } catch (Exception e) { System.out.println("File not found at: " + args[0]); } } }
[ "ztyame@gmail.com" ]
ztyame@gmail.com
63b4ddb42916f502cc5af91b2cfdee1fa558ec77
45da47fc0d2f4e925f2521248d8e791510e165bd
/hrms/src/main/java/hrmsproject/hrms/business/concretes/VerificationCodeManager.java
e2b980a532a70e831f7ee6ec2422e822798dcb6a
[]
no_license
OzgurKucet/JavaHrmsProject
2cd5debe0dd9b7330bfcdac160ae396ee1f60845
8ec134b2e7ec16aec7f17a2d18e1997ed90adf68
refs/heads/master
2023-06-25T05:45:44.260171
2021-07-24T22:39:29
2021-07-24T22:39:29
379,675,869
0
0
null
null
null
null
UTF-8
Java
false
false
1,610
java
package hrmsproject.hrms.business.concretes; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import hrmsproject.hrms.business.abstracts.VerificationCodeService; import hrmsproject.hrms.core.unilities.results.DataResult; import hrmsproject.hrms.core.unilities.results.Result; import hrmsproject.hrms.core.unilities.results.SuccessDataResult; import hrmsproject.hrms.core.unilities.results.SuccessResult; import hrmsproject.hrms.dataAccess.abstracts.VerificationCodeDao; import hrmsproject.hrms.entities.concretes.VerificationCode; @Service public class VerificationCodeManager implements VerificationCodeService{ private VerificationCodeDao verificationCodeDao; @Autowired public VerificationCodeManager(VerificationCodeDao verificationCodeDao) { this.verificationCodeDao = verificationCodeDao; } @Override public Result add(VerificationCode code) { this.verificationCodeDao.save(code); return new SuccessResult("VerificationCode eklendi"); } @Override public Result update(VerificationCode code) { this.verificationCodeDao.save(code); return new SuccessResult("VerificationCode güncellendi"); } @Override public Result delete(VerificationCode code) { this.verificationCodeDao.delete(code); return new SuccessResult("VerificationCode silindi"); } @Override public DataResult<VerificationCode> findByUserIdAndCode(int userId, String code) { return new SuccessDataResult<VerificationCode>(this.verificationCodeDao.findByUserIdAndCode(userId, code)); } }
[ "ozgurkucet@hotmail.com" ]
ozgurkucet@hotmail.com
f153c1b09667572626ddce752a1fcb11cf7b40e5
161f98b0af92924400450c6114be79bd66010cf1
/app/src/main/java/com/thanhcs/samplemvc/controller/Controller.java
c7f3975ffcdf88910ef2e41a2091a932b8d4e7ac
[]
no_license
thanhcs94/SampleMVC
e7206bc1553bee66e643a5bdaafec3a2bc0f4c4a
da2051b30d47779a0f7e6f60e0ee07bef4b82db4
refs/heads/master
2020-05-27T21:14:36.882304
2017-03-02T06:29:35
2017-03-02T06:29:35
83,642,700
0
0
null
null
null
null
UTF-8
Java
false
false
825
java
package com.thanhcs.samplemvc.controller; import android.app.Application; import com.thanhcs.samplemvc.models.ModelCart; import com.thanhcs.samplemvc.models.ModelProducts; import java.util.ArrayList; /** * Created by ThanhCS94 on 3/2/17. * I'm HIDING. Don't waste your time to find me. */ public class Controller extends Application { private ArrayList<ModelProducts> myProducts = new ArrayList<ModelProducts>(); private ModelCart myCart = new ModelCart(); public ModelProducts getProducts(int pPosition) { return myProducts.get(pPosition); } public void setProducts(ModelProducts Products) { myProducts.add(Products); } public ModelCart getCart() { return myCart; } public int getProductsArraylistSize() { return myProducts.size(); } }
[ "nguyenvanthanh9294@gmail.com" ]
nguyenvanthanh9294@gmail.com
cb599ebcd2f5d5418744ed2f29827a8b123a44f4
b8c7cc022f16a151dfca69244ed15fc744104035
/src/main/java/com/bank/dao/TransactionDAO.java
270f23d15bc5c4dbce0647d8d5b1f6a6107508eb
[]
no_license
tatar6607/heroku_spring_boot
2c0c9a09997ade74c250f8d3ef5e708f5dcd8f1f
605b464863570fa82211aca4a55475eed64075d8
refs/heads/master
2023-07-02T05:29:53.149426
2021-08-05T22:20:47
2021-08-05T22:20:47
393,177,752
0
0
null
null
null
null
UTF-8
Java
false
false
472
java
package com.bank.dao; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import java.math.BigDecimal; import java.util.List; @Data @AllArgsConstructor @NoArgsConstructor public class TransactionDAO { private Long id; private String date; private String time; private String description; private String type; private Double amount; private BigDecimal availableBalance; private Boolean isTransfer; }
[ "tatar66@gmail.com" ]
tatar66@gmail.com
433a1b5f1c5b1adcf2ad8e8a316ec1d4eb1dcade
66c8b127214aff3289d248fa408a6c8eb22ffe81
/backend/src/main/java/com/fastcampus/mobility/dto/AbstractDto.java
293e9bbe0cd2d2a45a07840e6da32c470509f23a
[ "Apache-2.0" ]
permissive
SeungpilPark/fastcampus-monolithic
4bd15b367324da9486b5df12673591a1392fcbda
c5805f0112bf52be4e1132caae40794188e8b008
refs/heads/master
2023-06-24T15:14:39.748034
2021-02-02T22:26:43
2021-02-02T22:26:43
330,288,918
0
0
null
null
null
null
UTF-8
Java
false
false
1,580
java
package com.fastcampus.mobility.dto; import com.fasterxml.jackson.databind.DeserializationFeature; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.SerializationFeature; import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; import java.io.IOException; import java.io.Serializable; import java.util.List; import java.util.stream.Collectors; public abstract class AbstractDto implements Serializable { private static final long serialVersionUID = 1L; public static <T extends AbstractDto> T fromEntity(final Class<T> type, final Object entity) { ObjectMapper objectMapper = createObjectMapper(); try { String json = objectMapper.writeValueAsString(entity); return objectMapper.readValue(json, type); } catch (IOException jpe) { throw new IllegalArgumentException(jpe); } } public static <T extends AbstractDto> List<T> fromListEntities(final Class<T> dtoType, final List<?> entities) { return entities.stream().sequential() .map(entity -> AbstractDto.fromEntity(dtoType, entity)) .collect(Collectors.toList()); } private static ObjectMapper createObjectMapper() { ObjectMapper objectMapper = new ObjectMapper(); objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); objectMapper.configure(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT, true); objectMapper.registerModule(new JavaTimeModule()); objectMapper.disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS); return objectMapper; } }
[ "mz_seungpilpark@woowafriends.com" ]
mz_seungpilpark@woowafriends.com
187a4eeb2a500ca82bde87d3fa72415d94894021
45c00f46940dbd54517933ed5376797ba100ddfd
/src/main/java/org/ccframe/client/module/bike/view/AgentAppWindowView.java
82fed117607e8b638acbc0487b91ecc9204e11bb
[]
no_license
hoku850/bike-server
1926a92c1ef69a2ec6e497b2a653de6f89b96d43
a75559e923849ab96319438cc45dfbe7115206ef
refs/heads/master
2021-07-01T03:56:16.995615
2017-09-21T07:31:28
2017-09-21T07:31:28
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,485
java
package org.ccframe.client.module.bike.view; import org.ccframe.client.base.BaseWindowView; import org.ccframe.client.commons.CcFormPanelHelper; import org.ccframe.client.commons.ClientManager; import org.ccframe.client.commons.RestCallback; import org.ccframe.client.components.CcLabelValueCombobox; import org.ccframe.client.components.CcTextField; import org.ccframe.client.components.CcVBoxLayoutContainer; import org.ccframe.subsys.bike.domain.entity.AgentApp; import org.fusesource.restygwt.client.Method; import com.google.gwt.core.client.GWT; import com.google.gwt.editor.client.Editor; import com.google.gwt.editor.client.SimpleBeanEditorDriver; import com.google.gwt.uibinder.client.UiBinder; import com.google.gwt.uibinder.client.UiField; import com.google.gwt.uibinder.client.UiHandler; import com.google.gwt.user.client.ui.Widget; import com.google.inject.Singleton; import com.sencha.gxt.widget.core.client.Component; import com.sencha.gxt.widget.core.client.button.TextButton; import com.sencha.gxt.widget.core.client.event.SelectEvent; import com.sencha.gxt.widget.core.client.form.FormPanelHelper; import com.sencha.gxt.widget.core.client.info.Info; @Singleton public class AgentAppWindowView extends BaseWindowView<Integer, AgentApp> implements Editor<AgentApp>{ interface AgentAppUiBinder extends UiBinder<Component, AgentAppWindowView> {} interface AgentAppDriver extends SimpleBeanEditorDriver<AgentApp, AgentAppWindowView> {} private static AgentAppUiBinder uiBinder = GWT.create(AgentAppUiBinder.class); private AgentAppDriver driver = GWT.create(AgentAppDriver.class); private Integer agentAppId; @UiField CcVBoxLayoutContainer vBoxLayoutContainer; @UiField CcTextField appNm; @UiField CcTextField iosUrl; @UiField CcTextField androidUrl; @UiField CcLabelValueCombobox orgId; @UiHandler("saveButton") public void handleSaveClick(SelectEvent e){ if(FormPanelHelper.isValid(vBoxLayoutContainer, false)){ final AgentApp agentApp = driver.flush(); agentApp.setAgentAppId(agentAppId); final TextButton button = ((TextButton)(e.getSource())); button.disable(); ClientManager.getAgentAppClient().saveOrUpdate(agentApp, new RestCallback<Void>(){ @Override public void onSuccess(Method method, Void response) { Info.display("操作完成", "运营商APP" + (agentAppId == null ? "新增" : "修改") + "成功"); AgentAppWindowView.this.retCallBack.onClose(agentApp); //保存并回传结果数据 button.enable(); window.hide(); } @Override protected void afterFailure(){ //如果采用按钮的disable逻辑,一定要在此方法enable按钮 button.enable(); } }); } } @Override protected Widget bindUi() { Widget widget = uiBinder.createAndBindUi(this); driver.initialize(this); driver.edit(new AgentApp()); return widget; } @Override protected void onLoadData(Integer agentAppId) { this.agentAppId = agentAppId; window.setHeadingText("运营商APP" + (agentAppId == null ? "增加" : "修改")); orgId.reset(); CcFormPanelHelper.clearInvalid(vBoxLayoutContainer); // 重置下拉框 if(agentAppId == null){ FormPanelHelper.reset(vBoxLayoutContainer); }else{ ClientManager.getAgentAppClient().getById(agentAppId, new RestCallback<AgentApp>(){ @Override public void onSuccess(Method method, AgentApp response) { driver.edit(response); } }); } vBoxLayoutContainer.forceLayout(); } }
[ "1275563227@qq.com" ]
1275563227@qq.com
46e97a4480ec56ddaad9ff3d5dccb883dee7779f
ff5547c329fc80f475229812520e30db7f413c78
/calendar-api/src/main/java/com/larry/fc/finalproject/api/dto/NotificationDto.java
faa03924a4383ffde5183b6303d372619b89a0b8
[]
no_license
wisdomme/final-project-calendar
deac988eaed80d4a35f7bb9fa957f553501ebf78
d4e2630b5abd2d88b43bf7fc959348dd68ab066a
refs/heads/main
2023-07-14T08:17:25.783109
2021-09-04T05:44:09
2021-09-04T05:44:09
null
0
0
null
null
null
null
UTF-8
Java
false
false
501
java
package com.larry.fc.finalproject.api.dto; import com.larry.fc.finalproject.core.domain.ScheduleType; import lombok.Data; import java.time.LocalDateTime; /** * @author Larry */ @Data public class NotificationDto implements ForListScheduleDto { private final Long scheduleId; private final Long writerId; private final String title; private final LocalDateTime notifyAt; @Override public ScheduleType getScheduleType() { return ScheduleType.NOTIFICATION; } }
[ "larry.charry@kakaopaycorp.com" ]
larry.charry@kakaopaycorp.com
18f6f8c4eb6ec8449a439f393ef29ac6bc7d7af9
23c9dcc425b76a593d45a248a72a86e5022e2ea1
/bits_and_pieces/quiz_tasks.java
736897b6ae2f6b9f2504ae510cd090353a03b03a
[]
no_license
tiborh/java
c54436ba982fdd7e64eaeb1ed3b65e8e1a7f2a94
5e0fafd44a1f6eeea6482030513d4241ac5cb26b
refs/heads/master
2020-04-07T05:18:03.702429
2017-04-03T00:40:57
2017-04-03T00:40:57
54,286,999
0
0
null
null
null
null
UTF-8
Java
false
false
4,411
java
import java.util.Stack; /** * Write a description of class quiz_tests here. * * @author (your name) * @version (a version number or a date) */ public class quiz_tasks { private static int x = 10; static int f9() { int a = 1; int b = 2; int c = 3; if ( b > a ) { a = b; if ( c > a ) { a = c; } } else if ( a == c ) { a = 0; } return a; } static int f8() { int counter = 0; for (int i = 0; i < 10; i++) { System.out.print(i + ": "); for (int j = 0; j < i; j++) { counter = counter + 1; System.out.print(counter + " "); } System.out.println(); } return counter; } static int[] f7() { int i = 0; int j = 0; for (i = 0; i < 3; i++) { for (j = 0; j < 3; j++) { if (j == 1) break; } } int ij[] = {i,j}; return ij; } static int f6() { int y = 1; do { y += y; System.out.println(y); } while (y < 126); return y; } static int f5() { Stack<Integer> s = new Stack<Integer>(); s.push(9); s.push(2); s.push(7); int a = s.pop(); int b = s.pop(); int c = s.pop(); return a + b * c; } static int f4() { int[] numbers = {9, 2, 8, 1, 4}; int x = 0; for (int i = 0; i < 5; i++) { if (numbers[i] % 2 == 0) continue; x += numbers[i]; System.out.printf("numbers[%d]: %d\n",i,numbers[i]); } return x; } static int f3(int value) { if (value == 0) return 0; return 1 * f3(value - 2); } public static int f2() { int result = 1; int[] array = {2, 3, 4}; for (int x = 0; x < array.length - 1; x++) { System.out.println(x); result *= array[x]; } System.out.println(x); result *= x; System.out.println(result); return result; } public static int foo(int v) { //System.out.println(v); if (v == 0) { System.out.println("v == 0, returning 1"); return 1; } else if (v == 1) { System.out.println("v == 1, returning 0"); return 0; } else if (v % 2 == 0) { System.out.println("v % 2 == 0 returning " + 1+foo(v/2)); return 1+foo(v/2); } else { System.out.println("catchall else, returning " + foo(v/2)); return foo(v/2); } } public static void f1(int x, int y, int z) { if ( x > y ) if ( z > x) x = 1; else x = 3; System.out.println(x); } public static void main(String[] argv) { System.out.println("Fine."); System.out.println(3 % 2 * 2 + 3 * - 1 / 3); System.out.println(- 1 / 3); System.out.println(3 * - 1 / 3); int x = 1; int y = x++; int z = ++y; y = z++; z = ++z; System.out.println(z); double d = 2; double d2 = 2.0f; char grade = 'A'; int score = 99; switch(score/10) { case 10: grade = 'A'; case 8: grade = 'C'; case 9: grade = 'B'; default: grade = 'F'; } System.out.println(grade); f1(2,4,6); f1(6,4,2); f1(4,2,6); int i; for ( i = 0; i < 4; i++ ); { i = i + 2; } System.out.println(i); System.out.println(x); System.out.println(f2()); String str = "HKUST"; System.out.println("1: " + str.charAt(2)); // (1) System.out.println("2: " + str.charAt(3)); // (2) System.out.println("3: " + str.substring(2,3).charAt(0)); // (3) System.out.println("4: " + "HKUST".charAt(3)); // (4) } }
[ "tibor@harcsa.net" ]
tibor@harcsa.net
c1e8a6dc7084ac873be08f9ae70f327cb2d2673b
5da1acbf5e382238ba88ccfce24e91fa32c0f2e6
/conductor-client/src/test/java/com/openlattice/hazelcast/serializers/VertexStreamSerializerTest.java
8d8c1617433b13266d574a4548ff9642e83f74a7
[ "CC0-1.0", "PostgreSQL", "CDDL-1.1", "BSD-3-Clause", "EPL-1.0", "Classpath-exception-2.0", "EPL-2.0", "LicenseRef-scancode-hazelcast-community-1.0", "CDDL-1.0", "MIT", "GPL-2.0-only", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.0-or-later", "GPL-3.0-or-later", "GPL-1.0-or-later", "LGPL-2.1-or-later", "GPL-3.0-only", "AGPL-3.0-or-later", "LicenseRef-scancode-other-copyleft" ]
permissive
openlattice/openlattice
97ff2ceeca3b2bacb8994e1d6d610a6c71f34b91
b836eea0a17128089e0dbe6719495413b023b2fb
refs/heads/develop
2022-11-01T11:02:58.698638
2022-10-17T17:29:12
2022-10-17T17:29:12
101,697,464
4
3
Apache-2.0
2022-08-04T23:11:51
2017-08-28T23:37:32
Kotlin
UTF-8
Java
false
false
1,552
java
/* * Copyright (C) 2018. OpenLattice, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * You can contact the owner of the copyright at support@openlattice.com * */ package com.openlattice.hazelcast.serializers; import com.openlattice.graph.core.objects.VertexKey; import java.io.Serializable; import java.util.UUID; import com.openlattice.mapstores.TestDataFactory; import com.kryptnostic.rhizome.hazelcast.serializers.AbstractStreamSerializerTest; public class VertexStreamSerializerTest extends AbstractStreamSerializerTest<VertexStreamSerializer, VertexKey> implements Serializable { private static final long serialVersionUID = -7580519749925921121L; @Override protected VertexKey createInput() { return new VertexKey( UUID.randomUUID(), TestDataFactory.entityKey() ); } @Override protected VertexStreamSerializer createSerializer() { return new VertexStreamSerializer(); } }
[ "drew@openlattice.com" ]
drew@openlattice.com
7e9b540bb0ea67b929fc984b9f99b0ce9ea06428
f977e1003456141e319b7b7932afce5d6ae52ad9
/object k2/recursion/fabinchi/fa.java
ece4e2422707ea81fe8964fcdc711a649318d04c
[]
no_license
miladmirkhan/java-first-year
0dde6d53d6d0aa2f692fce817a4602bb71bef5d2
dc46c38cf4826924d5c11ece1cb0a201325d7317
refs/heads/main
2023-07-01T16:41:37.065143
2021-08-10T15:16:12
2021-08-10T15:16:12
394,699,764
3
0
null
null
null
null
UTF-8
Java
false
false
291
java
public class fa { public static void main(String[]args) { System.out.println(fabincci(7)); for(int i=0;i<=10;i++) { System.out.print(fabincci(i)+" "); } } public static int fabincci(int n) { if(n==1||n==2){ return 1;} if(n==0){ return 0;} else return fabincci(n-2)+fabincci(n-1); } }
[ "87146761+miladmirkhan@users.noreply.github.com" ]
87146761+miladmirkhan@users.noreply.github.com
91ed6677876f6d17388e702e10109bd57c314a1d
dd992034b16f51c33101c0ff25498a6063fa5805
/websourceviewer/src/main/java/com/ngyb/websourceviewer/StreamUtils.java
d4c8a9d0beb6113324aee654c630d6938366d078
[]
no_license
nangongyibin/Android_NetLib
188d31028f685bb8a6c63d5cf4ee78be79d8d224
8aeb257551957ee978a1f2e212110623d1a15ba4
refs/heads/master
2021-07-24T06:26:13.369473
2020-08-11T14:03:59
2020-08-11T14:03:59
206,793,507
0
0
null
null
null
null
UTF-8
Java
false
false
770
java
package com.ngyb.websourceviewer; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; /** * 作者:南宫燚滨 * 描述: * 邮箱:nangongyibin@gmail.com * 日期:2019/9/4 21:48 */ public class StreamUtils { /** * @param is * @return */ public static String StreamToString(InputStream is) { try { ByteArrayOutputStream baos = new ByteArrayOutputStream(); int len = 0; byte[] buf = new byte[1024]; while ((len = is.read(buf)) != -1) { baos.write(buf, 0, len); } return baos.toString(); } catch (IOException e) { e.printStackTrace(); return ""; } } }
[ "nangongyibin@gmail.com" ]
nangongyibin@gmail.com
83cf13a9b2fe70d03193a41aa740ad343eb5130d
9ef96e1a365b0e6ef129659423e16483437e08dc
/src/org/apache/commons/math3/analysis/interpolation/DividedDifferenceInterpolator.java
76d23b89cabbbc1e2fed2f7e06f2ade3a41c16e5
[]
no_license
nael8r/JMula
a253bf0965fbab6a41dfea2f10e801ee2cba1512
71f883eb1768ac6736d4942b364410d6a8adbec8
refs/heads/master
2021-01-24T21:00:24.505891
2015-07-21T21:32:45
2015-07-21T21:32:45
38,308,536
0
0
null
null
null
null
UTF-8
Java
false
false
5,064
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.commons.math3.analysis.interpolation; import org.apache.commons.math3.analysis.polynomials.PolynomialFunctionLagrangeForm; import org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm; import org.apache.commons.math3.exception.DimensionMismatchException; import org.apache.commons.math3.exception.NonMonotonicSequenceException; import org.apache.commons.math3.exception.NumberIsTooSmallException; import java.io.Serializable; /** * Implements the <a href=" * http://mathworld.wolfram.com/NewtonsDividedDifferenceInterpolationFormula.html"> * Divided Difference Algorithm</a> for interpolation of real univariate * functions. For reference, see <b>Introduction to Numerical Analysis</b>, * ISBN 038795452X, chapter 2. * <p> * The actual code of Neville's evaluation is in PolynomialFunctionLagrangeForm, * this class provides an easy-to-use interface to it.</p> * * @since 1.2 */ public class DividedDifferenceInterpolator implements UnivariateInterpolator, Serializable { /** serializable version identifier */ private static final long serialVersionUID = 107049519551235069L; /** * Compute an interpolating function for the dataset. * * @param x Interpolating points array. * @param y Interpolating values array. * @return a function which interpolates the dataset. * @throws DimensionMismatchException if the array lengths are different. * @throws NumberIsTooSmallException if the number of points is less than 2. * @throws NonMonotonicSequenceException if {@code x} is not sorted in * strictly increasing order. */ public PolynomialFunctionNewtonForm interpolate(double x[], double y[]) throws DimensionMismatchException, NumberIsTooSmallException, NonMonotonicSequenceException { /** * a[] and c[] are defined in the general formula of Newton form: * p(x) = a[0] + a[1](x-c[0]) + a[2](x-c[0])(x-c[1]) + ... + * a[n](x-c[0])(x-c[1])...(x-c[n-1]) */ PolynomialFunctionLagrangeForm.verifyInterpolationArray(x, y, true); /** * When used for interpolation, the Newton form formula becomes * p(x) = f[x0] + f[x0,x1](x-x0) + f[x0,x1,x2](x-x0)(x-x1) + ... + * f[x0,x1,...,x[n-1]](x-x0)(x-x1)...(x-x[n-2]) * Therefore, a[k] = f[x0,x1,...,xk], c[k] = x[k]. * <p> * Note x[], y[], a[] have the same length but c[]'s size is one less.</p> */ final double[] c = new double[x.length-1]; System.arraycopy(x, 0, c, 0, c.length); final double[] a = computeDividedDifference(x, y); return new PolynomialFunctionNewtonForm(a, c); } /** * Return a copy of the divided difference array. * <p> * The divided difference array is defined recursively by <pre> * f[x0] = f(x0) * f[x0,x1,...,xk] = (f[x1,...,xk] - f[x0,...,x[k-1]]) / (xk - x0) * </pre></p> * <p> * The computational complexity is O(N^2).</p> * * @param x Interpolating points array. * @param y Interpolating values array. * @return a fresh copy of the divided difference array. * @throws DimensionMismatchException if the array lengths are different. * @throws NumberIsTooSmallException if the number of points is less than 2. * @throws NonMonotonicSequenceException * if {@code x} is not sorted in strictly increasing order. */ protected static double[] computeDividedDifference(final double x[], final double y[]) throws DimensionMismatchException, NumberIsTooSmallException, NonMonotonicSequenceException { PolynomialFunctionLagrangeForm.verifyInterpolationArray(x, y, true); final double[] divdiff = y.clone(); // initialization final int n = x.length; final double[] a = new double [n]; a[0] = divdiff[0]; for (int i = 1; i < n; i++) { for (int j = 0; j < n-i; j++) { final double denominator = x[j+i] - x[j]; divdiff[j] = (divdiff[j+1] - divdiff[j]) / denominator; } a[i] = divdiff[0]; } return a; } }
[ "naelr8@gmail.com" ]
naelr8@gmail.com
06040646da740978e6cf4d5ce99b22e56e6d819d
924029305c74423b8ba96c16b53d6164ba440da7
/src/com/generator/IGenerator.java
15badb0e60db6df091f1b3f627b7bc42f8d74040
[]
no_license
timeobserver/POJOGenerator
ace18d0944eb7666e46db20b48444911e7bddd60
87f701cd123e01528c91b01ea620203c33e3aaf0
refs/heads/master
2016-09-13T02:17:03.869452
2016-05-20T03:16:58
2016-05-20T03:16:58
59,162,535
0
0
null
null
null
null
GB18030
Java
false
false
170
java
package com.generator; /** * 生成数据库POJO接口 * @author timeobserver * */ public interface IGenerator { public abstract void generate(); }
[ "timeobserver@sina.cn" ]
timeobserver@sina.cn
2b98b0d774fae6b14a1c916bcc08b21a95adf369
28b2cafb967cbf7883ae096446dfe1036541be2f
/Assignment2/Cat.java
03857d9b1b6e7ed24e67664526131021eb42db37
[]
no_license
BryseJamesRochester/SJSU_CS151_S2020
9b42910d393bba18343b944d254507922728408d
6231080ef030e074b7c0d5dbb0a090ca57c1a901
refs/heads/master
2022-04-09T04:04:12.440476
2020-03-18T07:34:35
2020-03-18T07:34:35
238,319,884
0
0
null
null
null
null
UTF-8
Java
false
false
557
java
public class Cat extends Animal implements Domesticated, Scratcher { public Cat(String type, String name, int age, String gender, String environment, int speed) { super(type, name, age, gender, environment, speed); } @Override public void scratch() { System.out.println(name + " the " + type + " scratches.\n"); } @Override public void walk() { System.out.println(name + " the " + type + " goes for a walk.\n"); } @Override public void greetHuman() { System.out.println(name + " the " + type + " greets a human.\n"); } }
[ "bryse.rochester@hotmail.com" ]
bryse.rochester@hotmail.com
068f48aec0b4b47b62ec0075ba406ae0ac2f6800
a3f4b35b3d593277c9d5c56d128175f6c892dfa6
/src/main/java/com/ram/SpringSecurityByTelusko/repository/UpdateStockRatesRepository.java
a3f833e12ceef70c69a20a10948ca980950434cb
[]
no_license
Ramanji90/Jenkins
f045ce26b949016ec271ec1d2d47c3a3dd3b7677
70c40a18468776893273d3c146c839522f065ea7
refs/heads/master
2023-05-10T23:39:15.227993
2021-06-01T16:00:34
2021-06-01T16:00:34
372,518,329
0
0
null
null
null
null
UTF-8
Java
false
false
270
java
package com.ram.SpringSecurityByTelusko.repository; import org.springframework.data.jpa.repository.JpaRepository; import com.ram.SpringSecurityByTelusko.model.StockDetails; public interface UpdateStockRatesRepository extends JpaRepository<StockDetails, Integer> { }
[ "ramanjaneyappa@gmail.com" ]
ramanjaneyappa@gmail.com
344f355ec0da55e1645ed33d9c5b2403f1767146
43bb0f7054c6c167cca09bbd3287ab5cfe738136
/LB_MS/LB_MS_COMMON/src/main/java/cn/libo/msproject/vo/MsuserVo.java
be5948a9604f06ca30da03e3e7e2a525fd1c8372
[]
no_license
bestrow/ms_system
5ef0a7c3ba5ef2a7002bf8dfef8651c3ad64c4df
8a5ff2c77a736ce67da9903a24c63d9d27213bcc
refs/heads/master
2021-09-21T00:34:21.954314
2018-08-17T15:42:03
2018-08-17T15:42:03
null
0
0
null
null
null
null
UTF-8
Java
false
false
322
java
package cn.libo.msproject.vo; import cn.libo.msproject.entity.Msuser; import java.io.Serializable; public class MsuserVo implements Serializable { private Msuser msuser; public Msuser getMsuser() { return msuser; } public void setMsuser(Msuser msuser) { this.msuser = msuser; } }
[ "1142465640@qq.com" ]
1142465640@qq.com
b803ecfa8477bea6fef5a0e8d4b7f089ad8553e5
1f19aec2ecfd756934898cf0ad2758ee18d9eca2
/u-1/u-11/u-11-111/u-11-111-f5202.java
e63896eddef0aecc1d959d539c6629aabcf6abbc
[]
no_license
apertureatf/perftest
f6c6e69efad59265197f43af5072aa7af8393a34
584257a0c1ada22e5486052c11395858a87b20d5
refs/heads/master
2020-06-07T17:52:51.172890
2019-06-21T18:53:01
2019-06-21T18:53:01
193,039,805
0
0
null
null
null
null
UTF-8
Java
false
false
106
java
mastercard 5555555555554444 4012888888881881 4222222222222 378282246310005 6011111111111117 3100652808429
[ "jenkins@khan.paloaltonetworks.local" ]
jenkins@khan.paloaltonetworks.local
06065ad28959ba9649dbb218b51cb8de1ab39f51
1ba5599e3f67e5429c6a89b06f389cab24b3bb8e
/CSE535_project_final/app/src/main/java/com/example/cse535_project_final/LoginActivity.java
72335c58e2f49a87164f49a039d593d9a301b488
[]
no_license
laixing/AndroidFitness
53b977ff52ecf32cfc3ea64c3dcec5ab64e79afa
4566a4b4d9d61e0c7581298be592a283fd2fbe21
refs/heads/master
2022-12-13T06:15:06.596656
2020-09-12T05:02:42
2020-09-12T05:02:42
294,871,654
0
0
null
null
null
null
UTF-8
Java
false
false
1,866
java
package com.example.cse535_project_final; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.graphics.Color; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; import android.widget.Toast; public class LoginActivity extends AppCompatActivity { Button b1,b2; EditText ed1,ed2; int counter = 5; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_login); b1 = (Button)findViewById(R.id.button); ed1 = (EditText)findViewById(R.id.editText); ed2 = (EditText)findViewById(R.id.editText2); b2 = (Button)findViewById(R.id.button2); b1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if(ed1.getText().toString().length()!=0) { Toast.makeText(getApplicationContext(), "Welcome to Team09 Project App",Toast.LENGTH_SHORT).show(); Intent intent = new Intent(LoginActivity.this, MainActivity.class); intent.putExtra("001",ed1.getText().toString()); startActivity(intent); }else{ Toast.makeText(getApplicationContext(), "Please enter your name and password",Toast.LENGTH_SHORT).show(); } } }); b2.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { ed1.setText(""); ed2.setText(""); Toast.makeText(getApplicationContext(), "Cancel login",Toast.LENGTH_SHORT).show(); } }); } }
[ "754175412@qq.com" ]
754175412@qq.com
954260e7499e121ba05fb2707eb8b157cefc3804
b1ed5d1056671a26f60476aa7d0676b3f95b73c8
/ping-pong-lib/src/test/java/org/dan/ping/pong/mock/simulator/EnlistMode.java
d1cd840d3dea4f8ee790e48dd6e1edc2e74e34e6
[]
no_license
yaitskov/ping-pong
8b339cc4b0fbf5561fb87eeace248c3de7afaffe
d4d88c70c15f74b56c9161cf6791f6dd023e3ed4
refs/heads/master
2022-06-27T00:54:04.679740
2018-07-22T12:45:56
2018-07-22T12:45:56
96,780,470
0
0
null
2022-06-21T00:48:18
2017-07-10T13:26:48
Java
UTF-8
Java
false
false
112
java
package org.dan.ping.pong.mock.simulator; public enum EnlistMode { None, Enlist, Pay, Pass, Expel, Quit; }
[ "dyaitskov@gmail.com" ]
dyaitskov@gmail.com
d4bf7b5c233a2a7231b6117a89c57b34249789ed
9159ce0b0f58e76e3db09f579c0f220fb063e770
/app/src/test/java/com/example/marwatalaat/malsqlite/ExampleUnitTest.java
9d5ee18090c1cf76d236f5cbadd738f289b27b76
[]
no_license
elsayedfahmy/simpleSQlitein-MALtrainning
312c8fe726b22f8dc009a383a38159c9442eb4a9
1636caf885aeb96401bd66c837e0359613f7cad5
refs/heads/master
2020-07-19T00:03:49.335779
2017-06-14T13:09:06
2017-06-14T13:09:06
94,332,049
0
0
null
null
null
null
UTF-8
Java
false
false
411
java
package com.example.marwatalaat.malsqlite; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition_isCorrect() throws Exception { assertEquals(4, 2 + 2); } }
[ "elsayed1995156789" ]
elsayed1995156789
04e24401679bb65fc9fc2025b25bb25e5164f465
2d9c94f0189b1003d78b2b126f087208328d93d3
/src/com/aforma/mewaiter/app/Discountsel.java
6fd5046710de8ff6af1175e38a90fac2dcbb2c38
[]
no_license
galmail/MeWaiter-Android
322abdc6c41b0e439342811959b735f7478db53e
b57972151ffd00345d01144858b315aff211cdbe
refs/heads/master
2020-12-24T18:42:11.339569
2013-11-30T23:00:40
2013-11-30T23:00:40
57,456,535
0
0
null
null
null
null
WINDOWS-1258
Java
false
false
1,487
java
package com.aforma.mewaiter.app; /** * * Clase descuento seleccionado: maneja cada uno de los descuentos seleccionados para a–adir al pedido o ticket, sus propiedades y eventos. * */ public class Discountsel { private int id_order; private int id_table; private String sid; // Sid del descuento private String general; private String sid_menu; private String sid_section; private String sid_dish; /** * Clase descuento seleccionado: maneja cada uno de los descuentos seleccionados para a–adir al pedido o ticket, sus propiedades y eventos. * * @param sid * @param id_table * @param id_order * @param general * @param sid_menu * @param sid_section * @param sid_dish */ public Discountsel(String sid, int id_table, int id_order, String general, String sid_menu, String sid_section, String sid_dish) { super(); this.id_table=id_table; this.id_order=id_order; this.sid=sid; this.general = general; this.sid_menu = sid_menu; this.sid_section = sid_section; this.sid_dish = sid_dish; } public int getIdOrder() { return this.id_order; } public int getIdTable() { return this.id_table; } public String getSid() { return this.sid; } public String getGeneral() { return this.general; } public String getGetMenu() { return this.sid_menu; } public String getGetSection() { return this.sid_section; } public String getDish() { return this.sid_dish; } }
[ "silmen34@gmail.com" ]
silmen34@gmail.com
c84df722173aea49af9eec2eefe6a6cfa1a14999
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/9/9_1cfa7abf65e45554fe308168e1678dd8d447b481/TokenRewriteStream/9_1cfa7abf65e45554fe308168e1678dd8d447b481_TokenRewriteStream_s.java
77050202e7f521cfabb711c9228354e55cffda9c
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
21,746
java
/* [The "BSD license"] Copyright (c) 2005-2009 Terence Parr All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package org.antlr.runtime; import java.util.*; /** Useful for dumping out the input stream after doing some * augmentation or other manipulations. * * You can insert stuff, replace, and delete chunks. Note that the * operations are done lazily--only if you convert the buffer to a * String. This is very efficient because you are not moving data around * all the time. As the buffer of tokens is converted to strings, the * toString() method(s) check to see if there is an operation at the * current index. If so, the operation is done and then normal String * rendering continues on the buffer. This is like having multiple Turing * machine instruction streams (programs) operating on a single input tape. :) * * Since the operations are done lazily at toString-time, operations do not * screw up the token index values. That is, an insert operation at token * index i does not change the index values for tokens i+1..n-1. * * Because operations never actually alter the buffer, you may always get * the original token stream back without undoing anything. Since * the instructions are queued up, you can easily simulate transactions and * roll back any changes if there is an error just by removing instructions. * For example, * * CharStream input = new ANTLRFileStream("input"); * TLexer lex = new TLexer(input); * TokenRewriteStream tokens = new TokenRewriteStream(lex); * T parser = new T(tokens); * parser.startRule(); * * Then in the rules, you can execute * Token t,u; * ... * input.insertAfter(t, "text to put after t");} * input.insertAfter(u, "text after u");} * System.out.println(tokens.toString()); * * Actually, you have to cast the 'input' to a TokenRewriteStream. :( * * You can also have multiple "instruction streams" and get multiple * rewrites from a single pass over the input. Just name the instruction * streams and use that name again when printing the buffer. This could be * useful for generating a C file and also its header file--all from the * same buffer: * * tokens.insertAfter("pass1", t, "text to put after t");} * tokens.insertAfter("pass2", u, "text after u");} * System.out.println(tokens.toString("pass1")); * System.out.println(tokens.toString("pass2")); * * If you don't use named rewrite streams, a "default" stream is used as * the first example shows. */ public class TokenRewriteStream extends CommonTokenStream { public static final String DEFAULT_PROGRAM_NAME = "default"; public static final int PROGRAM_INIT_SIZE = 100; public static final int MIN_TOKEN_INDEX = 0; // Define the rewrite operation hierarchy class RewriteOperation { /** What index into rewrites List are we? */ protected int instructionIndex; /** Token buffer index. */ protected int index; protected Object text; protected RewriteOperation(int index) { this.index = index; } protected RewriteOperation(int index, Object text) { this.index = index; this.text = text; } /** Execute the rewrite operation by possibly adding to the buffer. * Return the index of the next token to operate on. */ public int execute(StringBuffer buf) { return index; } @Override public String toString() { String opName = getClass().getName(); int $index = opName.indexOf('$'); opName = opName.substring($index+1, opName.length()); return "<"+opName+"@"+tokens.get(index)+ ":\""+text+"\">"; } } class InsertBeforeOp extends RewriteOperation { public InsertBeforeOp(int index, Object text) { super(index,text); } @Override public int execute(StringBuffer buf) { buf.append(text); if ( tokens.get(index).getType()!=Token.EOF ) { buf.append(tokens.get(index).getText()); } return index+1; } } /** I'm going to try replacing range from x..y with (y-x)+1 ReplaceOp * instructions. */ class ReplaceOp extends RewriteOperation { protected int lastIndex; public ReplaceOp(int from, int to, Object text) { super(from,text); lastIndex = to; } @Override public int execute(StringBuffer buf) { if ( text!=null ) { buf.append(text); } return lastIndex+1; } @Override public String toString() { if ( text==null ) { return "<DeleteOp@"+tokens.get(index)+ ".."+tokens.get(lastIndex)+">"; } return "<ReplaceOp@"+tokens.get(index)+ ".."+tokens.get(lastIndex)+":\""+text+"\">"; } } /** You may have multiple, named streams of rewrite operations. * I'm calling these things "programs." * Maps String (name) -> rewrite (List) */ protected Map<String, List<RewriteOperation>> programs = null; /** Map String (program name) -> Integer index */ protected Map<String, Integer> lastRewriteTokenIndexes = null; public TokenRewriteStream() { init(); } protected void init() { programs = new HashMap<String, List<RewriteOperation>>(); programs.put(DEFAULT_PROGRAM_NAME, new ArrayList<RewriteOperation>(PROGRAM_INIT_SIZE)); lastRewriteTokenIndexes = new HashMap<String, Integer>(); } public TokenRewriteStream(TokenSource tokenSource) { super(tokenSource); init(); } public TokenRewriteStream(TokenSource tokenSource, int channel) { super(tokenSource, channel); init(); } public void rollback(int instructionIndex) { rollback(DEFAULT_PROGRAM_NAME, instructionIndex); } /** Rollback the instruction stream for a program so that * the indicated instruction (via instructionIndex) is no * longer in the stream. UNTESTED! */ public void rollback(String programName, int instructionIndex) { List<RewriteOperation> is = programs.get(programName); if ( is!=null ) { programs.put(programName, is.subList(MIN_TOKEN_INDEX,instructionIndex)); } } public void deleteProgram() { deleteProgram(DEFAULT_PROGRAM_NAME); } /** Reset the program so that no instructions exist */ public void deleteProgram(String programName) { rollback(programName, MIN_TOKEN_INDEX); } public void insertAfter(Token t, Object text) { insertAfter(DEFAULT_PROGRAM_NAME, t, text); } public void insertAfter(int index, Object text) { insertAfter(DEFAULT_PROGRAM_NAME, index, text); } public void insertAfter(String programName, Token t, Object text) { insertAfter(programName,t.getTokenIndex(), text); } public void insertAfter(String programName, int index, Object text) { // to insert after, just insert before next index (even if past end) insertBefore(programName,index+1, text); } public void insertBefore(Token t, Object text) { insertBefore(DEFAULT_PROGRAM_NAME, t, text); } public void insertBefore(int index, Object text) { insertBefore(DEFAULT_PROGRAM_NAME, index, text); } public void insertBefore(String programName, Token t, Object text) { insertBefore(programName, t.getTokenIndex(), text); } public void insertBefore(String programName, int index, Object text) { RewriteOperation op = new InsertBeforeOp(index,text); List<? super RewriteOperation> rewrites = getProgram(programName); op.instructionIndex = rewrites.size(); rewrites.add(op); } public void replace(int index, Object text) { replace(DEFAULT_PROGRAM_NAME, index, index, text); } public void replace(int from, int to, Object text) { replace(DEFAULT_PROGRAM_NAME, from, to, text); } public void replace(Token indexT, Object text) { replace(DEFAULT_PROGRAM_NAME, indexT, indexT, text); } public void replace(Token from, Token to, Object text) { replace(DEFAULT_PROGRAM_NAME, from, to, text); } public void replace(String programName, int from, int to, Object text) { if ( from > to || from<0 || to<0 || to >= tokens.size() ) { throw new IllegalArgumentException("replace: range invalid: "+from+".."+to+"(size="+tokens.size()+")"); } RewriteOperation op = new ReplaceOp(from, to, text); List<? super RewriteOperation> rewrites = getProgram(programName); op.instructionIndex = rewrites.size(); rewrites.add(op); } public void replace(String programName, Token from, Token to, Object text) { replace(programName, from.getTokenIndex(), to.getTokenIndex(), text); } public void delete(int index) { delete(DEFAULT_PROGRAM_NAME, index, index); } public void delete(int from, int to) { delete(DEFAULT_PROGRAM_NAME, from, to); } public void delete(Token indexT) { delete(DEFAULT_PROGRAM_NAME, indexT, indexT); } public void delete(Token from, Token to) { delete(DEFAULT_PROGRAM_NAME, from, to); } public void delete(String programName, int from, int to) { replace(programName,from,to,null); } public void delete(String programName, Token from, Token to) { replace(programName,from,to,null); } public int getLastRewriteTokenIndex() { return getLastRewriteTokenIndex(DEFAULT_PROGRAM_NAME); } protected int getLastRewriteTokenIndex(String programName) { Integer I = lastRewriteTokenIndexes.get(programName); if ( I==null ) { return -1; } return I.intValue(); } protected void setLastRewriteTokenIndex(String programName, int i) { lastRewriteTokenIndexes.put(programName, new Integer(i)); } protected List<RewriteOperation> getProgram(String name) { List<RewriteOperation> is = programs.get(name); if ( is==null ) { is = initializeProgram(name); } return is; } private List<RewriteOperation> initializeProgram(String name) { List<RewriteOperation> is = new ArrayList<RewriteOperation>(PROGRAM_INIT_SIZE); programs.put(name, is); return is; } public String toOriginalString() { fill(); return toOriginalString(MIN_TOKEN_INDEX, size()-1); } public String toOriginalString(int start, int end) { StringBuilder buf = new StringBuilder(); for (int i=start; i>=MIN_TOKEN_INDEX && i<=end && i<tokens.size(); i++) { if ( get(i).getType()!=Token.EOF ) buf.append(get(i).getText()); } return buf.toString(); } @Override public String toString() { fill(); return toString(MIN_TOKEN_INDEX, size()-1); } public String toString(String programName) { fill(); return toString(programName, MIN_TOKEN_INDEX, size()-1); } @Override public String toString(int start, int end) { return toString(DEFAULT_PROGRAM_NAME, start, end); } public String toString(String programName, int start, int end) { List<RewriteOperation> rewrites = programs.get(programName); // ensure start/end are in range if ( end>tokens.size()-1 ) end = tokens.size()-1; if ( start<0 ) start = 0; if ( rewrites==null || rewrites.isEmpty() ) { return toOriginalString(start,end); // no instructions to execute } StringBuffer buf = new StringBuffer(); // First, optimize instruction stream Map<Integer, ? extends RewriteOperation> indexToOp = reduceToSingleOperationPerIndex(rewrites); // Walk buffer, executing instructions and emitting tokens int i = start; while ( i <= end && i < tokens.size() ) { RewriteOperation op = indexToOp.get(new Integer(i)); indexToOp.remove(new Integer(i)); // remove so any left have index size-1 Token t = tokens.get(i); if ( op==null ) { // no operation at that index, just dump token if ( t.getType()!=Token.EOF ) buf.append(t.getText()); i++; // move to next token } else { i = op.execute(buf); // execute operation and skip } } // include stuff after end if it's last index in buffer // So, if they did an insertAfter(lastValidIndex, "foo"), include // foo if end==lastValidIndex. if ( end==tokens.size()-1 ) { // Scan any remaining operations after last token // should be included (they will be inserts). Iterator<? extends RewriteOperation> it = indexToOp.values().iterator(); while (it.hasNext()) { RewriteOperation op = it.next(); if ( op.index >= tokens.size()-1 ) buf.append(op.text); } } return buf.toString(); } /** We need to combine operations and report invalid operations (like * overlapping replaces that are not completed nested). Inserts to * same index need to be combined etc... Here are the cases: * * I.i.u I.j.v leave alone, nonoverlapping * I.i.u I.i.v combine: Iivu * * R.i-j.u R.x-y.v | i-j in x-y delete first R * R.i-j.u R.i-j.v delete first R * R.i-j.u R.x-y.v | x-y in i-j ERROR * R.i-j.u R.x-y.v | boundaries overlap ERROR * * Delete special case of replace (text==null): * D.i-j.u D.x-y.v | boundaries overlap combine to max(min)..max(right) * * I.i.u R.x-y.v | i in (x+1)-y delete I (since insert before * we're not deleting i) * I.i.u R.x-y.v | i not in (x+1)-y leave alone, nonoverlapping * R.x-y.v I.i.u | i in x-y ERROR * R.x-y.v I.x.u R.x-y.uv (combine, delete I) * R.x-y.v I.i.u | i not in x-y leave alone, nonoverlapping * * I.i.u = insert u before op @ index i * R.x-y.u = replace x-y indexed tokens with u * * First we need to examine replaces. For any replace op: * * 1. wipe out any insertions before op within that range. * 2. Drop any replace op before that is contained completely within * that range. * 3. Throw exception upon boundary overlap with any previous replace. * * Then we can deal with inserts: * * 1. for any inserts to same index, combine even if not adjacent. * 2. for any prior replace with same left boundary, combine this * insert with replace and delete this replace. * 3. throw exception if index in same range as previous replace * * Don't actually delete; make op null in list. Easier to walk list. * Later we can throw as we add to index -> op map. * * Note that I.2 R.2-2 will wipe out I.2 even though, technically, the * inserted stuff would be before the replace range. But, if you * add tokens in front of a method body '{' and then delete the method * body, I think the stuff before the '{' you added should disappear too. * * Return a map from token index to operation. */ protected Map<Integer, ? extends RewriteOperation> reduceToSingleOperationPerIndex(List<? extends RewriteOperation> rewrites) { // System.out.println("rewrites="+rewrites); // WALK REPLACES for (int i = 0; i < rewrites.size(); i++) { RewriteOperation op = rewrites.get(i); if ( op==null ) continue; if ( !(op instanceof ReplaceOp) ) continue; ReplaceOp rop = (ReplaceOp)rewrites.get(i); // Wipe prior inserts within range List<? extends InsertBeforeOp> inserts = getKindOfOps(rewrites, InsertBeforeOp.class, i); for (int j = 0; j < inserts.size(); j++) { InsertBeforeOp iop = inserts.get(j); if ( iop.index == rop.index ) { // E.g., insert before 2, delete 2..2; update replace // text to include insert before, kill insert rewrites.set(iop.instructionIndex, null); rop.text = iop.text.toString() + (rop.text!=null?rop.text.toString():""); } else if ( iop.index > rop.index && iop.index <= rop.lastIndex ) { // delete insert as it's a no-op. rewrites.set(iop.instructionIndex, null); } } // Drop any prior replaces contained within List<? extends ReplaceOp> prevReplaces = getKindOfOps(rewrites, ReplaceOp.class, i); for (int j = 0; j < prevReplaces.size(); j++) { ReplaceOp prevRop = prevReplaces.get(j); if ( prevRop.index>=rop.index && prevRop.lastIndex <= rop.lastIndex ) { // delete replace as it's a no-op. rewrites.set(prevRop.instructionIndex, null); continue; } // throw exception unless disjoint or identical boolean disjoint = prevRop.lastIndex<rop.index || prevRop.index > rop.lastIndex; boolean same = prevRop.index==rop.index && prevRop.lastIndex==rop.lastIndex; // Delete special case of replace (text==null): // D.i-j.u D.x-y.v | boundaries overlap combine to max(min)..max(right) if ( prevRop.text==null && rop.text==null && !disjoint ) { //System.out.println("overlapping deletes: "+prevRop+", "+rop); rewrites.set(prevRop.instructionIndex, null); // kill first delete rop.index = Math.min(prevRop.index, rop.index); rop.lastIndex = Math.max(prevRop.lastIndex, rop.lastIndex); System.out.println("new rop "+rop); } else if ( !disjoint && !same ) { throw new IllegalArgumentException("replace op boundaries of "+rop+ " overlap with previous "+prevRop); } } } // WALK INSERTS for (int i = 0; i < rewrites.size(); i++) { RewriteOperation op = rewrites.get(i); if ( op==null ) continue; if ( !(op instanceof InsertBeforeOp) ) continue; InsertBeforeOp iop = (InsertBeforeOp)rewrites.get(i); // combine current insert with prior if any at same index List<? extends InsertBeforeOp> prevInserts = getKindOfOps(rewrites, InsertBeforeOp.class, i); for (int j = 0; j < prevInserts.size(); j++) { InsertBeforeOp prevIop = prevInserts.get(j); if ( prevIop.index == iop.index ) { // combine objects // convert to strings...we're in process of toString'ing // whole token buffer so no lazy eval issue with any templates iop.text = catOpText(iop.text,prevIop.text); // delete redundant prior insert rewrites.set(prevIop.instructionIndex, null); } } // look for replaces where iop.index is in range; error List<? extends ReplaceOp> prevReplaces = getKindOfOps(rewrites, ReplaceOp.class, i); for (int j = 0; j < prevReplaces.size(); j++) { ReplaceOp rop = prevReplaces.get(j); if ( iop.index == rop.index ) { rop.text = catOpText(iop.text,rop.text); rewrites.set(i, null); // delete current insert continue; } if ( iop.index >= rop.index && iop.index <= rop.lastIndex ) { throw new IllegalArgumentException("insert op "+iop+ " within boundaries of previous "+rop); } } } // System.out.println("rewrites after="+rewrites); Map<Integer, RewriteOperation> m = new HashMap<Integer, RewriteOperation>(); for (int i = 0; i < rewrites.size(); i++) { RewriteOperation op = rewrites.get(i); if ( op==null ) continue; // ignore deleted ops if ( m.get(new Integer(op.index))!=null ) { throw new Error("should only be one op per index"); } m.put(new Integer(op.index), op); } //System.out.println("index to op: "+m); return m; } protected String catOpText(Object a, Object b) { String x = ""; String y = ""; if ( a!=null ) x = a.toString(); if ( b!=null ) y = b.toString(); return x+y; } protected <T extends RewriteOperation> List<? extends T> getKindOfOps(List<? extends RewriteOperation> rewrites, Class<T> kind) { return getKindOfOps(rewrites, kind, rewrites.size()); } /** Get all operations before an index of a particular kind */ protected <T extends RewriteOperation> List<? extends T> getKindOfOps(List<? extends RewriteOperation> rewrites, Class<T> kind, int before) { List<T> ops = new ArrayList<T>(); for (int i=0; i<before && i<rewrites.size(); i++) { RewriteOperation op = rewrites.get(i); if ( op==null ) continue; // ignore deleted if ( kind.isInstance(op) ) ops.add(kind.cast(op)); } return ops; } public String toDebugString() { return toDebugString(MIN_TOKEN_INDEX, size()-1); } public String toDebugString(int start, int end) { StringBuilder buf = new StringBuilder(); for (int i=start; i>=MIN_TOKEN_INDEX && i<=end && i<tokens.size(); i++) { buf.append(get(i)); } return buf.toString(); } }
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
e20f381d4e959d1d00ab9f0d7599ee57a60174c0
67dbd4a99ebd3419c741688df13788fafabd8c05
/src/main/java/hu/mik/pte/bpnh16/service/UserService.java
f0d389e321f570eb256a5300136d42fb01fc9241
[]
no_license
feherpedro/storage-management-spring
f233b226a2cf2d0b4624996ec845522870ef70e0
f716532fb933abcbfb09a79d0e2e7b7b78c3e703
refs/heads/master
2022-12-24T20:17:08.844002
2019-06-12T03:15:36
2019-06-12T03:15:36
191,488,561
0
1
null
2022-12-16T04:59:30
2019-06-12T03:12:39
Java
UTF-8
Java
false
false
12,443
java
package hu.mik.pte.bpnh16.service; import hu.mik.pte.bpnh16.config.Constants; import hu.mik.pte.bpnh16.domain.Authority; import hu.mik.pte.bpnh16.domain.User; import hu.mik.pte.bpnh16.repository.AuthorityRepository; import hu.mik.pte.bpnh16.repository.UserRepository; import hu.mik.pte.bpnh16.repository.search.UserSearchRepository; import hu.mik.pte.bpnh16.security.AuthoritiesConstants; import hu.mik.pte.bpnh16.security.SecurityUtils; import hu.mik.pte.bpnh16.service.dto.UserDTO; import hu.mik.pte.bpnh16.service.util.RandomUtil; import hu.mik.pte.bpnh16.web.rest.errors.*; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.cache.CacheManager; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.security.crypto.password.PasswordEncoder; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import java.time.Instant; import java.time.temporal.ChronoUnit; import java.util.*; import java.util.stream.Collectors; /** * Service class for managing users. */ @Service @Transactional public class UserService { private final Logger log = LoggerFactory.getLogger(UserService.class); private final UserRepository userRepository; private final PasswordEncoder passwordEncoder; private final UserSearchRepository userSearchRepository; private final AuthorityRepository authorityRepository; private final CacheManager cacheManager; public UserService(UserRepository userRepository, PasswordEncoder passwordEncoder, UserSearchRepository userSearchRepository, AuthorityRepository authorityRepository, CacheManager cacheManager) { this.userRepository = userRepository; this.passwordEncoder = passwordEncoder; this.userSearchRepository = userSearchRepository; this.authorityRepository = authorityRepository; this.cacheManager = cacheManager; } public Optional<User> activateRegistration(String key) { log.debug("Activating user for activation key {}", key); return userRepository.findOneByActivationKey(key) .map(user -> { // activate given user for the registration key. user.setActivated(true); user.setActivationKey(null); userSearchRepository.save(user); this.clearUserCaches(user); log.debug("Activated user: {}", user); return user; }); } public Optional<User> completePasswordReset(String newPassword, String key) { log.debug("Reset user password for reset key {}", key); return userRepository.findOneByResetKey(key) .filter(user -> user.getResetDate().isAfter(Instant.now().minusSeconds(86400))) .map(user -> { user.setPassword(passwordEncoder.encode(newPassword)); user.setResetKey(null); user.setResetDate(null); this.clearUserCaches(user); return user; }); } public Optional<User> requestPasswordReset(String mail) { return userRepository.findOneByEmailIgnoreCase(mail) .filter(User::getActivated) .map(user -> { user.setResetKey(RandomUtil.generateResetKey()); user.setResetDate(Instant.now()); this.clearUserCaches(user); return user; }); } public User registerUser(UserDTO userDTO, String password) { userRepository.findOneByLogin(userDTO.getLogin().toLowerCase()).ifPresent(existingUser -> { boolean removed = removeNonActivatedUser(existingUser); if (!removed) { throw new LoginAlreadyUsedException(); } }); userRepository.findOneByEmailIgnoreCase(userDTO.getEmail()).ifPresent(existingUser -> { boolean removed = removeNonActivatedUser(existingUser); if (!removed) { throw new EmailAlreadyUsedException(); } }); User newUser = new User(); String encryptedPassword = passwordEncoder.encode(password); newUser.setLogin(userDTO.getLogin().toLowerCase()); // new user gets initially a generated password newUser.setPassword(encryptedPassword); newUser.setFirstName(userDTO.getFirstName()); newUser.setLastName(userDTO.getLastName()); newUser.setEmail(userDTO.getEmail().toLowerCase()); newUser.setImageUrl(userDTO.getImageUrl()); newUser.setLangKey(userDTO.getLangKey()); // new user is not active newUser.setActivated(false); // new user gets registration key newUser.setActivationKey(RandomUtil.generateActivationKey()); Set<Authority> authorities = new HashSet<>(); authorityRepository.findById(AuthoritiesConstants.USER).ifPresent(authorities::add); newUser.setAuthorities(authorities); userRepository.save(newUser); userSearchRepository.save(newUser); this.clearUserCaches(newUser); log.debug("Created Information for User: {}", newUser); return newUser; } private boolean removeNonActivatedUser(User existingUser){ if (existingUser.getActivated()) { return false; } userRepository.delete(existingUser); userRepository.flush(); this.clearUserCaches(existingUser); return true; } public User createUser(UserDTO userDTO) { User user = new User(); user.setLogin(userDTO.getLogin().toLowerCase()); user.setFirstName(userDTO.getFirstName()); user.setLastName(userDTO.getLastName()); user.setEmail(userDTO.getEmail().toLowerCase()); user.setImageUrl(userDTO.getImageUrl()); if (userDTO.getLangKey() == null) { user.setLangKey(Constants.DEFAULT_LANGUAGE); // default language } else { user.setLangKey(userDTO.getLangKey()); } String encryptedPassword = passwordEncoder.encode(RandomUtil.generatePassword()); user.setPassword(encryptedPassword); user.setResetKey(RandomUtil.generateResetKey()); user.setResetDate(Instant.now()); user.setActivated(true); if (userDTO.getAuthorities() != null) { Set<Authority> authorities = userDTO.getAuthorities().stream() .map(authorityRepository::findById) .filter(Optional::isPresent) .map(Optional::get) .collect(Collectors.toSet()); user.setAuthorities(authorities); } userRepository.save(user); userSearchRepository.save(user); this.clearUserCaches(user); log.debug("Created Information for User: {}", user); return user; } /** * Update basic information (first name, last name, email, language) for the current user. * * @param firstName first name of user. * @param lastName last name of user. * @param email email id of user. * @param langKey language key. * @param imageUrl image URL of user. */ public void updateUser(String firstName, String lastName, String email, String langKey, String imageUrl) { SecurityUtils.getCurrentUserLogin() .flatMap(userRepository::findOneByLogin) .ifPresent(user -> { user.setFirstName(firstName); user.setLastName(lastName); user.setEmail(email.toLowerCase()); user.setLangKey(langKey); user.setImageUrl(imageUrl); userSearchRepository.save(user); this.clearUserCaches(user); log.debug("Changed Information for User: {}", user); }); } /** * Update all information for a specific user, and return the modified user. * * @param userDTO user to update. * @return updated user. */ public Optional<UserDTO> updateUser(UserDTO userDTO) { return Optional.of(userRepository .findById(userDTO.getId())) .filter(Optional::isPresent) .map(Optional::get) .map(user -> { this.clearUserCaches(user); user.setLogin(userDTO.getLogin().toLowerCase()); user.setFirstName(userDTO.getFirstName()); user.setLastName(userDTO.getLastName()); user.setEmail(userDTO.getEmail().toLowerCase()); user.setImageUrl(userDTO.getImageUrl()); user.setActivated(userDTO.isActivated()); user.setLangKey(userDTO.getLangKey()); Set<Authority> managedAuthorities = user.getAuthorities(); managedAuthorities.clear(); userDTO.getAuthorities().stream() .map(authorityRepository::findById) .filter(Optional::isPresent) .map(Optional::get) .forEach(managedAuthorities::add); userSearchRepository.save(user); this.clearUserCaches(user); log.debug("Changed Information for User: {}", user); return user; }) .map(UserDTO::new); } public void deleteUser(String login) { userRepository.findOneByLogin(login).ifPresent(user -> { userRepository.delete(user); userSearchRepository.delete(user); this.clearUserCaches(user); log.debug("Deleted User: {}", user); }); } public void changePassword(String currentClearTextPassword, String newPassword) { SecurityUtils.getCurrentUserLogin() .flatMap(userRepository::findOneByLogin) .ifPresent(user -> { String currentEncryptedPassword = user.getPassword(); if (!passwordEncoder.matches(currentClearTextPassword, currentEncryptedPassword)) { throw new InvalidPasswordException(); } String encryptedPassword = passwordEncoder.encode(newPassword); user.setPassword(encryptedPassword); this.clearUserCaches(user); log.debug("Changed password for User: {}", user); }); } @Transactional(readOnly = true) public Page<UserDTO> getAllManagedUsers(Pageable pageable) { return userRepository.findAllByLoginNot(pageable, Constants.ANONYMOUS_USER).map(UserDTO::new); } @Transactional(readOnly = true) public Optional<User> getUserWithAuthoritiesByLogin(String login) { return userRepository.findOneWithAuthoritiesByLogin(login); } @Transactional(readOnly = true) public Optional<User> getUserWithAuthorities(Long id) { return userRepository.findOneWithAuthoritiesById(id); } @Transactional(readOnly = true) public Optional<User> getUserWithAuthorities() { return SecurityUtils.getCurrentUserLogin().flatMap(userRepository::findOneWithAuthoritiesByLogin); } /** * Not activated users should be automatically deleted after 3 days. * <p> * This is scheduled to get fired everyday, at 01:00 (am). */ @Scheduled(cron = "0 0 1 * * ?") public void removeNotActivatedUsers() { userRepository .findAllByActivatedIsFalseAndActivationKeyIsNotNullAndCreatedDateBefore(Instant.now().minus(3, ChronoUnit.DAYS)) .forEach(user -> { log.debug("Deleting not activated user {}", user.getLogin()); userRepository.delete(user); userSearchRepository.delete(user); this.clearUserCaches(user); }); } /** * Gets a list of all the authorities. * @return a list of all the authorities. */ public List<String> getAuthorities() { return authorityRepository.findAll().stream().map(Authority::getName).collect(Collectors.toList()); } private void clearUserCaches(User user) { Objects.requireNonNull(cacheManager.getCache(UserRepository.USERS_BY_LOGIN_CACHE)).evict(user.getLogin()); Objects.requireNonNull(cacheManager.getCache(UserRepository.USERS_BY_EMAIL_CACHE)).evict(user.getEmail()); } }
[ "jhipster-bot@jhipster.tech" ]
jhipster-bot@jhipster.tech
3763d5838fcd101291b1bd5274189e483f0815d6
7a604de51585527201fe5e46dd5ff73bf95e6d00
/Oops-entities-library/src/main/java/com/gdf/persistence/PasswordRequest.java
52ca3f0f821f6e89a2b9c578ac4c5d54b2466387
[]
no_license
TristanNeret/Oops
0109b5edd851aa4311fbd44bbdb601a3ef8a8a6c
ffe0864db00d8203101e14c8a213342d36245c66
refs/heads/master
2016-08-12T10:50:31.281010
2016-03-16T18:02:53
2016-03-16T18:02:53
45,565,308
4
3
null
null
null
null
UTF-8
Java
false
false
1,087
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.gdf.persistence; import java.io.Serializable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import java.sql.Date; /** * * @author aziz */ @Entity public class PasswordRequest implements Serializable { private static final long serialVersionUID = 1L; @Id private String id; @Column(name = "REQUEST_DATE") private Date date; private String userEmail; public PasswordRequest() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public Date getDate() { return date; } public void setDate(Date date) { this.date = date; } public String getUserEmail() { return userEmail; } public void setUserEmail(String userEmail) { this.userEmail = userEmail; } }
[ "chafi10aziz@gmail.com" ]
chafi10aziz@gmail.com
0e54d068f2dd44d14c6d296476a3b6c87f029308
431e3a2ca58fc85c5caff0596a8d408e2f15fceb
/JavaBasic/src/main/java/design/parkinglot/Vehicle.java
728b72fa9c073aa2022f7cbfdc08545145222180
[]
no_license
pragya-mittal/myRepo
176b032bd97e2decb3540ef93d40885a4f19e955
e82d191bd469403d18030015624928450d33b7ac
refs/heads/master
2020-03-29T06:08:07.725482
2018-09-20T13:24:19
2018-09-20T13:24:19
149,611,020
0
0
null
null
null
null
UTF-8
Java
false
false
628
java
package design.parkinglot; import design.parkinglot.pojo.Color; import design.parkinglot.pojo.Slot; public abstract class Vehicle { Color color; String licence; public Vehicle(Color color, String licence) { this.color = color; this.licence = licence; } public Color getColor() { return color; } public void setColor(Color color) { this.color = color; } public String getLicence() { return licence; } public void setLicence(String licence) { this.licence = licence; } public abstract boolean canFitInSlot(Slot slot); }
[ "pragya.mittal@inmobi.com" ]
pragya.mittal@inmobi.com
c0af7058f84f1eabe0aeca966ff0f484862d8f3d
c0e9c6ac6de3cad5fdd5f20bdf3476a1328e5d6e
/01.Spring快速入门/src/main/java/com/itheima/dao/UserDaoImpl.java
68d88929caf5f397859778f4ee2c21bf2f176887
[]
no_license
LPC-1217/itheima-Spring
4d5a620ec08464c2fbff5d8b5ff9c074b5db1f15
c02ff89d9b73e916df529198e83d85d75f29d595
refs/heads/master
2023-04-25T04:06:06.824857
2021-05-06T16:06:17
2021-05-06T16:06:17
356,819,639
0
0
null
null
null
null
UTF-8
Java
false
false
223
java
package com.itheima.dao; import com.itheima.dao.UserDao; public class UserDaoImpl implements UserDao { public UserDaoImpl() { } public void save() { System.out.println("save running......"); } }
[ "1113759581@qq.com" ]
1113759581@qq.com
0a1d260d0087fa9922fdfa1e1bfc159a9e014bc8
9862685709bec435d031e19d4f3429fd2cd7bbfa
/app/src/main/java/com/veephealthoutloud/healthoutloud/SettingsActivity.java
c22173891663fcd093b2d02779a6067bc714102e
[]
no_license
yusufelgharib/health-out-loud-android
b9f259d93dc225d4045e9cd5d59490633f2dc5d2
d5ba9978ca6aa663efff7e36608dde2be519fae6
refs/heads/master
2021-01-24T16:33:56.817230
2018-03-14T05:13:46
2018-03-14T05:13:46
115,159,862
0
0
null
2018-01-16T23:11:36
2017-12-23T00:30:41
Java
UTF-8
Java
false
false
2,260
java
package com.veephealthoutloud.healthoutloud; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; public class SettingsActivity extends AppCompatActivity { private Button button; Button bt; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_settings); bt=(Button)findViewById(R.id.button5); bt.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Intent myIntent=new Intent(Intent.ACTION_SEND); myIntent.setType("text/plain"); String shareBody="Health Out Loud Application!"; String shareSub=""; myIntent.putExtra(Intent.EXTRA_SUBJECT,shareSub); myIntent.putExtra(Intent.EXTRA_TEXT,shareBody); startActivity(Intent.createChooser(myIntent,"Share using")); } }); button= (Button) findViewById(R.id.button8); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { openChangePassword(); } }); button= (Button) findViewById(R.id.button9); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { openLogout(); } }); button= (Button) findViewById(R.id.button7); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { openNotifications(); } }); } public void openChangePassword() { Intent intent = new Intent(this,ChangePasswordActivity.class); startActivity(intent); } public void openLogout() { Intent intent = new Intent(this,LoginActivity.class); startActivity(intent); } public void openNotifications() { Intent intent = new Intent(this, NotificationsActivity.class); startActivity(intent); } }
[ "yusufelgharib1@gmail.com" ]
yusufelgharib1@gmail.com
f85d1344d0a2b8556626219037956a3c94ccf90a
7a9c01bbee5d314a2d97bfb2aef67fcb4accc11d
/com/unity3d/player/C0696d.java
dd3336a688b384c45c3b02aaaede66fde66d866d
[]
no_license
Kainanchen/Sangokushi
72c9ec0aa654e95bc3622a8a3d758eedfc32276e
80fdb55c92776690b9b02aa0a6fba3dc7790025e
refs/heads/master
2021-01-13T01:17:35.153817
2017-03-14T22:01:10
2017-03-14T22:01:10
82,147,818
0
1
null
null
null
null
UTF-8
Java
false
false
2,552
java
package com.unity3d.player; import android.graphics.SurfaceTexture; import android.hardware.Camera; import android.os.Handler; import android.view.View; import android.view.View.OnSystemUiVisibilityChangeListener; import com.ut.device.AidConstants; /* renamed from: com.unity3d.player.d */ public final class C0696d implements C0695f { private static final SurfaceTexture f2259a; private static final int f2260b; private volatile boolean f2261c; /* renamed from: com.unity3d.player.d.1 */ class C06931 implements OnSystemUiVisibilityChangeListener { final /* synthetic */ View f2255a; final /* synthetic */ C0696d f2256b; C06931(C0696d c0696d, View view) { this.f2256b = c0696d; this.f2255a = view; } public final void onSystemUiVisibilityChange(int i) { this.f2256b.m2560a(this.f2255a, (int) AidConstants.EVENT_REQUEST_STARTED); } } /* renamed from: com.unity3d.player.d.2 */ class C06942 implements Runnable { final /* synthetic */ View f2257a; final /* synthetic */ C0696d f2258b; C06942(C0696d c0696d, View view) { this.f2258b = c0696d; this.f2257a = view; } public final void run() { this.f2258b.m2564a(this.f2257a, this.f2258b.f2261c); } } static { f2259a = new SurfaceTexture(-1); f2260b = C0714q.f2296f ? 5894 : 1; } private void m2560a(View view, int i) { Handler handler = view.getHandler(); if (handler == null) { m2564a(view, this.f2261c); } else { handler.postDelayed(new C06942(this, view), 1000); } } public final void m2563a(View view) { if (!C0714q.f2297g) { view.setOnSystemUiVisibilityChangeListener(new C06931(this, view)); } } public final void m2564a(View view, boolean z) { this.f2261c = z; view.setSystemUiVisibility(this.f2261c ? view.getSystemUiVisibility() | f2260b : view.getSystemUiVisibility() & (f2260b ^ -1)); } public final boolean m2565a(Camera camera) { try { camera.setPreviewTexture(f2259a); return true; } catch (Exception e) { return false; } } public final void m2566b(View view) { if (!C0714q.f2296f && this.f2261c) { m2564a(view, false); this.f2261c = true; } m2560a(view, (int) AidConstants.EVENT_REQUEST_STARTED); } }
[ "kainan.chen.cn@gmail.com" ]
kainan.chen.cn@gmail.com
56027a17d93929e03d36fe4a2dcd0c88a72d9fd5
01d6b951ce24b3d2c89b1ffa18fd79aaa9c4599c
/src/com/google/android/gms/cast/CastMediaControlIntent.java
e15994997999891d250b07f1984738a7225eff1c
[]
no_license
mohsenuss91/KGBANDROID
1a5cc246bf17b85dae4733c10a48cc2c34f978fd
a2906e3de617b66c5927a4d1fd85f6a3c6ed89d0
refs/heads/master
2016-09-03T06:45:38.912322
2015-03-08T12:03:35
2015-03-08T12:03:35
31,847,141
0
0
null
null
null
null
UTF-8
Java
false
false
4,681
java
// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.google.android.gms.cast; import android.text.TextUtils; import com.google.android.gms.internal.gj; import java.util.Collection; import java.util.Iterator; import java.util.Locale; public final class CastMediaControlIntent { public static final String ACTION_SYNC_STATUS = "com.google.android.gms.cast.ACTION_SYNC_STATUS"; public static final String CATEGORY_CAST = "com.google.android.gms.cast.CATEGORY_CAST"; public static final String DEFAULT_MEDIA_RECEIVER_APPLICATION_ID = "CC1AD845"; public static final int ERROR_CODE_REQUEST_FAILED = 1; public static final int ERROR_CODE_SESSION_START_FAILED = 2; public static final int ERROR_CODE_TEMPORARILY_DISCONNECTED = 3; public static final String EXTRA_CAST_APPLICATION_ID = "com.google.android.gms.cast.EXTRA_CAST_APPLICATION_ID"; public static final String EXTRA_CAST_LANGUAGE_CODE = "com.google.android.gms.cast.EXTRA_CAST_LANGUAGE_CODE"; public static final String EXTRA_CAST_RELAUNCH_APPLICATION = "com.google.android.gms.cast.EXTRA_CAST_RELAUNCH_APPLICATION"; public static final String EXTRA_CAST_STOP_APPLICATION_WHEN_SESSION_ENDS = "com.google.android.gms.cast.EXTRA_CAST_STOP_APPLICATION_WHEN_SESSION_ENDS"; public static final String EXTRA_CUSTOM_DATA = "com.google.android.gms.cast.EXTRA_CUSTOM_DATA"; public static final String EXTRA_DEBUG_LOGGING_ENABLED = "com.google.android.gms.cast.EXTRA_DEBUG_LOGGING_ENABLED"; public static final String EXTRA_ERROR_CODE = "com.google.android.gms.cast.EXTRA_ERROR_CODE"; private CastMediaControlIntent() { } private static String a(String s, String s1, Collection collection) { StringBuffer stringbuffer = new StringBuffer(s); if (s1 != null) { if (!s1.matches("[A-F0-9]+") && !s1.equals("00000000-0000-0000-0000-000000000000")) { throw new IllegalArgumentException((new StringBuilder("Invalid application ID: ")).append(s1).toString()); } stringbuffer.append("/").append(s1); } if (collection != null) { if (collection.isEmpty()) { throw new IllegalArgumentException("Must specify at least one namespace"); } for (Iterator iterator = collection.iterator(); iterator.hasNext();) { String s2 = (String)iterator.next(); if (TextUtils.isEmpty(s2) || s2.trim().equals("")) { throw new IllegalArgumentException("Namespaces must not be null or empty"); } } if (s1 == null) { stringbuffer.append("/"); } stringbuffer.append("/").append(TextUtils.join(",", collection)); } return stringbuffer.toString(); } public static String categoryForCast(String s) { if (s == null) { throw new IllegalArgumentException("applicationId cannot be null"); } else { return a("com.google.android.gms.cast.CATEGORY_CAST", s, null); } } public static String categoryForCast(String s, Collection collection) { if (s == null) { throw new IllegalArgumentException("applicationId cannot be null"); } if (collection == null) { throw new IllegalArgumentException("namespaces cannot be null"); } else { return a("com.google.android.gms.cast.CATEGORY_CAST", s, collection); } } public static String categoryForCast(Collection collection) { if (collection == null) { throw new IllegalArgumentException("namespaces cannot be null"); } else { return a("com.google.android.gms.cast.CATEGORY_CAST", null, collection); } } public static String categoryForRemotePlayback() { return a("com.google.android.gms.cast.CATEGORY_CAST_REMOTE_PLAYBACK", null, null); } public static String categoryForRemotePlayback(String s) { if (TextUtils.isEmpty(s)) { throw new IllegalArgumentException("applicationId cannot be null or empty"); } else { return a("com.google.android.gms.cast.CATEGORY_CAST_REMOTE_PLAYBACK", s, null); } } public static String languageTagForLocale(Locale locale) { return gj.b(locale); } }
[ "mohsenuss91@hotmail.com" ]
mohsenuss91@hotmail.com
c0a0a68a99102d3b3cec9f3223de81f2894e822c
2e1542c261bae46caf4a015c48a71703f42ce973
/app/src/main/java/com/kd/One/Service/Protocol/ControlProtocol/KDStandbypower.java
d8107cb1f64d8043b1820161567f8a199f55fd0e
[]
no_license
minwoo7824/isp_zz_homenet_app_android
e112289f77b43e4a46552a040b967a190576347b
0947a051dad8aa888548188cd59de15927c826e6
refs/heads/master
2022-09-17T02:39:35.679886
2020-04-17T07:50:05
2020-04-17T07:50:05
267,469,667
0
0
null
null
null
null
UTF-8
Java
false
false
4,073
java
package com.kd.One.Service.Protocol.ControlProtocol; import com.kd.One.Common.KDData; /** * Created by HN_USER on 2016-07-27. */ public class KDStandbypower { public static String StandbypowerStateRequest(KDData tKDData) { StringBuffer tStringBuffer = new StringBuffer(); tStringBuffer.append("<HNML>") .append("<ControlRequest TransID=\"").append(KDData.ReturnKDTransID().trim()).append("\">") .append("<FunctionID>11073801</FunctionID>") .append("<FunctionCategory>Control</FunctionCategory>") .append("<InputList size=\"1\">") .append("<Input size=\"4\">") .append("<Data name=\"Complex\">0000</Data>") .append("<Data name=\"Dong\">").append(tKDData.Dong).append("</Data>") .append("<Data name=\"Ho\">").append(tKDData.Ho).append("</Data>") .append("<Data name=\"GroupID\">All</Data>") .append("<Data name=\"SubID\">All</Data>") .append("</Input>") .append("</InputList>") .append("</ControlRequest>") .append("</HNML>"); return tStringBuffer.toString(); } public static String StandbypowerEachRequest(KDData tKDData) { StringBuffer tStringBuffer = new StringBuffer(); tStringBuffer.append("<HNML>") .append("<ControlRequest TransID=\"").append(KDData.ReturnKDTransID().trim()).append("\">") .append("<FunctionID>11073802</FunctionID>") .append("<FunctionCategory>Control</FunctionCategory>") .append("<InputList size=\"1\">") .append("<Input size=\"8\">") .append("<Data name=\"Complex\">0000</Data>") .append("<Data name=\"Dong\">").append(tKDData.Dong).append("</Data>") .append("<Data name=\"Ho\">").append(tKDData.Ho).append("</Data>") .append("<Data name=\"GroupID\">").append(tKDData.GroupID).append("</Data>") .append("<Data name=\"SubID\">").append(tKDData.SubID).append("</Data>") .append("<Data name=\"AutoBlockSetting\">").append(tKDData.AutoBlockSetup).append("</Data>") .append("<Data name=\"AutoBlock\">").append(tKDData.AutoBlock).append("</Data>") .append("<Data name=\"StdbyPowerStatus\">").append(tKDData.PowerState).append("</Data>") .append("</Input>") .append("</InputList>") .append("</ControlRequest>") .append("</HNML>"); return tStringBuffer.toString(); } public static String StandbypowerGroupRequest(KDData tKDData) { StringBuffer tStringBuffer = new StringBuffer(); tStringBuffer.append("<HNML>") .append("<ControlRequest TransID=\"").append(KDData.ReturnKDTransID().trim()).append("\">") .append("<FunctionID>11073803</FunctionID>") .append("<FunctionCategory>Control</FunctionCategory>") .append("<InputList size=\"1\">") .append("<Input size=\"7\">") .append("<Data name=\"Complex\">0000</Data>") .append("<Data name=\"Dong\">").append(tKDData.Dong).append("</Data>") .append("<Data name=\"Ho\">").append(tKDData.Ho).append("</Data>") .append("<Data name=\"GroupID\">").append(tKDData.GroupID).append("</Data>") .append("<Data name=\"AutoBlockSetting\">").append(tKDData.AutoBlockSetup).append("</Data>") .append("<Data name=\"AutoBlock\">").append(tKDData.AutoBlock).append("</Data>") .append("<Data name=\"StdbyPowerStatus\">").append(tKDData.PowerState).append("</Data>") .append("</Input>") .append("</InputList>") .append("</ControlRequest>") .append("</HNML>"); return tStringBuffer.toString(); } }
[ "BYS@kdiwin.com" ]
BYS@kdiwin.com
ae9f198b68f07e267c47fb8841ad536901cc96d1
5734616d4dd147111b57ab6b1d22a57964f1b3a2
/Textilsoft/src/main/java/br/com/textilsoft/data/ConexaoJDBC.java
288ac500cbab2857ac0aea9ae321c1f8a52cab55
[]
no_license
gostavok/TCC_ENTRA21
6ee2421b7d5a0712840397d19a63bebc3f6713ed
464e5237140c56cfcd5e4840fb55e0ab1ffe17ec
refs/heads/master
2022-06-29T21:18:32.702316
2021-01-25T22:49:35
2021-01-25T22:49:35
206,428,046
2
4
null
2022-06-21T01:59:00
2019-09-04T22:45:09
JavaScript
UTF-8
Java
false
false
256
java
package br.com.textilsoft.data; import java.sql.Connection; import java.sql.SQLException; public interface ConexaoJDBC { public Connection getConnection(); public void close(); public void commit() throws SQLException; public void rollback(); }
[ "arnon.hts@gmail.com" ]
arnon.hts@gmail.com
b7624950da7bdb4d172c8a19b66632f8303d660c
8332adfc72be1961ec6a5304fdcebeb022555d98
/Demo/src/com/demo/config/WebMvcConfig.java
70207397da62590edc53d651887007238b20677b
[]
no_license
shani-makone/DemoProject
db212eb04b15feaf0d0fa0a1a91bde864c9fd236
24f4bbac173d07c43404a90a752debcb5992c29a
refs/heads/master
2021-01-18T23:16:46.980323
2017-08-17T05:24:53
2017-08-17T05:24:53
100,564,588
0
0
null
null
null
null
UTF-8
Java
false
false
5,318
java
/******************************************************************************* * Copyright (c) 2017 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package com.demo.config; import java.util.ArrayList; import java.util.List; import java.util.Locale; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.context.support.ReloadableResourceBundleMessageSource; import org.springframework.http.MediaType; import org.springframework.http.converter.HttpMessageConverter; import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter; import org.springframework.web.multipart.commons.CommonsMultipartResolver; import org.springframework.web.multipart.support.MultipartFilter; import org.springframework.web.servlet.ViewResolver; import org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer; import org.springframework.web.servlet.config.annotation.EnableWebMvc; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; import org.springframework.web.servlet.i18n.CookieLocaleResolver; import org.springframework.web.servlet.i18n.LocaleChangeInterceptor; import org.springframework.web.servlet.view.InternalResourceViewResolver; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.databind.SerializationFeature; /** * Spring MVC Configuration. * */ @Configuration @EnableWebMvc @ComponentScan("com.demo.controller"/*, excludeFilters = { @Filter(Configuration.class) }*/) public class WebMvcConfig extends WebMvcConfigurationSupport { /** * */ public WebMvcConfig() { // TODO Auto-generated constructor stub } @Bean public ViewResolver viewResolver() { InternalResourceViewResolver view = new InternalResourceViewResolver(); view.setPrefix("/resources/modules/"); view.setSuffix(".jsp"); return view; } @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/resources/**").addResourceLocations("/resources/"); registry.addResourceHandler("swagger-ui.html").addResourceLocations("classpath:/META-INF/resources/"); registry.addResourceHandler("/webjars/**").addResourceLocations("classpath:/META-INF/resources/webjars/"); } @Override public void configureMessageConverters(List<HttpMessageConverter<?>> converters) { converters.add(this.converter()); this.addDefaultHttpMessageConverters(converters); } @Bean public MappingJackson2HttpMessageConverter converter() { MappingJackson2HttpMessageConverter converter = new MappingJackson2HttpMessageConverter(); converter.getObjectMapper().setSerializationInclusion(Include.NON_NULL); ArrayList<MediaType> list = new ArrayList<MediaType>(); list.add(MediaType.valueOf(MediaType.APPLICATION_JSON_VALUE)); converter.setSupportedMediaTypes(list); converter.getObjectMapper().configure(SerializationFeature.INDENT_OUTPUT, true); return converter; } @Bean public CommonsMultipartResolver multipartResolver() { CommonsMultipartResolver commonsMultipartResolver = new CommonsMultipartResolver(); commonsMultipartResolver.setMaxUploadSize(50000000); return commonsMultipartResolver; } @Bean public MultipartFilter multiPartFilter() { MultipartFilter filter = new MultipartFilter(); return filter; } @Override public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) { configurer.enable(); } @Bean public ReloadableResourceBundleMessageSource messageSource(){ ReloadableResourceBundleMessageSource messageSource = new ReloadableResourceBundleMessageSource(); messageSource.setBasename("classpath:messages"); messageSource.setDefaultEncoding("UTF-8"); return messageSource; } @Bean public CookieLocaleResolver localeResolver(){ CookieLocaleResolver localeResolver = new CookieLocaleResolver(); localeResolver.setDefaultLocale(Locale.ENGLISH); localeResolver.setCookieName("my-locale-cookie"); localeResolver.setCookieMaxAge(3600); return localeResolver; } @Bean public LocaleChangeInterceptor localeInterceptor(){ LocaleChangeInterceptor interceptor = new LocaleChangeInterceptor(); interceptor.setParamName("lang"); return interceptor; } @Override public void addInterceptors(InterceptorRegistry registry) { registry.addInterceptor(localeInterceptor()); } }
[ "Shaneshwar@192.168.1.115" ]
Shaneshwar@192.168.1.115
1d5cc798ac22252b16a93d3e12a2a410de1fe2a2
c242279d51bfd61a3f60605210fba99f798ce557
/Qartal/app/src/main/java/com/example/qartal/Student/StudentEditProfileActivity.java
39a2e206007b0284d6fdc169af16c172cf2d820c
[]
no_license
qabas35/Qartap-application
bb6b4d94580bf0fbe9e253f80586959c10af03b7
b0467a32b36a2e89ef262599d24e81aaf038ad24
refs/heads/master
2022-11-20T04:18:39.953688
2020-07-26T16:38:39
2020-07-26T16:38:39
281,663,271
0
0
null
null
null
null
UTF-8
Java
false
false
10,569
java
package com.example.qartal.Student; import android.app.ProgressDialog; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.drawable.Drawable; import android.net.Uri; import android.os.Build; import android.os.Bundle; import android.provider.MediaStore; import android.util.Log; import android.view.View; import android.widget.ImageView; import android.widget.TextView; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.annotation.RequiresApi; import androidx.appcompat.app.AppCompatActivity; import com.example.qartal.R; import com.example.qartal.models.EditAddressDialog; import com.example.qartal.models.EditEmailDialog; import com.example.qartal.models.EditNameDialog; import com.example.qartal.models.EditPasswordDialog; import com.example.qartal.models.EditPhoneDialog; import com.example.qartal.models.SchoolSessionManager; import com.example.qartal.models.StudentSessionManager; import com.google.android.gms.tasks.OnFailureListener; import com.google.android.gms.tasks.OnSuccessListener; import com.google.firebase.database.DataSnapshot; import com.google.firebase.database.DatabaseError; import com.google.firebase.database.DatabaseReference; import com.google.firebase.database.FirebaseDatabase; import com.google.firebase.database.ValueEventListener; import com.google.firebase.storage.FirebaseStorage; import com.google.firebase.storage.OnProgressListener; import com.google.firebase.storage.StorageReference; import com.google.firebase.storage.UploadTask; import java.io.IOException; import java.util.HashMap; public class StudentEditProfileActivity extends AppCompatActivity implements View.OnClickListener , EditNameDialog.EditNameDialogListener , EditAddressDialog.EditAddressDialogListener , EditEmailDialog.EditEmailDialogListener , EditPhoneDialog.EditPhoneDialogListener , EditPasswordDialog.EditPasswordDialogListener { StudentSessionManager session ; private TextView name_view , email_view , address_view , phone_view , email_headLine , name_headLine ; private FirebaseDatabase firebaseInstance; private DatabaseReference firebaseDatabase; private String UserID; String old_pass = ""; String Email_Get_2 , Name_Get_2 ; String email , name; StudentInfo studentInfo = new StudentInfo(); private StorageReference mStorageRef; private Uri filePath; private static final int PICK_IMAGE_REQUEST = 71 ; private FirebaseStorage storage_d; private StorageReference storageRef_d; private StorageReference islandRef; private StorageReference storageRef; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_student_edit_profile); session = new StudentSessionManager(getApplicationContext()); name_view = findViewById(R.id.nameTextView_student); email_view = findViewById(R.id.emailTextView_student); address_view = findViewById(R.id.addressTextView_student); phone_view = findViewById(R.id.phoneTextView_student); email_headLine = findViewById(R.id.email_headline_edit_student); name_headLine = findViewById(R.id.name_headline_edit_student); findViewById(R.id.edit_name_student).setOnClickListener(this); findViewById(R.id.edit_email_student).setOnClickListener(this); findViewById(R.id.edit_address_student).setOnClickListener(this); findViewById(R.id.edit_password_student).setOnClickListener(this); findViewById(R.id.edit_phone_student).setOnClickListener(this); findViewById(R.id.back_to_home_btn_student).setOnClickListener(this); firebaseInstance = FirebaseDatabase.getInstance(); firebaseDatabase = firebaseInstance.getReference("StudentInfo"); UserID = firebaseDatabase.push().getKey(); mStorageRef = FirebaseStorage.getInstance().getReference(); // download storage_d = FirebaseStorage.getInstance(); // Create a storage reference from our app storageRef = storage_d.getReference(); session.checkLogin(); HashMap<String,String > schoolUser = session.getUserDetails(); name = schoolUser.get(StudentSessionManager.KEY_NAME); email = schoolUser.get(StudentSessionManager.KEY_EMAIL); name_headLine.setText(name); email_headLine.setText(email); ReadNiceNameFromFirebase(); name_view.setText(studentInfo.FullName); } void ReadNiceNameFromFirebase(){ firebaseDatabase.addValueEventListener(new ValueEventListener() { @Override public void onDataChange(@NonNull DataSnapshot dataSnapshot) { for (DataSnapshot dataSnapshot1 : dataSnapshot.getChildren()){ // row read for(DataSnapshot dataSnapshot2 : dataSnapshot1.getChildren()){ // column read if(email.equals(dataSnapshot2.child("Username").getValue(String.class))){ studentInfo.ID = dataSnapshot2.child("ID").getValue(String.class); studentInfo.FullName = dataSnapshot2.child("FullName").getValue(String.class); studentInfo.Username = dataSnapshot2.child("Username").getValue(String.class); studentInfo.Phone = dataSnapshot2.child("Phone").getValue(String.class); studentInfo.Address = dataSnapshot2.child("Address").getValue(String.class); } Log.d("Firebase State","Read Name Successful" +" >> " + studentInfo.FullName ); Log.d("Firebase State","Read Email Successful" +" >> " + studentInfo.Username); Log.d("Firebase State","Read Phone Successful" +" >> " + studentInfo.Phone); Log.d("Firebase State","Read Address Successful" +" >> " + studentInfo.Address); Log.d("Firebase State","Read ID Successful" +" >> " + studentInfo.ID); } } name_view.setText( studentInfo.FullName); email_view.setText(studentInfo.Username); address_view.setText(studentInfo.Address); phone_view.setText(studentInfo.Phone); } @Override public void onCancelled(DatabaseError error) { // Failed to read value Log.w("TAG", "Failed to read value.", error.toException()); } }); } @Override protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) { super.onActivityResult(requestCode, resultCode, data); } public void updateInfo(String filed , String child){ firebaseDatabase.child("Student").child(studentInfo.ID).child(child).setValue(filed); } public void OpenEditNameDialog(){ EditNameDialog editNameDialog = new EditNameDialog(); editNameDialog.show(getSupportFragmentManager(),"Edit Name Dialog"); } public void OpenEditEmailDialog(){ EditEmailDialog editEmailDialog = new EditEmailDialog(); editEmailDialog.show(getSupportFragmentManager(),"Edit Email Dialog"); } public void OpenEditPhoneDialog(){ EditPhoneDialog editPhoneDialog = new EditPhoneDialog(); editPhoneDialog.show(getSupportFragmentManager(),"Edit Phone Dialog"); } public void OpenEditAddressDialog(){ EditAddressDialog editAddressDialog = new EditAddressDialog(); editAddressDialog.show(getSupportFragmentManager(),"Edit Address Dialog"); } public void OpenEditPasswordDialog(){ EditPasswordDialog editPasswordDialog = new EditPasswordDialog(); editPasswordDialog.show(getSupportFragmentManager(),"Edit Password Dialog"); } @Override public void onClick(View v) { switch (v.getId()){ case R.id.back_to_home_btn_student:{ Intent intent = new Intent(getApplicationContext(), StudentProfileActivity.class); startActivity(intent); }break; case R.id.edit_name_student:{ OpenEditNameDialog(); }break; case R.id.edit_email_student:{ OpenEditEmailDialog(); }break; case R.id.edit_address_student:{ OpenEditAddressDialog(); }break; case R.id.edit_phone_student:{ OpenEditPhoneDialog(); }break; case R.id.edit_password_student:{ OpenEditPasswordDialog(); }break; } } @Override public void TransferNameText(String username) { name_view.setText(username); name_headLine.setText(username); updateInfo(username,"FullName"); } @Override public void TransferAddressText(String address) { address_view.setText(address); updateInfo(address,"Address"); } @Override public void TransferEmailText(String Email) { email_view.setText(Email); email_headLine.setText(Email); updateInfo(Email,"Username"); } @Override public void TransferPhoneText(String phone) { phone_view.setText(phone); updateInfo(phone,"Phone"); } @Override public void TransferPasswordText(String Old_password, String New_Password) { firebaseDatabase.addValueEventListener(new ValueEventListener() { @Override public void onDataChange(DataSnapshot dataSnapshot) { for (DataSnapshot dataSnapshot1 : dataSnapshot.getChildren()){ // row read for(DataSnapshot dataSnapshot2 : dataSnapshot1.getChildren()){ // column read old_pass = dataSnapshot2.child("Password").getValue(String.class); } } } @Override public void onCancelled(DatabaseError error) { // Failed to read value Log.w("TAG", "Failed to read value.", error.toException()); } }); if(old_pass.equals(Old_password)){ updateInfo(New_Password,"Password"); }else{ Toast.makeText(getApplicationContext(),"The Old Password is Wrong",Toast.LENGTH_LONG).show(); } } }
[ "68083031+qabas35@users.noreply.github.com" ]
68083031+qabas35@users.noreply.github.com
6385c15c68cae4c5e8c09242c40181df1ecbf14e
b9e7ec0776f30dc4f5cd9a23ec6be629b8257982
/Week_3/src/StudentManager.java
3d446caa14488ca5e8f5850cc29d03ce26ed8981
[]
no_license
dberkcan/JavaReactCamp
5e45610c3910ed2a8cf00a23101c956cbebda8af
e5e1f2268250cf18020442f3c9810b6170fc5d9e
refs/heads/main
2023-04-23T11:07:19.411615
2021-05-12T00:30:57
2021-05-12T00:30:57
363,393,568
0
0
null
null
null
null
UTF-8
Java
false
false
210
java
public class StudentManager extends UserManager { @Override public void addCourse(String[] course) { System.out.println("Course is added to library."); super.addCourse(course); } }
[ "dberkcan2@gmail.com" ]
dberkcan2@gmail.com
c53c9fc719f43dd184e719d2bb20f35013ae71aa
4fb4603578010499b0e2ae39497199838d2d072c
/branches/icefaces4_ICE-10145/icefaces/ace/generator/src/org/icefaces/ace/meta/annotation/Required.java
dc27abaf31c2201b2515a971eabb8853a81aabf8
[ "Apache-2.0" ]
permissive
svn2github/icefaces-4-3
5f05a89225a6543725d69ed79e33b695f5d333b8
c6cea194d02b5536256ff7c81a3a697f1890ff74
refs/heads/master
2020-04-08T17:31:09.320358
2018-12-13T23:20:36
2018-12-13T23:20:36
159,570,706
0
0
null
null
null
null
UTF-8
Java
false
false
786
java
/* * Copyright 2004-2014 ICEsoft Technologies Canada Corp. * * 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.icefaces.ace.meta.annotation; public enum Required { yes, no, UNSET; public static final Required DEFAULT = Required.no; }
[ "ken.fyten@8668f098-c06c-11db-ba21-f49e70c34f74" ]
ken.fyten@8668f098-c06c-11db-ba21-f49e70c34f74
301916ecc4cddd35d4698996e45312ac01ca9d5e
97bd5aee620fc54fb93756e389a3e6931d2c25f7
/src/main/java/com/foo/carrental/repository/CustomerRepository.java
65b3267eddc014f5124a7f9852f2af1a8fcf23a9
[]
no_license
kumarbaburaavi/carrental
e9b1228eefdb0375e593df7f21a7e7ec03ca789a
7dab2103364ee524568d255f9a5d21649c5f510d
refs/heads/main
2023-03-27T07:39:45.741097
2021-03-22T14:06:48
2021-03-22T14:06:48
350,333,972
0
0
null
null
null
null
UTF-8
Java
false
false
288
java
package com.foo.carrental.repository; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; import com.foo.carrental.entity.Customer; @Repository public interface CustomerRepository extends JpaRepository<Customer, Integer> { }
[ "ekubabu@SE-00018780.ericsson.se" ]
ekubabu@SE-00018780.ericsson.se
d778c6aa5a9ca41ceb1f072a2310fb7b568b1aeb
ca7da6499e839c5d12eb475abe019370d5dd557d
/spring-beans/src/main/java/org/springframework/beans/factory/annotation/Required.java
a3154152fb3c8cf82815eb27a92f72808fad2a97
[ "Apache-2.0" ]
permissive
yangfancoming/spring-5.1.x
19d423f96627636a01222ba747f951a0de83c7cd
db4c2cbcaf8ba58f43463eff865d46bdbd742064
refs/heads/master
2021-12-28T16:21:26.101946
2021-12-22T08:55:13
2021-12-22T08:55:13
194,103,586
0
1
null
null
null
null
UTF-8
Java
false
false
924
java
package org.springframework.beans.factory.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Marks a method (typically a JavaBean setter method) as being 'required': that is, * the setter method must be configured to be dependency-injected with a value. * * Please do consult the javadoc for the {@link RequiredAnnotationBeanPostProcessor} * class (which, by default, checks for the presence of this annotation). * * @author Rob Harrop * @since 2.0 * @see RequiredAnnotationBeanPostProcessor * @deprecated as of 5.1, in favor of using constructor injection for required settings * (or a custom {@link org.springframework.beans.factory.InitializingBean} implementation) */ @Deprecated @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface Required { }
[ "34465021+jwfl724168@users.noreply.github.com" ]
34465021+jwfl724168@users.noreply.github.com
514d557269bc0940f109091dfeb46b3b1f0af4e2
8f8476458bdb907e151d5ee59a3032613c20444d
/hibernate/src/main/java/org/elsys/common/dao/StockDao.java
2064045da203f971eb2c0d6d0b8ef97291d5eba9
[]
no_license
Catishere/elsys_ip_2018
60b7df944d4f8d3126fa2c06a6f35bd4fc95c502
1ed4824dcfeb4339ef1129ae5353654588888bc6
refs/heads/master
2021-05-12T02:44:59.265442
2018-03-14T16:10:21
2018-03-14T16:10:21
109,736,191
0
0
null
2017-11-06T18:54:50
2017-11-06T18:54:50
null
UTF-8
Java
false
false
1,822
java
package org.elsys.common.dao; import org.elsys.common.entity.Stock; import org.elsys.common.persistence.HibernateUtil; import org.hibernate.Session; import org.hibernate.Transaction; public class StockDao implements StockDaoInterface { private Session currentSession; private Transaction currentTransaction; public Session openCurrentSessionWithTransaction(){ currentSession= HibernateUtil.getSessionFactory().openSession(); currentTransaction=currentSession.beginTransaction(); return currentSession; } public void closeCurrentSessionWithTransaction(){ currentTransaction.commit(); currentSession.close(); } public Session openCurrentSession(){ currentSession= HibernateUtil.getSessionFactory().openSession(); return currentSession; } public void closeCurrentSession(){ currentSession.close(); } public Session getCurrentSession() { return currentSession; } public void setCurrentSession(Session currentSession) { this.currentSession = currentSession; } public Transaction getCurrentTransaction() { return currentTransaction; } public void setCurrentTransaction(Transaction currentTransaction) { this.currentTransaction = currentTransaction; } @Override public void insert(Stock stock) { getCurrentSession().save(stock); } @Override public void update(Stock stock) { getCurrentSession().update(stock); } @Override public void delete(long id) { getCurrentSession().delete(id); } @Override public Stock findById(long id) { //TODO return null; } @Override public Stock findByStockName(String name) { //TODO return null; } }
[ "viktor.gyoshev@gmail.com" ]
viktor.gyoshev@gmail.com
516d8880e7acd0d5a7459da1c8124878a2b111cd
5ae17f13fff4e58286ebe88922cc6dcb7262f2b7
/app/src/main/java/com/example/myapp/MyTextView.java
ade298289b69545490ea7903786199e21cc793e9
[]
no_license
romzhel/Android_2_2
7816a5317c533613a669fc9185827ff08e038601
bab08f0bfb3ea498adf05652f1ce11766a66d50b
refs/heads/master
2020-05-27T16:57:44.376514
2019-05-27T17:01:16
2019-05-27T17:01:16
188,712,333
0
0
null
2019-05-27T17:01:17
2019-05-26T17:26:30
Java
UTF-8
Java
false
false
2,569
java
package com.example.myapp; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Canvas; import android.graphics.Color; import android.support.v7.widget.AppCompatTextView; import android.util.AttributeSet; public class MyTextView extends AppCompatTextView { private float threshold; private float value; private int coldColor; private int warmColor; private String description_Template; public MyTextView(Context context) { super(context); } public MyTextView(Context context, AttributeSet attrs) { super(context, attrs); initAttr(context, attrs); } public MyTextView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); initAttr(context, attrs); } private void initAttr(Context context, AttributeSet attrs) { TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.MyTextView); setThreshold(ta.getFloat(R.styleable.MyTextView_threshold, 0)); setColdColor(ta.getColor(R.styleable.MyTextView_cold_color, Color.BLUE)); setWarmColor(ta.getColor(R.styleable.MyTextView_warm_color, Color.RED)); setDescription_Template(ta.getString(R.styleable.MyTextView_description_template)); ta.recycle(); } public void setThreshold(float value) { threshold = value; } public void setColdColor(int color) { coldColor = color; } public void setWarmColor(int color) { warmColor = color; } public void setDescription_Template(String description_Template) { this.description_Template = description_Template; } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); if (value >= threshold) { setTextColor(warmColor); } else { setTextColor(coldColor); } } public void setValue(float value) { this.value = value; if (description_Template != null) { if (description_Template.contains("%s")) { setText(String.format(description_Template, String.valueOf(value))); } else { setText(description_Template.concat(" ").concat(String.valueOf(value))); } } else { setText(String.valueOf(value)); } postInvalidate(); } }
[ "romzhel@mail.ru" ]
romzhel@mail.ru
da5a8f922f0edc1e887c55d272c62943fec1ce43
e49150dcd68f91bc1f59d421b8f2787e0dee17ee
/src/test/java/kr/or/ddit/ioc/CollectionBeanTest.java
2497ac95a0edcc3f3c5dc5a7b738377bc549cdd6
[]
no_license
gusrl0243/201809spring
e26d38b78a5ea63e77bd57b794f934c73da84cd7
85fa741729da7ebbb84964991c5b914947b5c99e
refs/heads/master
2020-04-25T08:00:33.256347
2019-03-14T01:09:13
2019-03-14T01:09:13
172,631,775
0
0
null
null
null
null
UHC
Java
false
false
1,683
java
package kr.or.ddit.ioc; import static org.junit.Assert.*; import java.util.List; import java.util.Map; import java.util.Properties; import java.util.Set; import javax.annotation.Resource; import org.junit.Test; import org.junit.runner.RunWith; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import kr.or.ddit.ioc.CollectionBean; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration("classpath:kr/or/ddit/ioc/application-context-collection.xml") public class CollectionBeanTest { private static Logger logger = LoggerFactory.getLogger(IocMain.class); @Resource(name="collectionBean") private CollectionBean collectionBean; /** * 스프링 설정 파일을 통해 컬렉션 객체를 생성하고, 주입받는다. * list, set, map, properties */ @Test public void testCollectionBean() { List<String> list = collectionBean.getList(); logger.debug("list : {} ", list); //set,map,properties 출력 Set<String> set = collectionBean.getSet(); logger.debug("set : {}", set); Map<String, String> map = collectionBean.getMap(); logger.debug("map : {}", map); Properties properties = collectionBean.getProperties(); logger.debug("properties : {}", properties); assertNotNull(list); assertEquals(3, list.size()); //assert 구문을 이용하여 속성이 정상적으로 주입되었는지 테스트 코드 작성 assertEquals(3, set.size()); assertEquals(3, map.size()); assertEquals(3, properties.size()); } }
[ "gusrl56@gmail.com" ]
gusrl56@gmail.com
8da64843b63987a764ef50f1e759b7cf6ed57a7c
fd1b82725b46814eb9b110399a5bfc29a8831f9e
/app/src/main/java/com/hydraz/trungnam1992/mvpdaggerretrofit/data/repo/remote/datatobject/NewsItem.java
0141d2da02b90f32d41fd48d3014d913228d8023
[]
no_license
trungnam/cleanArchDagger2MvpRxRetrofit
130a668155e3199cde4e18d620ed984f4dced14c
a66b9f1881a15f352f971a6e0267550db9acbd89
refs/heads/master
2021-09-10T02:18:44.431729
2017-11-27T14:29:37
2017-11-27T14:29:37
109,489,559
0
0
null
2018-03-05T03:40:36
2017-11-04T11:31:53
Java
UTF-8
Java
false
false
8,419
java
package com.hydraz.trungnam1992.mvpdaggerretrofit.data.repo.remote.datatobject; import android.os.Parcel; import android.os.Parcelable; import com.google.gson.annotations.SerializedName; import java.util.ArrayList; import java.util.List; public class NewsItem implements Parcelable { @SerializedName("section") private String section; @SerializedName("subsection") private String subsection; @SerializedName("title") private String title; @SerializedName("abstract") private String _abstract; @SerializedName("url") private String url; @SerializedName("byline") private String byline; @SerializedName("item_type") private String itemType; @SerializedName("updated_date") private String updatedDate; @SerializedName("created_date") private String createdDate; @SerializedName("published_date") private String publishedDate; @SerializedName("material_type_facet") private String materialTypeFacet; @SerializedName("kicker") private String kicker; @SerializedName("des_facet") private List<String> desFacet = null; @SerializedName("org_facet") private List<String> orgFacet = null; @SerializedName("per_facet") private List<String> perFacet = null; @SerializedName("geo_facet") private List<String> geoFacet = null; @SerializedName("multimedia") private List<Multimedium> multimedia = null; @SerializedName("short_url") private String shortUrl; /** * @return The section */ public String getSection() { return section; } /** * @param section The section */ public void setSection(String section) { this.section = section; } /** * @return The subsection */ public String getSubsection() { return subsection; } /** * @param subsection The subsection */ public void setSubsection(String subsection) { this.subsection = subsection; } /** * @return The title */ public String getTitle() { return title; } /** * @param title The title */ public void setTitle(String title) { this.title = title; } /** * @return The _abstract */ public String getAbstract() { return _abstract; } /** * @param _abstract The abstract */ public void setAbstract(String _abstract) { this._abstract = _abstract; } /** * @return The url */ public String getUrl() { return url; } /** * @param url The url */ public void setUrl(String url) { this.url = url; } /** * @return The byline */ public String getByline() { return byline; } /** * @param byline The byline */ public void setByline(String byline) { this.byline = byline; } /** * @return The itemType */ public String getItemType() { return itemType; } /** * @param itemType The item_type */ public void setItemType(String itemType) { this.itemType = itemType; } /** * @return The updatedDate */ public String getUpdatedDate() { return updatedDate; } /** * @param updatedDate The updated_date */ public void setUpdatedDate(String updatedDate) { this.updatedDate = updatedDate; } /** * @return The createdDate */ public String getCreatedDate() { return createdDate; } /** * @param createdDate The created_date */ public void setCreatedDate(String createdDate) { this.createdDate = createdDate; } /** * @return The publishedDate */ public String getPublishedDate() { return publishedDate; } /** * @param publishedDate The published_date */ public void setPublishedDate(String publishedDate) { this.publishedDate = publishedDate; } /** * @return The materialTypeFacet */ public String getMaterialTypeFacet() { return materialTypeFacet; } /** * @param materialTypeFacet The material_type_facet */ public void setMaterialTypeFacet(String materialTypeFacet) { this.materialTypeFacet = materialTypeFacet; } /** * @return The kicker */ public String getKicker() { return kicker; } /** * @param kicker The kicker */ public void setKicker(String kicker) { this.kicker = kicker; } /** * @return The desFacet */ public List<String> getDesFacet() { return desFacet; } /** * @param desFacet The des_facet */ public void setDesFacet(List<String> desFacet) { this.desFacet = desFacet; } /** * @return The orgFacet */ public List<String> getOrgFacet() { return orgFacet; } /** * @param orgFacet The org_facet */ public void setOrgFacet(List<String> orgFacet) { this.orgFacet = orgFacet; } /** * @return The perFacet */ public List<String> getPerFacet() { return perFacet; } /** * @param perFacet The per_facet */ public void setPerFacet(List<String> perFacet) { this.perFacet = perFacet; } /** * @return The geoFacet */ public List<String> getGeoFacet() { return geoFacet; } /** * @param geoFacet The geo_facet */ public void setGeoFacet(List<String> geoFacet) { this.geoFacet = geoFacet; } /** * @return The multimedia */ public List<Multimedium> getMultimedia() { return multimedia; } /** * @param multimedia The multimedia */ public void setMultimedia(List<Multimedium> multimedia) { this.multimedia = multimedia; } /** * @return The shortUrl */ public String getShortUrl() { return shortUrl; } /** * @param shortUrl The short_url */ public void setShortUrl(String shortUrl) { this.shortUrl = shortUrl; } @Override public int describeContents() { return 0; } @Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(this.section); dest.writeString(this.subsection); dest.writeString(this.title); dest.writeString(this._abstract); dest.writeString(this.url); dest.writeString(this.byline); dest.writeString(this.itemType); dest.writeString(this.updatedDate); dest.writeString(this.createdDate); dest.writeString(this.publishedDate); dest.writeString(this.materialTypeFacet); dest.writeString(this.kicker); dest.writeStringList(this.desFacet); dest.writeStringList(this.orgFacet); dest.writeStringList(this.perFacet); dest.writeStringList(this.geoFacet); dest.writeList(this.multimedia); dest.writeString(this.shortUrl); } public NewsItem() { } protected NewsItem(Parcel in) { this.section = in.readString(); this.subsection = in.readString(); this.title = in.readString(); this._abstract = in.readString(); this.url = in.readString(); this.byline = in.readString(); this.itemType = in.readString(); this.updatedDate = in.readString(); this.createdDate = in.readString(); this.publishedDate = in.readString(); this.materialTypeFacet = in.readString(); this.kicker = in.readString(); this.desFacet = in.createStringArrayList(); this.orgFacet = in.createStringArrayList(); this.perFacet = in.createStringArrayList(); this.geoFacet = in.createStringArrayList(); this.multimedia = new ArrayList<Multimedium>(); in.readList(this.multimedia, Multimedium.class.getClassLoader()); this.shortUrl = in.readString(); } public static final Parcelable.Creator<NewsItem> CREATOR = new Parcelable.Creator<NewsItem>() { @Override public NewsItem createFromParcel(Parcel source) { return new NewsItem(source); } @Override public NewsItem[] newArray(int size) { return new NewsItem[size]; } }; }
[ "hjtman9922@gmail.com" ]
hjtman9922@gmail.com
c3bdd5787b36bc89de9a2f7cf6cb18397ac2bafa
bf2311ed71a9258038396bc39020638561cf4b31
/app/src/androidTest/java/com/example/thinkpad/cool/ExampleInstrumentedTest.java
b024d8a77dc8b16513528433f49b8ccfb8591a9c
[ "Apache-2.0" ]
permissive
SweeneyStar/Cool
c74cda7d39c9b27c60f46954e6b978067e4c91f6
f0229a7ba40630bc9e478f05936719f684a8e327
refs/heads/master
2021-01-25T08:07:31.887902
2017-06-08T15:00:55
2017-06-08T15:00:55
93,718,880
0
0
null
null
null
null
UTF-8
Java
false
false
754
java
package com.example.thinkpad.cool; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumentation test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() throws Exception { // Context of the app under test. Context appContext = InstrumentationRegistry.getTargetContext(); assertEquals("com.example.thinkpad.cool", appContext.getPackageName()); } }
[ "tony@gmail.comgit config --global user.namegit config --global user.emailgit config --global user.email :tony@gmail.com" ]
tony@gmail.comgit config --global user.namegit config --global user.emailgit config --global user.email :tony@gmail.com
a6c24c7dbf86b603e5d9b8aeaacef5c0a6a65d21
c8ea0453563196adbab4fdfb295fffbb422af70a
/Taller1_Eco_AndroidStudio/app/src/androidTest/java/com/example/talleres/ecosistemas/nemo/ExampleInstrumentedTest.java
87d74f052dcd9c29eebd496d51622edf00cac161
[]
no_license
AndreaReyesSerna/Taller-1
699fec6da5af63ee8da54c1983068c8de12e9d73
1b9f3a358efc8829a9a56a0487903d06a713d646
refs/heads/master
2020-05-03T12:23:17.390489
2019-04-15T21:28:43
2019-04-15T21:28:43
178,624,603
0
0
null
null
null
null
UTF-8
Java
false
false
758
java
package com.example.talleres.ecosistemas.nemo; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() { // Context of the app under test. Context appContext = InstrumentationRegistry.getTargetContext(); assertEquals("com.example.talleres.ecosistemas.nemo", appContext.getPackageName()); } }
[ "andrea.serna.quin@gmail.com" ]
andrea.serna.quin@gmail.com
6c882f92967fc10f2e8f2dc45e6c448c48fc76a4
1f631f823d21dd75d5a30212dca4ea3f282c0332
/SdetProject/src/main/java/PageObject/PageObjectIphone.java
277161583445587c0aace32cc2ed39d2e1307e6b
[]
no_license
Laxmikantjava/SDETAutomationDemoProject
23a21c9f0d31094e4176c430d61c75ab92487ebc
956fa38d4a58431242e315d8190a73262aaa0c42
refs/heads/master
2023-07-16T11:28:10.192296
2021-08-31T04:33:01
2021-08-31T04:33:01
269,302,610
0
0
null
null
null
null
UTF-8
Java
false
false
628
java
package PageObject; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.PageFactory; import Resources.TestBase; public class PageObjectIphone extends TestBase{ public PageObjectIphone() { PageFactory.initElements(driver, this); } @FindBy(id="//input[@id='twotabsearchtextbox']") public static WebElement clcikSearchBox; @FindBy(id="//input[@id='nav-search-submit-button']") public static WebElement clickSearchResult; @FindBy(id="//span[contains(text(),'Apple iPhone 11 Pro (64GB) - Silver')]") public static WebElement GoToFirstResult; }
[ "laxmikant211@gmail.com" ]
laxmikant211@gmail.com
f07d5bcd1333a5e8659864a23c89736c9f5f9e02
9bf52233d543c1e56fe81f5cd6e3dba153cbfa05
/src/main/java/com/sokolowski/AWS/JsonReader.java
44e2cef7ea7215d3171a54d2017c5d1447117421
[]
no_license
donsokollo/ec2FileProcessor
76f02ec3011bd7dbfab58b234b2f392256327b3d
c800f3bb68c3eb2e763b9959c6f66edb0e954079
refs/heads/master
2021-01-11T16:15:51.811127
2017-01-26T13:43:43
2017-01-26T13:43:43
80,049,906
0
0
null
null
null
null
UTF-8
Java
false
false
1,534
java
package com.sokolowski.AWS; import org.json.simple.JSONArray; import org.json.simple.JSONObject; import org.json.simple.parser.JSONParser; import org.json.simple.parser.ParseException; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.util.Iterator; /** * Created by Sokol on 2017-01-25. */ public class JsonReader { private String region; private String accessKeyId; private String secretAccessKey; JsonReader(){ readJson(); //String region=this.region; //String accessKeyId=this.accessKeyId; //String secretAccessKey=this.secretAccessKey; } public String getRegion(){ return region; } public String getAccessKeyId(){ return accessKeyId; } public String getSecretAccessKey(){ return secretAccessKey; } private void readJson() { JSONParser parser = new JSONParser(); try { Object obj = parser.parse(new FileReader("config.json")); JSONObject jsonObject = (JSONObject) obj; this.accessKeyId = (String) jsonObject.get("accessKeyId"); this.secretAccessKey = (String) jsonObject.get("secretAccessKey"); this.region = (String) jsonObject.get("region"); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } catch (ParseException e) { e.printStackTrace(); } } }
[ "dawid.przytupa@gmail.com" ]
dawid.przytupa@gmail.com
df35b4547fdb5403d0fee3ebe223ba763bd37b20
dab97361d7eef1c93aa3b9d257a3c47487465068
/Level2/Lesson3/WordCounter.java
aba1fb61f6d713e41e5358c97dc575d4170519f5
[]
no_license
grizlen/GB_Java
39f3e5eef67889e1a3b9d859de0b9246e35ec24f
83d2901680037f4c398fb157c9e4a2a45b90ddf3
refs/heads/master
2023-04-28T11:52:47.725267
2021-05-14T06:24:40
2021-05-14T06:24:40
334,474,229
0
0
null
2021-05-14T06:24:41
2021-01-30T17:41:40
Java
UTF-8
Java
false
false
721
java
package ru.geekbrains.hw3.point1; import java.util.*; public class WordCounter { private String[] words; public WordCounter(String[] words) { this.words = words; } public void showInfo(){ List<String> list = new LinkedList<>(Arrays.asList(words)); Set<String> set = new HashSet<>(list); Iterator<String> iterator = set.iterator(); while (iterator.hasNext()){ String word; System.out.printf("Word: %s Repeats: %d\n", (word = iterator.next()), numEntries(list, word)); } } private int numEntries(List<String> list, String word){ int result = 0; int i; while ((i = list.indexOf(word)) >= 0){ list.remove(i); result++; } return result; } }
[ "grizlen@rambler.ru" ]
grizlen@rambler.ru
ff9e8ccd380614a336b4f84aab7db9f7f89718c0
56d79d7b5079cf37159c246bd1e747e0925ea264
/lecture14/SawInputStream.java
70e9f9c07f0ef6c5c8d0d233140f56b45575ed60
[]
no_license
Vladimir2308/ITMO-task
577dcac3cfcc46ace0df450fffbea9c8487913d0
664651799797ebe976a7385ef1b242f69a152aa6
refs/heads/master
2021-05-15T21:45:36.848751
2017-12-23T17:16:24
2017-12-23T17:16:24
106,554,381
0
0
null
null
null
null
UTF-8
Java
false
false
1,540
java
package lecture14; import java.io.IOException; import java.util.Arrays; public class SawInputStream implements AutoCloseable { private int num = 0; private long timeBegin; private long time; private static SawInputStream saw; private SawInputStream(int timeSec) { timeBegin = System.currentTimeMillis(); time = timeSec * 1000; System.out.println(System.currentTimeMillis()); saw = this; } private int[] read() throws IOException { if (System.currentTimeMillis() > timeBegin + time) { System.out.println("read time " + (System.currentTimeMillis() - timeBegin)); return null; } if (num > 15) num = 0; num++; int[] b = new int[num]; for (int j = 0; j < num; j++) { b[j] = (int) (Math.random() * 10); } return b; } private int available() { if (System.currentTimeMillis() > timeBegin + time) { System.out.println("avail time " + (System.currentTimeMillis() - timeBegin)); return -1; } return 1024; } public static void main(String[] args) throws Exception { try (SawInputStream stream = new SawInputStream(10)) { int[] array; while (stream.available() > 0) { array = stream.read(); System.out.println(Arrays.toString(array)); } } } @Override public void close() throws Exception { saw.close(); } }
[ "ya_vladimir@list.ru" ]
ya_vladimir@list.ru
2d9e6b93f134494e03aeebd33617b446ce386ea6
c04e06c47f73326a6bcb15d9203a36b389cf05ee
/src/main/java/cn/com/zhihetech/online/bean/BuyerUser.java
d83741afa04ef7fc8f963ececd83d177cd702b1b
[]
no_license
qq524007127/online
6994886381c88a29d8d8c78155c11935061bc20d
a3b979295e5524b0c4c6536e238b4b32d9cfea88
refs/heads/master
2021-01-10T04:48:05.451826
2016-01-14T02:04:44
2016-01-14T02:04:57
49,615,412
0
0
null
null
null
null
UTF-8
Java
false
false
1,116
java
package cn.com.zhihetech.online.bean; import cn.com.zhihetech.online.commons.Constant; import javax.persistence.*; /** * Created by ShenYunjie on 2016/1/13. */ @Entity @DiscriminatorValue("buyer_type") public class BuyerUser extends User { private ImgInfo wxPhoto; //微信朋友圈截图 private int wnFriendsCount; //微信好友人数 private float wxMFRatio; //微信好友男女比例 @ManyToOne @JoinColumn(name = "wx_photo") public ImgInfo getWxPhoto() { return wxPhoto; } public void setWxPhoto(ImgInfo wxPhoto) { this.wxPhoto = wxPhoto; } @Column(name = "wx_friends_count") public int getWnFriendsCount() { return wnFriendsCount; } public void setWnFriendsCount(int wnFriendsCount) { this.wnFriendsCount = wnFriendsCount; } @Column(name = "wx_mf_ratio") public float getWxMFRatio() { return wxMFRatio; } public void setWxMFRatio(float wxMFRatio) { this.wxMFRatio = wxMFRatio; } @Override public int getUserType() { return Constant.BUYER_USER; } }
[ "524007127" ]
524007127
38dc188dc550f32dec69cb59d8acc90d2ca56e0c
6ee2456a85668186a760a70fa831ca5e47244564
/kotar-web/jpa/src/main/java/br/com/kotar/domain/business/CotacaoItem.java
4be0f6735e0fa623669bc2362a07a4d64ba9b54a
[ "Apache-2.0" ]
permissive
maxwellcavalli/kothar-app
74de8312a025651bbf1e83f68ba971c08cf86a1f
21c0d6e0da0593697750bf046e64d65d01434cbd
refs/heads/master
2022-06-18T05:37:26.370420
2020-04-24T11:39:26
2020-04-24T11:39:26
258,486,242
0
0
null
null
null
null
UTF-8
Java
false
false
3,766
java
package br.com.kotar.domain.business; import java.io.Serializable; import java.math.BigDecimal; import java.util.List; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.ForeignKey; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; import javax.persistence.Transient; import com.fasterxml.jackson.annotation.JsonBackReference; import com.fasterxml.jackson.annotation.JsonProperty; import br.com.kotar.core.domain.BaseDomain; @Entity @Table(name = "COTACAO_ITEM") public class CotacaoItem extends BaseDomain implements Serializable, Cloneable { private static final long serialVersionUID = 1L; @Id @GeneratedValue(strategy = GenerationType.AUTO) @Column(name = "COTACAO_ITEM_ID", nullable = false) @JsonProperty("cotacao_item_id") private Long id; // @JsonIgnore @JsonBackReference("cotacao") @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "COTACAO_ID", referencedColumnName = "COTACAO_ID", foreignKey = @ForeignKey(name = "FK_cot_item_cotacao"), nullable = false) private Cotacao cotacao; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "PRODUTO_ID", referencedColumnName = "PRODUTO_ID", foreignKey = @ForeignKey(name = "FK_cot_item_produto"), nullable = false) @JsonProperty("cotacao_item_produto") private Produto produto; @Column(name = "QUANTIDADE", nullable = false, scale = 14, precision = 3, columnDefinition = "NUMERIC(14,3)") private BigDecimal quantidade; @Column(name = "OBSERVACAO", nullable = true, length = 2000) private String observacao; @Transient @JsonProperty("cotacao_item_arquivos") private List<CotacaoItemArquivo> arquivos; @Transient @JsonProperty("cotacao_item_fornecedor") private List<CotacaoItemFornecedor> listCotacaoFornecedor; @Transient @JsonProperty("cotacao_item_pendencias_valores") private boolean valoresComPendencias; @Transient @JsonProperty("cotacao_item_fornecedor_vencedor") private CotacaoItemFornecedor fornecedorVencedor; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Cotacao getCotacao() { return cotacao; } public void setCotacao(Cotacao cotacao) { this.cotacao = cotacao; } public Produto getProduto() { return produto; } public void setProduto(Produto produto) { this.produto = produto; } public BigDecimal getQuantidade() { return quantidade; } public void setQuantidade(BigDecimal quantidade) { this.quantidade = quantidade; } public String getObservacao() { return observacao; } public void setObservacao(String observacao) { this.observacao = observacao; } public List<CotacaoItemArquivo> getArquivos() { return arquivos; } public void setArquivos(List<CotacaoItemArquivo> arquivos) { this.arquivos = arquivos; } @Override public CotacaoItem clone() throws CloneNotSupportedException { return (CotacaoItem) super.clone(); } public boolean isValoresComPendencias() { return valoresComPendencias; } public void setValoresComPendencias(boolean valoresComPendencias) { this.valoresComPendencias = valoresComPendencias; } public List<CotacaoItemFornecedor> getListCotacaoFornecedor() { return listCotacaoFornecedor; } public void setListCotacaoFornecedor(List<CotacaoItemFornecedor> listCotacaoFornecedor) { this.listCotacaoFornecedor = listCotacaoFornecedor; } public CotacaoItemFornecedor getFornecedorVencedor() { return fornecedorVencedor; } public void setFornecedorVencedor(CotacaoItemFornecedor fornecedorVencedor) { this.fornecedorVencedor = fornecedorVencedor; } }
[ "maxwell.gobattocavalli@gmail.com" ]
maxwell.gobattocavalli@gmail.com
556be20a9a3b41cf8a3f20ca291fbcd191778f51
8fb3672711b3bf198a2e5d7b273edabbc9f02a9c
/app/src/main/java/com/marcos/myapplication/AddContactActivity.java
31753d31017804860a3dd1a5502c80bf7fe3dc3f
[]
no_license
MDIAZ88/Android-practice
967975ad4f091307c6dd96fe33031fac10993598
7f054627c058d130825ff1a7fa7f59c6e6b6b3c2
refs/heads/master
2016-08-12T17:52:40.790091
2016-02-29T19:09:30
2016-02-29T19:09:30
52,815,768
0
0
null
2016-02-29T19:09:30
2016-02-29T19:03:51
null
UTF-8
Java
false
false
4,831
java
package com.marcos.myapplication; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.RadioButton; import android.widget.RadioGroup; import android.widget.Toast; import com.activeandroid.query.Select; import com.marcos.myapplication.Models.Contacts; import java.util.ArrayList; import java.util.List; public class AddContactActivity extends AppCompatActivity { EditText etName; EditText etCelphone; EditText etPhone; EditText etAddress; EditText etBirthday; EditText etEmail; RadioGroup buttonGroup; RadioButton buttonRadio; Button btnAcept; Button btnCancel; Contacts itemObj; Bundle bundle; String username; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_add_contact); initVariables(); ClickEventAcept(); ClickEventCancel(); } private void initVariables() { etName = (EditText)findViewById(R.id.et_name_addcontact); etCelphone = (EditText)findViewById(R.id.et_celphone_addcontact); etPhone = (EditText)findViewById(R.id.et_phone_addcontact); etAddress = (EditText)findViewById(R.id.et_address_addcontact); etBirthday = (EditText)findViewById(R.id.et_birthdate_addcontact); etEmail = (EditText)findViewById(R.id.et_email_addcontact); btnAcept = (Button)findViewById(R.id.btn_acept); btnCancel = (Button)findViewById(R.id.btn_cancel); buttonGroup = (RadioGroup)findViewById(R.id.rg_button_group_addcontact); bundle = getIntent().getExtras(); } private void createContact(){ String name = etName.getText().toString(); String celphone = etCelphone.getText().toString(); String phone = etPhone.getText().toString(); String address = etAddress.getText().toString(); String birthdate = etBirthday.getText().toString(); String email = etEmail.getText().toString(); int selectedId = buttonGroup.getCheckedRadioButtonId(); buttonRadio = (RadioButton)findViewById(selectedId); String radioButtonValue = buttonRadio.getText().toString(); username = bundle.getString("user"); if(!name.isEmpty() && !celphone.isEmpty() && !phone.isEmpty() && !address.isEmpty() && !birthdate.isEmpty() && !email.isEmpty()) { List<Contacts> itemsDb = new Select(new String[]{"Id,name"}).from(Contacts.class) .where("user = ?", username).execute(); ArrayList<String> arrayList = new ArrayList<>(); for (Contacts i : itemsDb) { arrayList.add(i.getName()); } if (arrayList.contains(name)) { Toast.makeText(getApplicationContext(), "The contact name already exits", Toast.LENGTH_SHORT).show(); } else { itemObj = new Contacts(); itemObj.setName(name); itemObj.setCelphone(celphone); itemObj.setPhone(phone); itemObj.setAddress(address); itemObj.setBirthday(birthdate); itemObj.setEmail(email); itemObj.setCgroup(radioButtonValue); itemObj.setUser(username); itemObj.save(); Toast.makeText(getApplicationContext(), "Contact saved", Toast.LENGTH_SHORT).show(); ClearValues(); finish(); } }else{ Toast.makeText(getApplicationContext(), "Please insert the values", Toast.LENGTH_LONG).show(); } } private void ClearValues(){ etName.getText().clear(); etCelphone.getText().clear(); etPhone.getText().clear(); etAddress.getText().clear(); etBirthday.getText().clear(); etEmail.getText().clear(); RadioButton familyRadioButtom = (RadioButton)findViewById(R.id.rb_family_addcontact); familyRadioButtom.setChecked(true); } private void ClickEventAcept(){ btnAcept.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { createContact(); } }); } private void ClickEventCancel(){ btnCancel.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { ClearValues(); finish(); } }); } }
[ "marcos.diaz@globant.com" ]
marcos.diaz@globant.com
cad71609013bba2cf42e920aaa8db8803725b6e9
047f205a5dc4ddc9c4eadc5f79ddceda12fbdb07
/src/threadsObserver/RandomUserForm.java
00334a3baba698773bc081ca72d92fa7c5c40d91
[]
no_license
bancho22/Threads-Exam-Preparation
fa0bc1d29f10fa120364c543bb723d749c9ccb6e
c56dd489a23627ea299be646f288d2d7c6b4e533
refs/heads/master
2016-09-05T23:05:34.809600
2015-08-28T10:03:54
2015-08-28T10:03:54
41,540,560
0
0
null
null
null
null
UTF-8
Java
false
false
7,512
java
package threadsObserver; import java.util.Observable; import javax.swing.JOptionPane; import javax.swing.UIManager; import javax.swing.UnsupportedLookAndFeelException; import randomperson.RandomUser; /** * * @author Lars Mortensen */ public class RandomUserForm extends javax.swing.JFrame implements java.util.Observer { /** * Creates new form RandomUserForm */ public RandomUserForm() { initComponents(); randomUserControl = new RandomUserControl(); randomUserControl.addObserver(this); } /** * This method is called from within the constructor to initialize the form. * WARNING: Do NOT modify this code. The content of this method is always * regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { jLabel1 = new javax.swing.JLabel(); jLabel2 = new javax.swing.JLabel(); jLabel3 = new javax.swing.JLabel(); jLabel4 = new javax.swing.JLabel(); jLabel5 = new javax.swing.JLabel(); textLastName = new javax.swing.JTextField(); textStreet = new javax.swing.JTextField(); textCity = new javax.swing.JTextField(); textEmail = new javax.swing.JTextField(); textFirstName = new javax.swing.JTextField(); jButton1 = new javax.swing.JButton(); jButton2 = new javax.swing.JButton(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); setTitle("New User"); jLabel1.setText("First Name"); jLabel2.setText("Last Name"); jLabel3.setText("Street"); jLabel4.setText("City"); jLabel5.setText("Email"); jButton1.setText("Add New Test User"); jButton1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { btn1Clicked(evt); } }); jButton2.setText("Save User (DOES NOTHING)"); jButton2.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jButton2ActionPerformed(evt); } }); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(23, 23, 23) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false) .addComponent(textFirstName, javax.swing.GroupLayout.DEFAULT_SIZE, 224, Short.MAX_VALUE) .addComponent(jLabel4) .addComponent(jLabel2) .addComponent(jLabel3) .addComponent(jLabel1) .addComponent(jLabel5) .addComponent(textLastName) .addComponent(textStreet) .addComponent(textCity) .addComponent(textEmail)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 53, Short.MAX_VALUE) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jButton1, javax.swing.GroupLayout.PREFERRED_SIZE, 148, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jButton2)) .addGap(26, 26, 26)) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(jLabel1) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(textFirstName, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) .addGroup(layout.createSequentialGroup() .addComponent(jLabel2) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(textLastName, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addComponent(jLabel3) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(textStreet, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(15, 15, 15) .addComponent(jLabel4)) .addComponent(jButton1, javax.swing.GroupLayout.PREFERRED_SIZE, 110, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGap(13, 13, 13) .addComponent(textCity, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(18, 18, 18) .addComponent(jLabel5) .addGap(6, 6, 6) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(textEmail, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jButton2)) .addContainerGap(40, Short.MAX_VALUE)) ); pack(); }// </editor-fold>//GEN-END:initComponents RandomUserControl randomUserControl; private void btn1Clicked(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btn1Clicked randomUserControl.fetchRandomUser(); }//GEN-LAST:event_btn1Clicked private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed JOptionPane.showMessageDialog(this, "Does nothing in this example"); }//GEN-LAST:event_jButton2ActionPerformed /** * @param args the command line arguments */ public static void main(String args[]) { try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException e) { e.printStackTrace(); } /* Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new RandomUserForm().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton jButton1; private javax.swing.JButton jButton2; private javax.swing.JLabel jLabel1; private javax.swing.JLabel jLabel2; private javax.swing.JLabel jLabel3; private javax.swing.JLabel jLabel4; private javax.swing.JLabel jLabel5; private javax.swing.JTextField textCity; private javax.swing.JTextField textEmail; private javax.swing.JTextField textFirstName; private javax.swing.JTextField textLastName; private javax.swing.JTextField textStreet; // End of variables declaration//GEN-END:variables @Override public synchronized void update(Observable o, Object arg) { RandomUser random = (RandomUser) arg; textFirstName.setText(random.getFirstName()); textLastName.setText(random.getLastName()); textStreet.setText(random.getStreet()); textCity.setText(random.getCity()); textEmail.setText(random.getEmail()); } }
[ "banchopetrov@gmail.com" ]
banchopetrov@gmail.com
0762a07cc53f4d3e4c82d72ac3bb1fc455a47d69
152097accf21422eb846e2a24921ccda8b34ab12
/HallgassASzivedre/src/main/java/home/hallgassaszivedre/infrastructure/persistence/store/ObjectifyPuffStore.java
295e5ba53ab2e6ca40c40c752f5288aec2682d01
[]
no_license
matemagyari/hallgassaszivedre
e2adac92176c04d0a6303a5f1cba385a414988ef
1de0beb6a27bdeeea39302b1ce28a83b7c8d93e7
refs/heads/master
2021-01-23T11:47:50.073315
2013-10-21T16:33:13
2013-10-21T16:33:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,064
java
package home.hallgassaszivedre.infrastructure.persistence.store; import static com.googlecode.objectify.ObjectifyService.ofy; import home.hallgassaszivedre.infrastructure.dto.PuffDTO; import java.util.List; import com.googlecode.objectify.Key; import com.googlecode.objectify.ObjectifyService; public class ObjectifyPuffStore implements PuffStore { public ObjectifyPuffStore() { ObjectifyService.register(PuffDTO.class); } @Override public boolean isEmpty() { return this.findAll().isEmpty(); } @Override public List<PuffDTO> findAll() { return ofy().load().type(PuffDTO.class).list(); } @Override public void create(PuffDTO puff) { Key<PuffDTO> key = ofy().save().entity(puff).now(); System.err.println(key); } @Override public void update(PuffDTO puff) { Key<PuffDTO> key = ofy().save().entity(puff).now(); System.err.println(key); } @Override public void remove(Long puffId) { Key<PuffDTO> key = Key.create(PuffDTO.class, puffId); ofy().delete().key(key); } }
[ "mate.magyari@gmail.com" ]
mate.magyari@gmail.com
18c0e90ddd21e5dd5a8e86ebe9c4a42aff16430c
bef6c6dba78cd3d02beea457f2eca823577065f6
/ados.javi.jsp.04XEnRaya/src/modelo/Juego3Raya.java
f6c562ade5142554ffc1620ac62d15ce241c180f
[]
no_license
jgarcia957/ados2021
4ab18e201d5a3c5122a0179e1f012271fa9673c9
eb618dcf798be7c25f50702425a85e49dec5da19
refs/heads/master
2023-02-04T01:57:08.226327
2020-12-25T19:23:20
2020-12-25T19:23:20
314,655,081
0
0
null
null
null
null
UTF-8
Java
false
false
5,526
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 modelo; /** * * @author javi */ public class Juego3Raya { final static int EN_BLANCO = 0; final static int JUG1 = 1; final static int JUG2 = 2; private int filaOrigen; private int colOrigen; //Situacion del juego en cada instante private int[][] tablero; //quien es el siguiente que juega private int jugadorActual; //quitn ha ganado private int jugadorGanador; //Piezas que faltan por poner en juego private int[] pendientesColocar; public Juego3Raya() { super(); } public int getFilaOrigen(){ return filaOrigen; } public int getColOrigen(){ return colOrigen; } public void setTamanyo(int tamanyo) { tablero = new int[tamanyo][tamanyo]; jugadorActual = JUG1; pendientesColocar = new int[]{0, tamanyo, tamanyo}; jugadorGanador = EN_BLANCO; filaOrigen = -1; colOrigen = -1; } public int[][] getTablero() { return tablero; } public int getJugadorActual() { return jugadorActual; } public int getPendientesColocar(int jugador) { return pendientesColocar[jugador]; } private void cambiarJugadorActual() { if (jugadorActual == JUG1) { jugadorActual = JUG2; } else { jugadorActual = JUG1; } } public boolean sePuedeMover(int jugador, int desdeFila, int desdeCol, int hastaFila, int hastaCol) { if (isFinPartida()) { return false; } if (getPendientesColocar(jugador) > 0) { return false; } if (tablero[desdeFila][desdeCol] != jugador) { return false; } return (tablero[hastaFila][hastaCol] == EN_BLANCO); } public boolean mover(int fila, int columna) { if (isFinPartida()) { return false; } if (getPendientesColocar(jugadorActual) > 0) { if (tablero[fila][columna] != EN_BLANCO) { return false; } else { tablero[fila][columna] = jugadorActual; pendientesColocar[jugadorActual]--; setGanador(jugadorActual, fila, columna); cambiarJugadorActual(); return true; } } else { if (filaOrigen == -1) { //Inicio del movimiento if (tablero[fila][columna] != jugadorActual) { return false; } else { filaOrigen = fila; colOrigen = columna; return true; } } else { boolean res = mover(filaOrigen,colOrigen,fila,columna); if(res){ filaOrigen = -1; colOrigen = -1; } return res; } } } public boolean mover(int desdeFila, int desdeColumna, int hastaFila, int hastaColumna) { if (sePuedeMover(jugadorActual, desdeFila, desdeColumna, hastaFila, hastaColumna)) { tablero[desdeFila][desdeColumna] = EN_BLANCO; tablero[hastaFila][hastaColumna] = jugadorActual; setGanador(jugadorActual, hastaFila, hastaColumna); cambiarJugadorActual(); return true; } else { return false; } } private void setGanador(int jugador, int fila, int col) { //Comprobamos si toda la fila es del jugador boolean enc = false; for (int j = 0; j < tablero.length && !enc; j++) { if (tablero[fila][j] != jugador) { enc = true; } } if (!enc) { jugadorGanador = jugador; } if (jugadorGanador == EN_BLANCO) { //Comprobamos si toda la columna es del jugador enc = false; for (int i = 0; i < tablero.length && !enc; i++) { if (tablero[i][col] != jugador) { enc = true; } } if (!enc) { jugadorGanador = jugador; } } if (jugadorGanador == EN_BLANCO && fila == col) { //Una diagonal enc = false; for (int i = 0; i < tablero.length && !enc; i++) { if (tablero[i][i] != jugador) { enc = true; } } if (!enc) { jugadorGanador = jugador; } } if (jugadorGanador == EN_BLANCO && col == tablero.length-1-fila) { //La otra diagonal enc = false; for (int i = 0; i < tablero.length && !enc; i++) { if (tablero[i][tablero.length-1-i] != jugador) { enc = true; } } if (!enc) { jugadorGanador = jugador; } } } public boolean isFinPartida() { return jugadorGanador != EN_BLANCO; } public int getJugadorGanador() { return jugadorGanador; } }
[ "javi@LAPTOP-O024HO83" ]
javi@LAPTOP-O024HO83
2c0f63f8281e6e01cbe2b7688c6ae718da1c8c75
8f5a243e0acd2fc834ce74cf64f8e5275a8d416c
/HomeWorkAssignments/src/test/java/pages/RegistrationForm.java
99a2aca1469e03737b3257131c96096e5382fdf0
[]
no_license
masterpryvedennyi/HomeWorkAssingments
2120a105a74dfc88020adcb34c84667b768fee7f
316c6465f8c0cc2d52face6eb138c453bf465ae8
refs/heads/master
2023-05-12T21:02:19.350184
2020-04-24T21:28:37
2020-04-24T21:28:37
258,629,990
0
0
null
2023-05-09T18:49:12
2020-04-24T21:37:46
Java
UTF-8
Java
false
false
2,086
java
package pages; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.FindBys; import org.openqa.selenium.support.PageFactory; import utilities.Driver; import java.util.List; public class RegistrationForm { public RegistrationForm(){ PageFactory.initElements(Driver.getDriver(), this); } @FindBy(name = "birthday") public WebElement dateOfBirthForm; @FindBy(xpath = "//*[.='The date of birth is not valid']") public WebElement dobErrorMessage; @FindBy(css = "input#inlineCheckbox1~label") public WebElement cCheckBox; @FindBy(css = "input#inlineCheckbox2~label") public WebElement javaCheckBox; @FindBy(css = "input#inlineCheckbox3~label") public WebElement javaScriptCheckBox; @FindBy(name = "firstname") public WebElement firstName; @FindBy(xpath = "//*[.='first name must be more than 2 and less than 64 characters long']") public WebElement firstNameErrorMessage; @FindBy(name = "lastname") public WebElement lastName; @FindBy(xpath = "//*[.='The last name must be more than 2 and less than 64 characters long']") public WebElement lastNameErrorMessage; @FindBy(name = "username") public WebElement username; @FindBy(name = "email") public WebElement email; @FindBy(name = "password") public WebElement password; @FindBy(name = "phone") public WebElement phone; @FindBy(xpath = "//input[@value='male']") public WebElement maleRadioButton; @FindBy(xpath = "//input[@value='female']") public WebElement femaleRadioButton; @FindBy(xpath = "//input[@value='other']") public WebElement otherRadioButton; @FindBy(name = "birthday") public WebElement birthday; @FindBy(name = "department") public WebElement departmentDropdown; @FindBy(name = "job_title") public WebElement jobTitleDropdown; @FindBy(id = "wooden_spoon") public WebElement signUpButton; @FindBy(xpath = "//p") public WebElement confirmationMessage; }
[ "pryvedennyi@gmail.com" ]
pryvedennyi@gmail.com
fd9a307c7799540eb8034fb234b8aacdbbc6b3f9
f29a14f7da63f3d1ae12f9d9b58ccc51c98d092a
/spring-mybatis/src/main/java/com/ccit/utils/Email.java
d644549e0818957730afd87acf0d34dec20d91a5
[]
no_license
chaice/ssh_project
69c492b230133356165861793086601cce62300d
1e6e3caf350e7e3e73b4f5db88795b1edcf4405e
refs/heads/master
2021-01-20T20:15:14.737455
2017-04-01T01:33:48
2017-04-01T01:33:48
64,518,225
0
0
null
null
null
null
UTF-8
Java
false
false
1,010
java
package com.ccit.utils; import org.apache.commons.mail.EmailException; import org.apache.commons.mail.SimpleEmail; import javax.inject.Named; @Named public class Email { /** * * * @param username 用户名 * @param ip 用户登录时的Ip * @param time 用户登录的时间 */ public void sendEmail(String username, String ip,String time) { SimpleEmail simpleEmail = new SimpleEmail(); simpleEmail.setAuthentication("cc911215@126.com","Q2889144"); simpleEmail.setHostName("smtp.126.com"); simpleEmail.setSmtpPort(25); simpleEmail.setCharset("utf-8"); try { simpleEmail.setFrom("cc911215@126.com"); simpleEmail.addTo("576237121@qq.com"); simpleEmail.setMsg(time+",用户:"+username+"在"+ip+"登录"); simpleEmail.setSubject("开会"); simpleEmail.send(); } catch (EmailException e) { e.printStackTrace(); } } }
[ "576237121@qq.com" ]
576237121@qq.com
2928147486275bc1d24949a66ca3b47996e599bd
1f19aec2ecfd756934898cf0ad2758ee18d9eca2
/u-1/u-11/u-11-111/u-11-111-1112/u-11-111-1112-f9678.java
52eebe799e7d3df389bfb7d57f61d209e19862f5
[]
no_license
apertureatf/perftest
f6c6e69efad59265197f43af5072aa7af8393a34
584257a0c1ada22e5486052c11395858a87b20d5
refs/heads/master
2020-06-07T17:52:51.172890
2019-06-21T18:53:01
2019-06-21T18:53:01
193,039,805
0
0
null
null
null
null
UTF-8
Java
false
false
106
java
mastercard 5555555555554444 4012888888881881 4222222222222 378282246310005 6011111111111117 4225213107217
[ "jenkins@khan.paloaltonetworks.local" ]
jenkins@khan.paloaltonetworks.local
9b5238c0d0d55992faf8b6eb8f714aee07b80e67
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/1/1_1957920c84b5e81782e3cd2f5f343c155f8bd6dc/DiceButton/1_1957920c84b5e81782e3cd2f5f343c155f8bd6dc_DiceButton_t.java
c867e508e68398a03bc848a2a130c5d7f3fd28b7
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
14,034
java
/* * $Id$ * * Copyright (c) 2000-2003 by Rodney Kinney * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License (LGPL) as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, copies are available * at http://www.opensource.org. */ package VASSAL.build.module; import java.awt.Component; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.Arrays; import java.util.List; import javax.swing.KeyStroke; import VASSAL.build.AbstractConfigurable; import VASSAL.build.AutoConfigurable; import VASSAL.build.Buildable; import VASSAL.build.GameModule; import VASSAL.build.module.documentation.HelpFile; import VASSAL.build.module.properties.MutablePropertiesContainer; import VASSAL.build.module.properties.MutableProperty; import VASSAL.build.module.properties.MutableProperty.Impl; import VASSAL.command.Command; import VASSAL.command.NullCommand; import VASSAL.configure.AutoConfigurer; import VASSAL.configure.Configurer; import VASSAL.configure.ConfigurerFactory; import VASSAL.configure.ConfigurerWindow; import VASSAL.configure.IconConfigurer; import VASSAL.configure.PlayerIdFormattedStringConfigurer; import VASSAL.configure.VisibilityCondition; import VASSAL.i18n.Resources; import VASSAL.i18n.TranslatableConfigurerFactory; import VASSAL.tools.FormattedString; import VASSAL.tools.KeyStrokeListener; import VASSAL.tools.LaunchButton; /** * This component places a button into the controls window toolbar. * Pressing the button generates random numbers and displays the * result in the Chatter */ public class DiceButton extends AbstractConfigurable { protected java.util.Random ran; protected int nSides = 6, nDice = 2, plus = 0, addToTotal=0; protected boolean reportTotal = false; protected boolean promptAlways = false; protected FormattedString reportFormat = new FormattedString("** $" + REPORT_NAME + "$ = $" + RESULT + "$ *** <$" + GlobalOptions.PLAYER_NAME + "$>"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ protected LaunchButton launch; protected String tooltip = ""; //$NON-NLS-1$ protected MutableProperty.Impl property = new Impl("",this); public static final String DEPRECATED_NAME = "label"; //$NON-NLS-1$ public static final String BUTTON_TEXT = "text"; //$NON-NLS-1$ public static final String TOOLTIP = "tooltip"; //$NON-NLS-1$ public static final String NAME = "name"; //$NON-NLS-1$ public static final String ICON = "icon"; //$NON-NLS-1$ public static final String N_DICE = "nDice"; //$NON-NLS-1$ public static final String N_SIDES = "nSides"; //$NON-NLS-1$ public static final String PLUS = "plus"; //$NON-NLS-1$ public static final String ADD_TO_TOTAL = "addToTotal"; //$NON-NLS-1$ public static final String HOTKEY = "hotkey"; //$NON-NLS-1$ public static final String REPORT_TOTAL = "reportTotal"; //$NON-NLS-1$ public static final String PROMPT_ALWAYS = "prompt"; //$NON-NLS-1$ public static final String REPORT_FORMAT = "reportFormat"; //$NON-NLS-1$ /** Variable name for reporting format */ public static final String RESULT = "result"; //$NON-NLS-1$ public static final String REPORT_NAME = "name"; //$NON-NLS-1$ public DiceButton() { initLaunchButton(); } protected void initLaunchButton() { final ActionListener rollAction = new ActionListener() { public void actionPerformed(ActionEvent e) { if (promptAlways) { final DiceButton delegate = new DiceButton() { protected void initLaunchButton() { launch = new LaunchButton(null,BUTTON_TEXT,HOTKEY,null); } }; final List<String> keepAttributes = Arrays.asList(new String[]{N_DICE, N_SIDES, PLUS, ADD_TO_TOTAL}); for (String key : keepAttributes) { delegate.setAttribute(key, getAttributeValueString(key)); } final AutoConfigurer ac = new AutoConfigurer(delegate); final ConfigurerWindow w = new ConfigurerWindow(ac, true); for (String key : getAttributeNames()) { if (!keepAttributes.contains(key)) { final Component controls = ac.getConfigurer(key).getControls(); controls.getParent().remove(controls); } } w.pack(); w.setLocationRelativeTo(launch.getTopLevelAncestor()); w.setVisible(true); for (String key : keepAttributes) { setAttribute(key, delegate.getAttributeValueString(key)); } DR(); } else { DR(); } } }; launch = new LaunchButton(null, TOOLTIP, BUTTON_TEXT, HOTKEY, ICON, rollAction); setAttribute(NAME, "2d6"); setAttribute(BUTTON_TEXT, "2d6"); launch.setAttribute(TOOLTIP, "2d6"); } public static String getConfigureTypeName() { return "Dice Button"; } /** * The text reported before the results of the roll * @deprecated */ @Deprecated protected String getReportPrefix() { return " *** " + getConfigureName() + " = "; //$NON-NLS-1$ //$NON-NLS-2$ } /** * The text reported after the results of the roll; * @deprecated */ @Deprecated protected String getReportSuffix() { return " *** <" //$NON-NLS-1$ + GameModule.getGameModule().getChatter().getHandle() + ">"; //$NON-NLS-1$ } /** * Forwards the result of the roll to the {@link Chatter#send} * method of the {@link Chatter} of the {@link GameModule}. Format is * prefix+[comma-separated roll list]+suffix */ protected void DR() { String val = ""; //$NON-NLS-1$ int total = addToTotal; for (int i = 0; i < nDice; ++i) { int roll = (int) (ran.nextFloat() * nSides + 1) + plus; if (reportTotal) { total += roll; } else { val += roll; if (i < nDice - 1) val += ","; //$NON-NLS-1$ } } if (reportTotal) val += total; String report = formatResult(val); Command c = report.length() == 0 ? new NullCommand() : new Chatter.DisplayText(GameModule.getGameModule().getChatter(),report); c.execute(); c.append(property.setPropertyValue(val)); GameModule.getGameModule().sendAndLog(c); } /** * Use the configured FormattedString to format the result of a roll * @param result * @return */ protected String formatResult(String result) { reportFormat.setProperty(REPORT_NAME, getLocalizedConfigureName()); reportFormat.setProperty(RESULT, result); reportFormat.setProperty(N_DICE, Integer.toString(nDice)); reportFormat.setProperty(N_SIDES, Integer.toString(nSides)); reportFormat.setProperty(PLUS, Integer.toString(plus)); reportFormat.setProperty(ADD_TO_TOTAL, Integer.toString(addToTotal)); String text = reportFormat.getLocalizedText(); String report = text; if (text.length() > 0) { report = text.startsWith("*") ? "*" + text : "* " + text; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ } return report; } public String[] getAttributeNames() { return new String[] { NAME, BUTTON_TEXT, TOOLTIP, ICON, N_DICE, N_SIDES, PLUS, ADD_TO_TOTAL, REPORT_TOTAL, HOTKEY, PROMPT_ALWAYS, REPORT_FORMAT }; } public String[] getAttributeDescriptions() { return new String[]{ "Name: ", "Button text: ", "Tooltip text: ", "Button icon: ", Resources.getString("Dice.number_of_dice"), //$NON-NLS-1$ Resources.getString("Dice.number_of_sides"), //$NON-NLS-1$ Resources.getString("Dice.add_to_each_side"), //$NON-NLS-1$ Resources.getString("Dice.add_to_total"), //$NON-NLS-1$ "Report Total?", "Hotkey: ", "Prompt for values when button pushed?", "Report Format: " }; } public static class IconConfig implements ConfigurerFactory { public Configurer getConfigurer(AutoConfigurable c, String key, String name) { return new IconConfigurer(key, name, "/images/die.gif"); //$NON-NLS-1$ } } public static class ReportFormatConfig implements TranslatableConfigurerFactory { public Configurer getConfigurer(AutoConfigurable c, String key, String name) { return new PlayerIdFormattedStringConfigurer(key, name, new String[]{REPORT_NAME, RESULT, N_DICE, N_SIDES, PLUS, ADD_TO_TOTAL}); } } public Class<?>[] getAttributeTypes() { return new Class<?>[]{ String.class, String.class, String.class, IconConfig.class, Integer.class, Integer.class, Integer.class, Integer.class, Boolean.class, KeyStroke.class, Boolean.class, ReportFormatConfig.class }; } private VisibilityCondition cond = new VisibilityCondition() { public boolean shouldBeVisible() { return !promptAlways; } }; public VisibilityCondition getAttributeVisibility(String name) { if (N_DICE.equals(name) || N_SIDES.equals(name) || PLUS.equals(name) || ADD_TO_TOTAL.equals(name)) { return cond; } else { return null; } } /** * Expects to be added to a GameModule. Adds the button to the * control window's toolbar and registers itself as a {@link * KeyStrokeListener} */ public void addTo(Buildable parent) { ran = GameModule.getGameModule().getRNG(); GameModule.getGameModule().getToolBar().add(getComponent()); property.setPropertyValue("1"); // Initialize with a numeric value property.addTo((MutablePropertiesContainer)parent); } /** * The component to be added to the control window toolbar */ protected java.awt.Component getComponent() { return launch; } public void setAttribute(String key, Object o) { if (DEPRECATED_NAME.equals(key)) { // Backward compatibility. Before v1.3, name and button text were combined into one attribute setAttribute(NAME, o); setAttribute(BUTTON_TEXT, o); } else if (NAME.equals(key)) { setConfigureName((String) o); property.setPropertyName(getConfigureName()+"_result"); launch.setToolTipText((String) o); } else if (N_DICE.equals(key)) { if (o instanceof Integer) { nDice = ((Integer) o).intValue(); } else if (o instanceof String) { nDice = Integer.parseInt((String) o); } } else if (N_SIDES.equals(key)) { if (o instanceof Integer) { nSides = ((Integer) o).intValue(); } else if (o instanceof String) { nSides = Integer.parseInt((String) o); } } else if (PLUS.equals(key)) { if (o instanceof Integer) { plus = ((Integer) o).intValue(); } else if (o instanceof String) { plus = Integer.parseInt((String) o); } } else if (ADD_TO_TOTAL.equals(key)) { if (o instanceof Integer) { addToTotal = ((Integer) o).intValue(); } else if (o instanceof String) { addToTotal = Integer.parseInt((String) o); } } else if (REPORT_TOTAL.equals(key)) { if (o instanceof Boolean) { reportTotal = ((Boolean) o).booleanValue(); } else if (o instanceof String) { reportTotal = "true".equals(o); //$NON-NLS-1$ } } else if (PROMPT_ALWAYS.equals(key)) { if (o instanceof Boolean) { promptAlways = ((Boolean) o).booleanValue(); } else if (o instanceof String) { promptAlways = "true".equals(o); //$NON-NLS-1$ } } else if (REPORT_FORMAT.equals(key)) { reportFormat.setFormat((String) o); } else if (TOOLTIP.equals(key)) { tooltip = (String) o; launch.setAttribute(key, o); } else { launch.setAttribute(key, o); } } public String getAttributeValueString(String key) { if (NAME.equals(key)) { return getConfigureName(); } else if (N_DICE.equals(key)) { return String.valueOf(nDice); //$NON-NLS-1$ } else if (N_SIDES.equals(key)) { return String.valueOf(nSides); //$NON-NLS-1$ } else if (PLUS.equals(key)) { return String.valueOf(plus); //$NON-NLS-1$ } else if (ADD_TO_TOTAL.equals(key)) { return String.valueOf(addToTotal); //$NON-NLS-1$ } else if (REPORT_TOTAL.equals(key)) { return String.valueOf(reportTotal); //$NON-NLS-1$ } else if (PROMPT_ALWAYS.equals(key)) { return String.valueOf(promptAlways); //$NON-NLS-1$ } else if (REPORT_FORMAT.equals(key)) { return reportFormat.getFormat(); } else if (TOOLTIP.equals(name)) { return tooltip.length() == 0 ? launch.getAttributeValueString(name) : tooltip; } else { return launch.getAttributeValueString(key); } } @SuppressWarnings("unchecked") public Class[] getAllowableConfigureComponents() { return new Class[0]; } public void removeFrom(Buildable b) { GameModule.getGameModule().getToolBar().remove(getComponent()); GameModule.getGameModule().getToolBar().revalidate(); } public HelpFile getHelpFile() { return HelpFile.getReferenceManualPage("GameModule.htm","DiceButton"); //$NON-NLS-1$ //$NON-NLS-2$ } }
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
c047aa3f099e369c0958688198a3c8ca7d97f9e2
39db47752df425308c51b87660a8e67bd5dd33e0
/app/build/generated/source/r/debug/org/sonarqube/helloworldandroid/R.java
a74df4fc29454106f30ca5577b53b4ddb880e099
[]
no_license
black4bird/android-sonarqube-gradle
6e4bae975e050ad4b30017eb67bafdb6513e7ad8
b3b49d7f1551d66974381e841005779972e25ee6
refs/heads/master
2021-06-01T01:41:12.396512
2016-08-10T11:34:35
2016-08-10T11:34:35
64,941,153
1
0
null
null
null
null
UTF-8
Java
false
false
528,318
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 org.sonarqube.helloworldandroid; 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 design_bottom_sheet_slide_in=0x7f05000a; public static final int design_bottom_sheet_slide_out=0x7f05000b; public static final int design_fab_in=0x7f05000c; public static final int design_fab_out=0x7f05000d; public static final int design_snackbar_in=0x7f05000e; public static final int design_snackbar_out=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=0x7f01003e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarItemBackground=0x7f01003f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f010038; /** <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=0x7f01003d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarSplitStyle=0x7f01003a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionBarTabBarStyle=0x7f010034; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f010033; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f010035; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTheme=0x7f01003b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarWidgetTheme=0x7f01003c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionButtonStyle=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 actionDropDownStyle=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 actionLayout=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 actionMenuTextAppearance=0x7f010040; /** <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=0x7f010041; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeBackground=0x7f010044; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseButtonStyle=0x7f010043; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseDrawable=0x7f010046; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCopyDrawable=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 actionModeCutDrawable=0x7f010047; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeFindDrawable=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 actionModePasteDrawable=0x7f010049; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePopupWindowStyle=0x7f01004e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSelectAllDrawable=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 actionModeShareDrawable=0x7f01004b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSplitBackground=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 actionModeStyle=0x7f010042; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionOverflowButtonStyle=0x7f010036; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f010037; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actionProviderClass=0x7f0100c8; /** <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=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 activityChooserViewStyle=0x7f010060; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f010083; /** <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=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 alertDialogStyle=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 alertDialogTheme=0x7f010085; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int allowStacking=0x7f010099; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100b8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100b9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=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 background=0x7f01000c; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundSplit=0x7f01000e; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundStacked=0x7f01000d; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int backgroundTint=0x7f010118; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int backgroundTintMode=0x7f010119; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int barLength=0x7f0100ba; /** <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 behavior_hideable=0x7f010098; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_overlapTop=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 behavior_peekHeight=0x7f010097; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int borderWidth=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 borderlessButtonStyle=0x7f01005d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int bottomSheetDialogTheme=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 bottomSheetStyle=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 buttonBarButtonStyle=0x7f01005a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=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 buttonBarNeutralButtonStyle=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 buttonBarPositiveButtonStyle=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 buttonBarStyle=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 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=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 buttonStyleSmall=0x7f01008c; /** <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=0x7f0100a9; /** <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=0x7f0100aa; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkboxStyle=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 checkedTextViewStyle=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 closeIcon=0x7f0100dc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int 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=0x7f01010f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int collapseIcon=0x7f01010e; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int collapsedTitleGravity=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 collapsedTitleTextAppearance=0x7f0100a2; /** <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=0x7f0100b4; /** <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=0x7f01007b; /** <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=0x7f01007f; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlActivated=0x7f01007d; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlHighlight=0x7f01007e; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlNormal=0x7f01007c; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimary=0x7f010079; /** <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=0x7f01007a; /** <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=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 commitIcon=0x7f0100e1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int 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 color value, in 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 contentScrim=0x7f0100a3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int controlBackground=0x7f010081; /** <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 counterEnabled=0x7f010101; /** <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 counterMaxLength=0x7f010102; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int counterOverflowTextAppearance=0x7f010104; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int counterTextAppearance=0x7f010103; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int 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=0x7f0100db; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 dialogTheme=0x7f010051; /** <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=0x7f01005f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100c4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerVertical=0x7f01005e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 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=0x7f010071; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dropdownListPreferredItemHeight=0x7f010055; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextBackground=0x7f010066; /** <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=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 editTextStyle=0x7f01008f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int elevation=0x7f01001a; /** <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 errorEnabled=0x7f0100ff; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int errorTextAppearance=0x7f010100; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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 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 expanded=0x7f010024; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int expandedTitleGravity=0x7f0100a7; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMargin=0x7f01009c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginBottom=0x7f0100a0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginEnd=0x7f01009f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginStart=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 expandedTitleMarginTop=0x7f01009e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int expandedTitleTextAppearance=0x7f0100a1; /** <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>mini</code></td><td>1</td><td></td></tr> </table> */ public static final int fabSize=0x7f0100bd; /** <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 foregroundInsidePadding=0x7f0100c1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int gapBetweenBars=0x7f0100b7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int goIcon=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 headerLayout=0x7f0100cf; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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 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 hintAnimationEnabled=0x7f010105; /** <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 hintEnabled=0x7f0100fe; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int hintTextAppearance=0x7f0100fd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f010057; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int 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=0x7f0100d9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int imageButtonStyle=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 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>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 insetForeground=0x7f0100d6; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int isLightTheme=0x7f010002; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int itemBackground=0x7f0100cd; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemIconTint=0x7f0100cb; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int 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 itemTextAppearance=0x7f0100ce; /** <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 itemTextColor=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 keylines=0x7f0100ab; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100d8; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layoutManager=0x7f0100d2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout_anchor=0x7f0100ae; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>fill</code></td><td>0x77</td><td></td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int layout_anchorGravity=0x7f0100b0; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_behavior=0x7f0100ad; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>pin</code></td><td>1</td><td></td></tr> <tr><td><code>parallax</code></td><td>2</td><td></td></tr> </table> */ public static final int layout_collapseMode=0x7f01009a; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_collapseParallaxMultiplier=0x7f01009b; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_keyline=0x7f0100af; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scroll</code></td><td>0x1</td><td></td></tr> <tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr> <tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr> <tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr> <tr><td><code>snap</code></td><td>0x10</td><td></td></tr> </table> */ public static final int layout_scrollFlags=0x7f010025; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout_scrollInterpolator=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 listChoiceBackgroundIndicator=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 listDividerAlertDialog=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 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=0x7f010072; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeight=0x7f01006c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01006e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01006d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01006f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingRight=0x7f010070; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int 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=0x7f010112; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxActionInlineWidth=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 maxButtonHeight=0x7f01010d; /** <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=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 menu=0x7f0100ca; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static 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=0x7f010111; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int navigationIcon=0x7f010110; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> */ public static final int navigationMode=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=0x7f0100d0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingEnd=0x7f010116; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingStart=0x7f010115; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 panelMenuListTheme=0x7f010077; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010076; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupMenuStyle=0x7f010063; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int 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=0x7f010064; /** <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=0x7f0100c9; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int pressedTranslationZ=0x7f0100be; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100e3; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int queryHint=0x7f0100da; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int radioButtonStyle=0x7f010090; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyle=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 ratingBarStyleIndicator=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 ratingBarStyleSmall=0x7f010093; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int reverseLayout=0x7f0100d4; /** <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 rippleColor=0x7f0100bc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchHintIcon=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 searchIcon=0x7f0100de; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchViewStyle=0x7f01006b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int seekBarStyle=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 selectableItemBackground=0x7f01005b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f01005c; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>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=0x7f0100c5; /** <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=0x7f0100c3; /** <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=0x7f0100ec; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f010022; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int spanCount=0x7f0100d3; /** <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=0x7f0100b5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=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 spinnerStyle=0x7f010095; /** <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=0x7f0100eb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int srcCompat=0x7f010027; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int stackFromEnd=0x7f0100d5; /** <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=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 statusBarBackground=0x7f0100ac; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int statusBarScrim=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 submitBackground=0x7f0100e4; /** <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=0x7f010107; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int subtitleTextColor=0x7f010114; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextStyle=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=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 switchMinWidth=0x7f0100e9; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100ea; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchStyle=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 switchTextAppearance=0x7f0100e8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tabBackground=0x7f0100f0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabContentStart=0x7f0100ef; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>fill</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> </table> */ public static final int tabGravity=0x7f0100f2; /** <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 tabIndicatorColor=0x7f0100ed; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabIndicatorHeight=0x7f0100ee; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabMaxWidth=0x7f0100f4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabMinWidth=0x7f0100f3; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scrollable</code></td><td>0</td><td></td></tr> <tr><td><code>fixed</code></td><td>1</td><td></td></tr> </table> */ public static final int tabMode=0x7f0100f1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPadding=0x7f0100fc; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingBottom=0x7f0100fb; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingEnd=0x7f0100fa; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingStart=0x7f0100f8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingTop=0x7f0100f9; /** <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 tabSelectedTextColor=0x7f0100f7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tabTextAppearance=0x7f0100f5; /** <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 tabTextColor=0x7f0100f6; /** <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=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 textAppearanceLargePopupMenu=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 textAppearanceListItem=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 textAppearanceListItemSmall=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 textAppearanceSearchResultSubtitle=0x7f010069; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f010068; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f010050; /** <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=0x7f010086; /** <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 textColorError=0x7f0100b3; /** <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=0x7f01006a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int theme=0x7f010117; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thickness=0x7f0100bb; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100e7; /** <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 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 titleEnabled=0x7f0100a8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01010c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginEnd=0x7f01010a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginStart=0x7f010109; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginTop=0x7f01010b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMargins=0x7f010108; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010106; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleTextColor=0x7f010113; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextStyle=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 toolbarId=0x7f0100a5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarNavigationButtonStyle=0x7f010062; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarStyle=0x7f010061; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int track=0x7f0100e6; /** <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 useCompatPadding=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 voiceIcon=0x7f0100e0; /** <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=0x7f010029; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBarOverlay=0x7f01002b; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionModeOverlay=0x7f01002c; /** <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=0x7f010030; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedHeightMinor=0x7f01002e; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedWidthMajor=0x7f01002d; /** <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=0x7f01002f; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowMinWidthMajor=0x7f010031; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowMinWidthMinor=0x7f010032; /** <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=0x7f01002a; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f070003; public static final int abc_action_bar_embed_tabs_pre_jb=0x7f070001; public static final int abc_action_bar_expanded_action_views_exclusive=0x7f070004; public static final int abc_allow_stacked_button_bar=0x7f070000; public static final int abc_config_actionMenuItemAllCaps=0x7f070005; public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f070002; public static final int abc_config_closeDialogWhenTouchOutside=0x7f070006; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f070007; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f0b0047; public static final int abc_background_cache_hint_selector_material_light=0x7f0b0048; public static final int abc_color_highlight_material=0x7f0b0049; public static final int abc_input_method_navigation_guard=0x7f0b0000; public static final int abc_primary_text_disable_only_material_dark=0x7f0b004a; public static final int abc_primary_text_disable_only_material_light=0x7f0b004b; public static final int abc_primary_text_material_dark=0x7f0b004c; public static final int abc_primary_text_material_light=0x7f0b004d; public static final int abc_search_url_text=0x7f0b004e; public static final int abc_search_url_text_normal=0x7f0b0001; public static final int abc_search_url_text_pressed=0x7f0b0002; public static final int abc_search_url_text_selected=0x7f0b0003; public static final int abc_secondary_text_material_dark=0x7f0b004f; public static final int abc_secondary_text_material_light=0x7f0b0050; public static final int accent_material_dark=0x7f0b0004; public static final int accent_material_light=0x7f0b0005; public static final int background_floating_material_dark=0x7f0b0006; public static final int background_floating_material_light=0x7f0b0007; public static final int background_material_dark=0x7f0b0008; public static final int background_material_light=0x7f0b0009; public static final int bright_foreground_disabled_material_dark=0x7f0b000a; public static final int bright_foreground_disabled_material_light=0x7f0b000b; public static final int bright_foreground_inverse_material_dark=0x7f0b000c; public static final int bright_foreground_inverse_material_light=0x7f0b000d; public static final int bright_foreground_material_dark=0x7f0b000e; public static final int bright_foreground_material_light=0x7f0b000f; public static final int button_material_dark=0x7f0b0010; public static final int button_material_light=0x7f0b0011; public static final int colorAccent=0x7f0b0012; public static final int colorPrimary=0x7f0b0013; public static final int colorPrimaryDark=0x7f0b0014; public static final int design_fab_shadow_end_color=0x7f0b0015; public static final int design_fab_shadow_mid_color=0x7f0b0016; public static final int design_fab_shadow_start_color=0x7f0b0017; public static final int design_fab_stroke_end_inner_color=0x7f0b0018; public static final int design_fab_stroke_end_outer_color=0x7f0b0019; public static final int design_fab_stroke_top_inner_color=0x7f0b001a; public static final int design_fab_stroke_top_outer_color=0x7f0b001b; public static final int design_snackbar_background_color=0x7f0b001c; public static final int design_textinput_error_color_dark=0x7f0b001d; public static final int design_textinput_error_color_light=0x7f0b001e; public static final int dim_foreground_disabled_material_dark=0x7f0b001f; public static final int dim_foreground_disabled_material_light=0x7f0b0020; public static final int dim_foreground_material_dark=0x7f0b0021; public static final int dim_foreground_material_light=0x7f0b0022; public static final int foreground_material_dark=0x7f0b0023; public static final int foreground_material_light=0x7f0b0024; public static final int highlighted_text_material_dark=0x7f0b0025; public static final int highlighted_text_material_light=0x7f0b0026; public static final int hint_foreground_material_dark=0x7f0b0027; public static final int hint_foreground_material_light=0x7f0b0028; public static final int material_blue_grey_800=0x7f0b0029; public static final int material_blue_grey_900=0x7f0b002a; public static final int material_blue_grey_950=0x7f0b002b; public static final int material_deep_teal_200=0x7f0b002c; public static final int material_deep_teal_500=0x7f0b002d; public static final int material_grey_100=0x7f0b002e; public static final int material_grey_300=0x7f0b002f; public static final int material_grey_50=0x7f0b0030; public static final int material_grey_600=0x7f0b0031; public static final int material_grey_800=0x7f0b0032; public static final int material_grey_850=0x7f0b0033; public static final int material_grey_900=0x7f0b0034; public static final int primary_dark_material_dark=0x7f0b0035; public static final int primary_dark_material_light=0x7f0b0036; public static final int primary_material_dark=0x7f0b0037; public static final int primary_material_light=0x7f0b0038; public static final int primary_text_default_material_dark=0x7f0b0039; public static final int primary_text_default_material_light=0x7f0b003a; public static final int primary_text_disabled_material_dark=0x7f0b003b; public static final int primary_text_disabled_material_light=0x7f0b003c; public static final int ripple_material_dark=0x7f0b003d; public static final int ripple_material_light=0x7f0b003e; public static final int secondary_text_default_material_dark=0x7f0b003f; public static final int secondary_text_default_material_light=0x7f0b0040; public static final int secondary_text_disabled_material_dark=0x7f0b0041; public static final int secondary_text_disabled_material_light=0x7f0b0042; public static final int switch_thumb_disabled_material_dark=0x7f0b0043; public static final int switch_thumb_disabled_material_light=0x7f0b0044; public static final int switch_thumb_material_dark=0x7f0b0051; public static final int switch_thumb_material_light=0x7f0b0052; public static final int switch_thumb_normal_material_dark=0x7f0b0045; public static final int switch_thumb_normal_material_light=0x7f0b0046; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f08000d; public static final int abc_action_bar_default_height_material=0x7f080001; public static final int abc_action_bar_default_padding_end_material=0x7f08000e; public static final int abc_action_bar_default_padding_start_material=0x7f08000f; public static final int abc_action_bar_icon_vertical_padding_material=0x7f080019; public static final int abc_action_bar_overflow_padding_end_material=0x7f08001a; public static final int abc_action_bar_overflow_padding_start_material=0x7f08001b; public static final int abc_action_bar_progress_bar_size=0x7f080002; public static final int abc_action_bar_stacked_max_height=0x7f08001c; public static final int abc_action_bar_stacked_tab_max_width=0x7f08001d; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f08001e; public static final int abc_action_bar_subtitle_top_margin_material=0x7f08001f; public static final int abc_action_button_min_height_material=0x7f080020; public static final int abc_action_button_min_width_material=0x7f080021; public static final int abc_action_button_min_width_overflow_material=0x7f080022; public static final int abc_alert_dialog_button_bar_height=0x7f080000; public static final int abc_button_inset_horizontal_material=0x7f080023; public static final int abc_button_inset_vertical_material=0x7f080024; public static final int abc_button_padding_horizontal_material=0x7f080025; public static final int abc_button_padding_vertical_material=0x7f080026; public static final int abc_config_prefDialogWidth=0x7f080005; public static final int abc_control_corner_material=0x7f080027; public static final int abc_control_inset_material=0x7f080028; public static final int abc_control_padding_material=0x7f080029; public static final int abc_dialog_fixed_height_major=0x7f080006; public static final int abc_dialog_fixed_height_minor=0x7f080007; public static final int abc_dialog_fixed_width_major=0x7f080008; public static final int abc_dialog_fixed_width_minor=0x7f080009; public static final int abc_dialog_list_padding_vertical_material=0x7f08002a; public static final int abc_dialog_min_width_major=0x7f08000a; public static final int abc_dialog_min_width_minor=0x7f08000b; public static final int abc_dialog_padding_material=0x7f08002b; public static final int abc_dialog_padding_top_material=0x7f08002c; public static final int abc_disabled_alpha_material_dark=0x7f08002d; public static final int abc_disabled_alpha_material_light=0x7f08002e; public static final int abc_dropdownitem_icon_width=0x7f08002f; public static final int abc_dropdownitem_text_padding_left=0x7f080030; public static final int abc_dropdownitem_text_padding_right=0x7f080031; public static final int abc_edit_text_inset_bottom_material=0x7f080032; public static final int abc_edit_text_inset_horizontal_material=0x7f080033; public static final int abc_edit_text_inset_top_material=0x7f080034; public static final int abc_floating_window_z=0x7f080035; public static final int abc_list_item_padding_horizontal_material=0x7f080036; public static final int abc_panel_menu_list_width=0x7f080037; public static final int abc_search_view_preferred_width=0x7f080038; public static final int abc_search_view_text_min_width=0x7f08000c; public static final int abc_seekbar_track_background_height_material=0x7f080039; public static final int abc_seekbar_track_progress_height_material=0x7f08003a; public static final int abc_select_dialog_padding_start_material=0x7f08003b; public static final int abc_switch_padding=0x7f080018; public static final int abc_text_size_body_1_material=0x7f08003c; public static final int abc_text_size_body_2_material=0x7f08003d; public static final int abc_text_size_button_material=0x7f08003e; public static final int abc_text_size_caption_material=0x7f08003f; public static final int abc_text_size_display_1_material=0x7f080040; public static final int abc_text_size_display_2_material=0x7f080041; public static final int abc_text_size_display_3_material=0x7f080042; public static final int abc_text_size_display_4_material=0x7f080043; public static final int abc_text_size_headline_material=0x7f080044; public static final int abc_text_size_large_material=0x7f080045; public static final int abc_text_size_medium_material=0x7f080046; public static final int abc_text_size_menu_material=0x7f080047; public static final int abc_text_size_small_material=0x7f080048; public static final int abc_text_size_subhead_material=0x7f080049; public static final int abc_text_size_subtitle_material_toolbar=0x7f080003; public static final int abc_text_size_title_material=0x7f08004a; public static final int abc_text_size_title_material_toolbar=0x7f080004; public static final int activity_horizontal_margin=0x7f08004b; public static final int activity_vertical_margin=0x7f08004c; public static final int design_appbar_elevation=0x7f08004d; public static final int design_bottom_sheet_modal_elevation=0x7f08004e; public static final int design_bottom_sheet_modal_peek_height=0x7f08004f; public static final int design_fab_border_width=0x7f080050; public static final int design_fab_elevation=0x7f080051; public static final int design_fab_image_size=0x7f080052; public static final int design_fab_size_mini=0x7f080053; public static final int design_fab_size_normal=0x7f080054; public static final int design_fab_translation_z_pressed=0x7f080055; public static final int design_navigation_elevation=0x7f080056; public static final int design_navigation_icon_padding=0x7f080057; public static final int design_navigation_icon_size=0x7f080058; public static final int design_navigation_max_width=0x7f080010; public static final int design_navigation_padding_bottom=0x7f080059; public static final int design_navigation_separator_vertical_padding=0x7f08005a; public static final int design_snackbar_action_inline_max_width=0x7f080011; public static final int design_snackbar_background_corner_radius=0x7f080012; public static final int design_snackbar_elevation=0x7f08005b; public static final int design_snackbar_extra_spacing_horizontal=0x7f080013; public static final int design_snackbar_max_width=0x7f080014; public static final int design_snackbar_min_width=0x7f080015; public static final int design_snackbar_padding_horizontal=0x7f08005c; public static final int design_snackbar_padding_vertical=0x7f08005d; public static final int design_snackbar_padding_vertical_2lines=0x7f080016; public static final int design_snackbar_text_size=0x7f08005e; public static final int design_tab_max_width=0x7f08005f; public static final int design_tab_scrollable_min_width=0x7f080017; public static final int design_tab_text_size=0x7f080060; public static final int design_tab_text_size_2line=0x7f080061; public static final int disabled_alpha_material_dark=0x7f080062; public static final int disabled_alpha_material_light=0x7f080063; public static final int highlight_alpha_material_colored=0x7f080064; public static final int highlight_alpha_material_dark=0x7f080065; public static final int highlight_alpha_material_light=0x7f080066; public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f080067; public static final int item_touch_helper_swipe_escape_max_velocity=0x7f080068; public static final int item_touch_helper_swipe_escape_velocity=0x7f080069; public static final int notification_large_icon_height=0x7f08006a; public static final int notification_large_icon_width=0x7f08006b; public static final int notification_subtext_size=0x7f08006c; } 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_star_black_16dp=0x7f020021; public static final int abc_ic_star_black_36dp=0x7f020022; public static final int abc_ic_star_half_black_16dp=0x7f020023; public static final int abc_ic_star_half_black_36dp=0x7f020024; public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020025; public static final int abc_item_background_holo_dark=0x7f020026; public static final int abc_item_background_holo_light=0x7f020027; public static final int abc_list_divider_mtrl_alpha=0x7f020028; public static final int abc_list_focused_holo=0x7f020029; public static final int abc_list_longpressed_holo=0x7f02002a; public static final int abc_list_pressed_holo_dark=0x7f02002b; public static final int abc_list_pressed_holo_light=0x7f02002c; public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; public static final int abc_list_selector_disabled_holo_light=0x7f020030; public static final int abc_list_selector_holo_dark=0x7f020031; public static final int abc_list_selector_holo_light=0x7f020032; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; public static final int abc_popup_background_mtrl_mult=0x7f020034; public static final int abc_ratingbar_full_material=0x7f020035; public static final int abc_ratingbar_indicator_material=0x7f020036; public static final int abc_ratingbar_small_material=0x7f020037; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; public static final int abc_seekbar_thumb_material=0x7f02003d; public static final int abc_seekbar_track_material=0x7f02003e; public static final int abc_spinner_mtrl_am_alpha=0x7f02003f; public static final int abc_spinner_textfield_background_material=0x7f020040; public static final int abc_switch_thumb_material=0x7f020041; public static final int abc_switch_track_mtrl_alpha=0x7f020042; public static final int abc_tab_indicator_material=0x7f020043; public static final int abc_tab_indicator_mtrl_alpha=0x7f020044; public static final int abc_text_cursor_material=0x7f020045; public static final int abc_textfield_activated_mtrl_alpha=0x7f020046; public static final int abc_textfield_default_mtrl_alpha=0x7f020047; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f020048; public static final int abc_textfield_search_default_mtrl_alpha=0x7f020049; public static final int abc_textfield_search_material=0x7f02004a; public static final int design_fab_background=0x7f02004b; public static final int design_snackbar_background=0x7f02004c; public static final int notification_template_icon_bg=0x7f02004d; } public static final class id { public static final int action0=0x7f0c0079; public static final int action_bar=0x7f0c005a; public static final int action_bar_activity_content=0x7f0c0000; public static final int action_bar_container=0x7f0c0059; public static final int action_bar_root=0x7f0c0055; public static final int action_bar_spinner=0x7f0c0001; public static final int action_bar_subtitle=0x7f0c003b; public static final int action_bar_title=0x7f0c003a; public static final int action_context_bar=0x7f0c005b; public static final int action_divider=0x7f0c007d; public static final int action_menu_divider=0x7f0c0002; public static final int action_menu_presenter=0x7f0c0003; public static final int action_mode_bar=0x7f0c0057; public static final int action_mode_bar_stub=0x7f0c0056; public static final int action_mode_close_button=0x7f0c003c; public static final int activity_chooser_view_content=0x7f0c003d; public static final int alertTitle=0x7f0c0049; public static final int always=0x7f0c0033; public static final int beginning=0x7f0c0031; public static final int bottom=0x7f0c001d; public static final int buttonPanel=0x7f0c0044; public static final int cancel_action=0x7f0c007a; public static final int center=0x7f0c001e; public static final int center_horizontal=0x7f0c001f; public static final int center_vertical=0x7f0c0020; public static final int checkbox=0x7f0c0052; public static final int chronometer=0x7f0c0080; public static final int clip_horizontal=0x7f0c002c; public static final int clip_vertical=0x7f0c002d; public static final int collapseActionView=0x7f0c0034; public static final int contentPanel=0x7f0c004a; public static final int custom=0x7f0c0050; public static final int customPanel=0x7f0c004f; public static final int decor_content_parent=0x7f0c0058; public static final int default_activity_button=0x7f0c0040; public static final int design_bottom_sheet=0x7f0c0071; public static final int design_menu_item_action_area=0x7f0c0078; public static final int design_menu_item_action_area_stub=0x7f0c0077; public static final int design_menu_item_text=0x7f0c0076; public static final int design_navigation_view=0x7f0c0075; public static final int disableHome=0x7f0c000e; public static final int edit_query=0x7f0c005c; public static final int email=0x7f0c006c; public static final int email_login_form=0x7f0c006b; public static final int email_sign_in_button=0x7f0c006f; public static final int end=0x7f0c0021; public static final int end_padder=0x7f0c0085; public static final int enterAlways=0x7f0c0015; public static final int enterAlwaysCollapsed=0x7f0c0016; public static final int exitUntilCollapsed=0x7f0c0017; public static final int expand_activities_button=0x7f0c003e; public static final int expanded_menu=0x7f0c0051; public static final int fill=0x7f0c002e; public static final int fill_horizontal=0x7f0c002f; public static final int fill_vertical=0x7f0c0022; public static final int fixed=0x7f0c0038; public static final int home=0x7f0c0004; public static final int homeAsUp=0x7f0c000f; public static final int icon=0x7f0c0042; public static final int ifRoom=0x7f0c0035; public static final int image=0x7f0c003f; public static final int info=0x7f0c0084; public static final int item_touch_helper_previous_elevation=0x7f0c0005; public static final int left=0x7f0c0023; public static final int line1=0x7f0c007e; public static final int line3=0x7f0c0082; public static final int listMode=0x7f0c000b; public static final int list_item=0x7f0c0041; public static final int login=0x7f0c006e; public static final int login_form=0x7f0c006a; public static final int login_progress=0x7f0c0069; public static final int media_actions=0x7f0c007c; public static final int middle=0x7f0c0032; public static final int mini=0x7f0c0030; public static final int multiply=0x7f0c0027; public static final int navigation_header_container=0x7f0c0074; public static final int never=0x7f0c0036; public static final int none=0x7f0c0010; public static final int normal=0x7f0c000c; public static final int parallax=0x7f0c001b; public static final int parentPanel=0x7f0c0046; public static final int password=0x7f0c006d; public static final int pin=0x7f0c001c; public static final int progress_circular=0x7f0c0006; public static final int progress_horizontal=0x7f0c0007; public static final int radio=0x7f0c0054; public static final int right=0x7f0c0024; public static final int screen=0x7f0c0028; public static final int scroll=0x7f0c0018; public static final int scrollIndicatorDown=0x7f0c004e; public static final int scrollIndicatorUp=0x7f0c004b; public static final int scrollView=0x7f0c004c; public static final int scrollable=0x7f0c0039; public static final int search_badge=0x7f0c005e; public static final int search_bar=0x7f0c005d; public static final int search_button=0x7f0c005f; public static final int search_close_btn=0x7f0c0064; public static final int search_edit_frame=0x7f0c0060; public static final int search_go_btn=0x7f0c0066; public static final int search_mag_icon=0x7f0c0061; public static final int search_plate=0x7f0c0062; public static final int search_src_text=0x7f0c0063; public static final int search_voice_btn=0x7f0c0067; public static final int select_dialog_listview=0x7f0c0068; public static final int shortcut=0x7f0c0053; public static final int showCustom=0x7f0c0011; public static final int showHome=0x7f0c0012; public static final int showTitle=0x7f0c0013; public static final int snackbar_action=0x7f0c0073; public static final int snackbar_text=0x7f0c0072; public static final int snap=0x7f0c0019; public static final int spacer=0x7f0c0045; public static final int split_action_bar=0x7f0c0008; public static final int src_atop=0x7f0c0029; public static final int src_in=0x7f0c002a; public static final int src_over=0x7f0c002b; public static final int start=0x7f0c0025; public static final int status_bar_latest_event_content=0x7f0c007b; public static final int submit_area=0x7f0c0065; public static final int tabMode=0x7f0c000d; public static final int text=0x7f0c0083; public static final int text2=0x7f0c0081; public static final int textSpacerNoButtons=0x7f0c004d; public static final int time=0x7f0c007f; public static final int title=0x7f0c0043; public static final int title_template=0x7f0c0048; public static final int top=0x7f0c0026; public static final int topPanel=0x7f0c0047; public static final int touch_outside=0x7f0c0070; public static final int up=0x7f0c0009; public static final int useLogo=0x7f0c0014; public static final int view_offset_helper=0x7f0c000a; public static final int withText=0x7f0c0037; public static final int wrap_content=0x7f0c001a; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f0a0002; public static final int abc_config_activityShortDur=0x7f0a0003; public static final int abc_max_action_buttons=0x7f0a0000; public static final int bottom_sheet_slide_duration=0x7f0a0004; public static final int cancel_button_image_alpha=0x7f0a0005; public static final int design_snackbar_text_max_lines=0x7f0a0001; public static final int status_bar_notification_info_maxnum=0x7f0a0006; } public static final class layout { public static final int abc_action_bar_title_item=0x7f040000; public static final int abc_action_bar_up_container=0x7f040001; public static final int abc_action_bar_view_list_nav_layout=0x7f040002; public static final int abc_action_menu_item_layout=0x7f040003; public static final int abc_action_menu_layout=0x7f040004; public static final int abc_action_mode_bar=0x7f040005; public static final int abc_action_mode_close_item_material=0x7f040006; public static final int abc_activity_chooser_view=0x7f040007; public static final int abc_activity_chooser_view_list_item=0x7f040008; public static final int abc_alert_dialog_button_bar_material=0x7f040009; public static final int abc_alert_dialog_material=0x7f04000a; public static final int abc_dialog_title_material=0x7f04000b; public static final int abc_expanded_menu_layout=0x7f04000c; public static final int abc_list_menu_item_checkbox=0x7f04000d; public static final int abc_list_menu_item_icon=0x7f04000e; public static final int abc_list_menu_item_layout=0x7f04000f; public static final int abc_list_menu_item_radio=0x7f040010; public static final int abc_popup_menu_item_layout=0x7f040011; public static final int abc_screen_content_include=0x7f040012; public static final int abc_screen_simple=0x7f040013; public static final int abc_screen_simple_overlay_action_mode=0x7f040014; public static final int abc_screen_toolbar=0x7f040015; public static final int abc_search_dropdown_item_icons_2line=0x7f040016; public static final int abc_search_view=0x7f040017; public static final int abc_select_dialog_material=0x7f040018; public static final int activity_login=0x7f040019; public static final int design_bottom_sheet_dialog=0x7f04001a; public static final int design_layout_snackbar=0x7f04001b; public static final int design_layout_snackbar_include=0x7f04001c; public static final int design_layout_tab_icon=0x7f04001d; public static final int design_layout_tab_text=0x7f04001e; public static final int design_menu_item_action_area=0x7f04001f; public static final int design_navigation_item=0x7f040020; public static final int design_navigation_item_header=0x7f040021; public static final int design_navigation_item_separator=0x7f040022; public static final int design_navigation_item_subheader=0x7f040023; public static final int design_navigation_menu=0x7f040024; public static final int design_navigation_menu_item=0x7f040025; public static final int notification_media_action=0x7f040026; public static final int notification_media_cancel_action=0x7f040027; public static final int notification_template_big_media=0x7f040028; public static final int notification_template_big_media_narrow=0x7f040029; public static final int notification_template_lines=0x7f04002a; public static final int notification_template_media=0x7f04002b; public static final int notification_template_part_chronometer=0x7f04002c; public static final int notification_template_part_time=0x7f04002d; public static final int select_dialog_item_material=0x7f04002e; public static final int select_dialog_multichoice_material=0x7f04002f; public static final int select_dialog_singlechoice_material=0x7f040030; public static final int support_simple_spinner_dropdown_item=0x7f040031; } public static final class mipmap { public static final int ic_launcher=0x7f030000; } public static final class string { public static final int abc_action_bar_home_description=0x7f060000; public static final int abc_action_bar_home_description_format=0x7f060001; public static final int abc_action_bar_home_subtitle_description_format=0x7f060002; public static final int abc_action_bar_up_description=0x7f060003; public static final int abc_action_menu_overflow_description=0x7f060004; public static final int abc_action_mode_done=0x7f060005; public static final int abc_activity_chooser_view_see_all=0x7f060006; public static final int abc_activitychooserview_choose_application=0x7f060007; public static final int abc_capital_off=0x7f060008; public static final int abc_capital_on=0x7f060009; public static final int abc_search_hint=0x7f06000a; public static final int abc_searchview_description_clear=0x7f06000b; public static final int abc_searchview_description_query=0x7f06000c; public static final int abc_searchview_description_search=0x7f06000d; public static final int abc_searchview_description_submit=0x7f06000e; public static final int abc_searchview_description_voice=0x7f06000f; public static final int abc_shareactionprovider_share_with=0x7f060010; public static final int abc_shareactionprovider_share_with_application=0x7f060011; public static final int abc_toolbar_collapse_description=0x7f060012; public static final int action_sign_in=0x7f060014; public static final int action_sign_in_short=0x7f060015; public static final int app_name=0x7f060016; public static final int appbar_scrolling_view_behavior=0x7f060017; public static final int bottom_sheet_behavior=0x7f060018; public static final int character_counter_pattern=0x7f060019; public static final int error_field_required=0x7f06001a; public static final int error_incorrect_password=0x7f06001b; public static final int error_invalid_email=0x7f06001c; public static final int error_invalid_password=0x7f06001d; public static final int permission_rationale=0x7f06001e; public static final int prompt_email=0x7f06001f; public static final int prompt_password=0x7f060020; public static final int status_bar_notification_info_overflow=0x7f060013; } public static final class style { public static final int AlertDialog_AppCompat=0x7f090087; public static final int AlertDialog_AppCompat_Light=0x7f090088; public static final int Animation_AppCompat_Dialog=0x7f090089; public static final int Animation_AppCompat_DropDownUp=0x7f09008a; public static final int Animation_Design_BottomSheetDialog=0x7f09008b; public static final int AppTheme=0x7f09008c; public static final int Base_AlertDialog_AppCompat=0x7f09008d; public static final int Base_AlertDialog_AppCompat_Light=0x7f09008e; public static final int Base_Animation_AppCompat_Dialog=0x7f09008f; public static final int Base_Animation_AppCompat_DropDownUp=0x7f090090; public static final int Base_DialogWindowTitle_AppCompat=0x7f090091; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f090092; public static final int Base_TextAppearance_AppCompat=0x7f090037; public static final int Base_TextAppearance_AppCompat_Body1=0x7f090038; public static final int Base_TextAppearance_AppCompat_Body2=0x7f090039; public static final int Base_TextAppearance_AppCompat_Button=0x7f090021; public static final int Base_TextAppearance_AppCompat_Caption=0x7f09003a; public static final int Base_TextAppearance_AppCompat_Display1=0x7f09003b; public static final int Base_TextAppearance_AppCompat_Display2=0x7f09003c; public static final int Base_TextAppearance_AppCompat_Display3=0x7f09003d; public static final int Base_TextAppearance_AppCompat_Display4=0x7f09003e; public static final int Base_TextAppearance_AppCompat_Headline=0x7f09003f; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f09000c; public static final int Base_TextAppearance_AppCompat_Large=0x7f090040; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f09000d; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f090041; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f090042; public static final int Base_TextAppearance_AppCompat_Medium=0x7f090043; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f09000e; public static final int Base_TextAppearance_AppCompat_Menu=0x7f090044; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f090093; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f090045; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f090046; public static final int Base_TextAppearance_AppCompat_Small=0x7f090047; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f09000f; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f090048; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f090010; public static final int Base_TextAppearance_AppCompat_Title=0x7f090049; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f090011; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f090080; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f09004a; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f09004b; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f09004c; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f09004d; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f09004e; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f09004f; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f090050; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f090081; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f090094; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f090051; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f090052; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f090053; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f090054; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f090095; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f090055; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f090056; public static final int Base_Theme_AppCompat=0x7f090057; public static final int Base_Theme_AppCompat_CompactMenu=0x7f090096; public static final int Base_Theme_AppCompat_Dialog=0x7f090012; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f090097; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f090098; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f090099; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f090002; public static final int Base_Theme_AppCompat_Light=0x7f090058; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f09009a; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f090013; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f09009b; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f09009c; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f09009d; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f090003; public static final int Base_ThemeOverlay_AppCompat=0x7f09009e; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f09009f; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0900a0; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900a1; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0900a2; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f090014; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f090015; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f09001d; public static final int Base_V12_Widget_AppCompat_EditText=0x7f09001e; public static final int Base_V21_Theme_AppCompat=0x7f090059; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f09005a; public static final int Base_V21_Theme_AppCompat_Light=0x7f09005b; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f09005c; public static final int Base_V22_Theme_AppCompat=0x7f09007e; public static final int Base_V22_Theme_AppCompat_Light=0x7f09007f; public static final int Base_V23_Theme_AppCompat=0x7f090082; public static final int Base_V23_Theme_AppCompat_Light=0x7f090083; public static final int Base_V7_Theme_AppCompat=0x7f0900a3; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0900a4; public static final int Base_V7_Theme_AppCompat_Light=0x7f0900a5; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0900a6; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0900a7; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0900a8; public static final int Base_Widget_AppCompat_ActionBar=0x7f0900a9; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0900aa; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0900ab; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f09005d; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f09005e; public static final int Base_Widget_AppCompat_ActionButton=0x7f09005f; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f090060; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f090061; public static final int Base_Widget_AppCompat_ActionMode=0x7f0900ac; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0900ad; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f09001f; public static final int Base_Widget_AppCompat_Button=0x7f090062; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f090063; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f090064; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900ae; public static final int Base_Widget_AppCompat_Button_Colored=0x7f090084; public static final int Base_Widget_AppCompat_Button_Small=0x7f090065; public static final int Base_Widget_AppCompat_ButtonBar=0x7f090066; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900af; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f090067; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f090068; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900b0; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f090000; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900b1; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f090069; public static final int Base_Widget_AppCompat_EditText=0x7f090020; public static final int Base_Widget_AppCompat_ImageButton=0x7f09006a; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0900b2; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900b3; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900b4; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f09006b; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f09006c; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f09006d; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f09006e; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f09006f; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f090070; public static final int Base_Widget_AppCompat_ListView=0x7f090071; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f090072; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f090073; public static final int Base_Widget_AppCompat_PopupMenu=0x7f090074; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f090075; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0900b5; public static final int Base_Widget_AppCompat_ProgressBar=0x7f090016; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f090017; public static final int Base_Widget_AppCompat_RatingBar=0x7f090076; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f090085; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f090086; public static final int Base_Widget_AppCompat_SearchView=0x7f0900b6; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900b7; public static final int Base_Widget_AppCompat_SeekBar=0x7f090077; public static final int Base_Widget_AppCompat_Spinner=0x7f090078; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f090004; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f090079; public static final int Base_Widget_AppCompat_Toolbar=0x7f0900b8; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f09007a; public static final int Base_Widget_Design_TabLayout=0x7f0900b9; public static final int Platform_AppCompat=0x7f090018; public static final int Platform_AppCompat_Light=0x7f090019; public static final int Platform_ThemeOverlay_AppCompat=0x7f09007b; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f09007c; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f09007d; public static final int Platform_V11_AppCompat=0x7f09001a; public static final int Platform_V11_AppCompat_Light=0x7f09001b; public static final int Platform_V14_AppCompat=0x7f090022; public static final int Platform_V14_AppCompat_Light=0x7f090023; public static final int Platform_Widget_AppCompat_Spinner=0x7f09001c; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f090029; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f09002a; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f09002b; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f09002c; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f09002d; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f09002e; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f09002f; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f090030; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f090031; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f090032; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f090033; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f090034; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f090035; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f090036; public static final int TextAppearance_AppCompat=0x7f0900ba; public static final int TextAppearance_AppCompat_Body1=0x7f0900bb; public static final int TextAppearance_AppCompat_Body2=0x7f0900bc; public static final int TextAppearance_AppCompat_Button=0x7f0900bd; public static final int TextAppearance_AppCompat_Caption=0x7f0900be; public static final int TextAppearance_AppCompat_Display1=0x7f0900bf; public static final int TextAppearance_AppCompat_Display2=0x7f0900c0; public static final int TextAppearance_AppCompat_Display3=0x7f0900c1; public static final int TextAppearance_AppCompat_Display4=0x7f0900c2; public static final int TextAppearance_AppCompat_Headline=0x7f0900c3; public static final int TextAppearance_AppCompat_Inverse=0x7f0900c4; public static final int TextAppearance_AppCompat_Large=0x7f0900c5; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0900c6; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900c7; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900c8; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900c9; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900ca; public static final int TextAppearance_AppCompat_Medium=0x7f0900cb; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0900cc; public static final int TextAppearance_AppCompat_Menu=0x7f0900cd; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900ce; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0900cf; public static final int TextAppearance_AppCompat_Small=0x7f0900d0; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0900d1; public static final int TextAppearance_AppCompat_Subhead=0x7f0900d2; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0900d3; public static final int TextAppearance_AppCompat_Title=0x7f0900d4; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0900d5; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900d6; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0900d7; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0900d8; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0900d9; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0900da; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0900db; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0900dc; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0900dd; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0900de; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0900df; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0900e0; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900e1; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0900e2; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0900e3; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0900e4; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0900e5; public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0900e6; public static final int TextAppearance_Design_Counter=0x7f0900e7; public static final int TextAppearance_Design_Counter_Overflow=0x7f0900e8; public static final int TextAppearance_Design_Error=0x7f0900e9; public static final int TextAppearance_Design_Hint=0x7f0900ea; public static final int TextAppearance_Design_Snackbar_Message=0x7f0900eb; public static final int TextAppearance_Design_Tab=0x7f0900ec; public static final int TextAppearance_StatusBar_EventContent=0x7f090024; public static final int TextAppearance_StatusBar_EventContent_Info=0x7f090025; public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f090026; public static final int TextAppearance_StatusBar_EventContent_Time=0x7f090027; public static final int TextAppearance_StatusBar_EventContent_Title=0x7f090028; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900ed; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0900ee; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0900ef; public static final int Theme_AppCompat=0x7f0900f0; public static final int Theme_AppCompat_CompactMenu=0x7f0900f1; public static final int Theme_AppCompat_DayNight=0x7f090005; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f090006; public static final int Theme_AppCompat_DayNight_Dialog=0x7f090007; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f090008; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f090009; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f09000a; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f09000b; public static final int Theme_AppCompat_Dialog=0x7f0900f2; public static final int Theme_AppCompat_Dialog_Alert=0x7f0900f3; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0900f4; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0900f5; public static final int Theme_AppCompat_Light=0x7f0900f6; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0900f7; public static final int Theme_AppCompat_Light_Dialog=0x7f0900f8; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0900f9; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0900fa; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0900fb; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0900fc; public static final int Theme_AppCompat_NoActionBar=0x7f0900fd; public static final int Theme_Design=0x7f0900fe; public static final int Theme_Design_BottomSheetDialog=0x7f0900ff; public static final int Theme_Design_Light=0x7f090100; public static final int Theme_Design_Light_BottomSheetDialog=0x7f090101; public static final int Theme_Design_Light_NoActionBar=0x7f090102; public static final int Theme_Design_NoActionBar=0x7f090103; public static final int ThemeOverlay_AppCompat=0x7f090104; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f090105; public static final int ThemeOverlay_AppCompat_Dark=0x7f090106; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f090107; public static final int ThemeOverlay_AppCompat_Light=0x7f090108; public static final int Widget_AppCompat_ActionBar=0x7f090109; public static final int Widget_AppCompat_ActionBar_Solid=0x7f09010a; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f09010b; public static final int Widget_AppCompat_ActionBar_TabText=0x7f09010c; public static final int Widget_AppCompat_ActionBar_TabView=0x7f09010d; public static final int Widget_AppCompat_ActionButton=0x7f09010e; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f09010f; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f090110; public static final int Widget_AppCompat_ActionMode=0x7f090111; public static final int Widget_AppCompat_ActivityChooserView=0x7f090112; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f090113; public static final int Widget_AppCompat_Button=0x7f090114; public static final int Widget_AppCompat_Button_Borderless=0x7f090115; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f090116; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f090117; public static final int Widget_AppCompat_Button_Colored=0x7f090118; public static final int Widget_AppCompat_Button_Small=0x7f090119; public static final int Widget_AppCompat_ButtonBar=0x7f09011a; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f09011b; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f09011c; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f09011d; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f09011e; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f09011f; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f090120; public static final int Widget_AppCompat_EditText=0x7f090121; public static final int Widget_AppCompat_ImageButton=0x7f090122; public static final int Widget_AppCompat_Light_ActionBar=0x7f090123; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f090124; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f090125; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f090126; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f090127; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f090128; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090129; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f09012a; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f09012b; public static final int Widget_AppCompat_Light_ActionButton=0x7f09012c; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f09012d; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f09012e; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f09012f; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f090130; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f090131; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f090132; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f090133; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f090134; public static final int Widget_AppCompat_Light_PopupMenu=0x7f090135; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090136; public static final int Widget_AppCompat_Light_SearchView=0x7f090137; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f090138; public static final int Widget_AppCompat_ListPopupWindow=0x7f090139; public static final int Widget_AppCompat_ListView=0x7f09013a; public static final int Widget_AppCompat_ListView_DropDown=0x7f09013b; public static final int Widget_AppCompat_ListView_Menu=0x7f09013c; public static final int Widget_AppCompat_PopupMenu=0x7f09013d; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f09013e; public static final int Widget_AppCompat_PopupWindow=0x7f09013f; public static final int Widget_AppCompat_ProgressBar=0x7f090140; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f090141; public static final int Widget_AppCompat_RatingBar=0x7f090142; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f090143; public static final int Widget_AppCompat_RatingBar_Small=0x7f090144; public static final int Widget_AppCompat_SearchView=0x7f090145; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f090146; public static final int Widget_AppCompat_SeekBar=0x7f090147; public static final int Widget_AppCompat_Spinner=0x7f090148; public static final int Widget_AppCompat_Spinner_DropDown=0x7f090149; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f09014a; public static final int Widget_AppCompat_Spinner_Underlined=0x7f09014b; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f09014c; public static final int Widget_AppCompat_Toolbar=0x7f09014d; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f09014e; public static final int Widget_Design_AppBarLayout=0x7f09014f; public static final int Widget_Design_BottomSheet_Modal=0x7f090150; public static final int Widget_Design_CollapsingToolbar=0x7f090151; public static final int Widget_Design_CoordinatorLayout=0x7f090152; public static final int Widget_Design_FloatingActionButton=0x7f090153; public static final int Widget_Design_NavigationView=0x7f090154; public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f090155; public static final int Widget_Design_Snackbar=0x7f090156; public static final int Widget_Design_TabLayout=0x7f090001; public static final int Widget_Design_TextInputLayout=0x7f090157; } 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 org.sonarqube.helloworldandroid:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit org.sonarqube.helloworldandroid:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked org.sonarqube.helloworldandroid:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd org.sonarqube.helloworldandroid:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft org.sonarqube.helloworldandroid:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight org.sonarqube.helloworldandroid:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart org.sonarqube.helloworldandroid:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout org.sonarqube.helloworldandroid:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions org.sonarqube.helloworldandroid:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider org.sonarqube.helloworldandroid:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation org.sonarqube.helloworldandroid:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height org.sonarqube.helloworldandroid:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll org.sonarqube.helloworldandroid:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator org.sonarqube.helloworldandroid:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout org.sonarqube.helloworldandroid:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon org.sonarqube.helloworldandroid:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle org.sonarqube.helloworldandroid:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding org.sonarqube.helloworldandroid:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo org.sonarqube.helloworldandroid:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode org.sonarqube.helloworldandroid:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme org.sonarqube.helloworldandroid:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding org.sonarqube.helloworldandroid:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle org.sonarqube.helloworldandroid:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle org.sonarqube.helloworldandroid:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle org.sonarqube.helloworldandroid:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title org.sonarqube.helloworldandroid:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle org.sonarqube.helloworldandroid: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, 0x7f010057 }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:background */ public static final int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:divider */ public static final int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:elevation */ public static final int ActionBar_elevation = 24; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:height */ public static final int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 26; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:icon */ public static final int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:logo */ public static final int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:popupTheme */ public static final int ActionBar_popupTheme = 25; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:subtitle */ public static final int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:title */ public static final int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid: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 org.sonarqube.helloworldandroid:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit org.sonarqube.helloworldandroid:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout org.sonarqube.helloworldandroid:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height org.sonarqube.helloworldandroid:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle org.sonarqube.helloworldandroid:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle org.sonarqube.helloworldandroid: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 org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:background */ public static final int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:height */ public static final int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid: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 org.sonarqube.helloworldandroid:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount org.sonarqube.helloworldandroid: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 org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid: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 org.sonarqube.helloworldandroid:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout org.sonarqube.helloworldandroid:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout org.sonarqube.helloworldandroid:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout org.sonarqube.helloworldandroid:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout org.sonarqube.helloworldandroid: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 org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:listItemLayout */ public static final int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:listLayout */ public static final int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout = 4; /** Attributes that can be used with a AppBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_elevation org.sonarqube.helloworldandroid:elevation}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_expanded org.sonarqube.helloworldandroid:expanded}</code></td><td></td></tr> </table> @see #AppBarLayout_android_background @see #AppBarLayout_elevation @see #AppBarLayout_expanded */ public static final int[] AppBarLayout = { 0x010100d4, 0x7f01001a, 0x7f010024 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:background */ public static final int AppBarLayout_android_background = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#elevation} attribute's value can be found in the {@link #AppBarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:elevation */ public static final int AppBarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#expanded} attribute's value can be found in the {@link #AppBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:expanded */ public static final int AppBarLayout_expanded = 2; /** Attributes that can be used with a AppBarLayout_LayoutParams. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_LayoutParams_layout_scrollFlags org.sonarqube.helloworldandroid:layout_scrollFlags}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator org.sonarqube.helloworldandroid:layout_scrollInterpolator}</code></td><td></td></tr> </table> @see #AppBarLayout_LayoutParams_layout_scrollFlags @see #AppBarLayout_LayoutParams_layout_scrollInterpolator */ public static final int[] AppBarLayout_LayoutParams = { 0x7f010025, 0x7f010026 }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#layout_scrollFlags} attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scroll</code></td><td>0x1</td><td></td></tr> <tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr> <tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr> <tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr> <tr><td><code>snap</code></td><td>0x10</td><td></td></tr> </table> @attr name org.sonarqube.helloworldandroid:layout_scrollFlags */ public static final int AppBarLayout_LayoutParams_layout_scrollFlags = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#layout_scrollInterpolator} attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:layout_scrollInterpolator */ public static final int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1; /** Attributes that can be used with a AppCompatImageView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_srcCompat org.sonarqube.helloworldandroid:srcCompat}</code></td><td></td></tr> </table> @see #AppCompatImageView_android_src @see #AppCompatImageView_srcCompat */ public static final int[] AppCompatImageView = { 0x01010119, 0x7f010027 }; /** <p>This symbol is the offset where the {@link android.R.attr#src} attribute's value can be found in the {@link #AppCompatImageView} array. @attr name android:src */ public static final int AppCompatImageView_android_src = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#srcCompat} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:srcCompat */ public static final int AppCompatImageView_srcCompat = 1; /** 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 org.sonarqube.helloworldandroid:textAllCaps}</code></td><td></td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010028 }; /** <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 org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:textAllCaps */ public static final int AppCompatTextView_textAllCaps = 1; /** Attributes that can be used with a AppCompatTheme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTheme_actionBarDivider org.sonarqube.helloworldandroid:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground org.sonarqube.helloworldandroid:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme org.sonarqube.helloworldandroid:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSize org.sonarqube.helloworldandroid:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle org.sonarqube.helloworldandroid:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarStyle org.sonarqube.helloworldandroid:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle org.sonarqube.helloworldandroid:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle org.sonarqube.helloworldandroid:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle org.sonarqube.helloworldandroid:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTheme org.sonarqube.helloworldandroid:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme org.sonarqube.helloworldandroid:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionButtonStyle org.sonarqube.helloworldandroid:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle org.sonarqube.helloworldandroid:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance org.sonarqube.helloworldandroid:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor org.sonarqube.helloworldandroid:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeBackground org.sonarqube.helloworldandroid:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle org.sonarqube.helloworldandroid:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable org.sonarqube.helloworldandroid:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable org.sonarqube.helloworldandroid:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable org.sonarqube.helloworldandroid:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable org.sonarqube.helloworldandroid:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable org.sonarqube.helloworldandroid:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle org.sonarqube.helloworldandroid:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable org.sonarqube.helloworldandroid:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable org.sonarqube.helloworldandroid:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground org.sonarqube.helloworldandroid:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeStyle org.sonarqube.helloworldandroid:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable org.sonarqube.helloworldandroid:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle org.sonarqube.helloworldandroid:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle org.sonarqube.helloworldandroid:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle org.sonarqube.helloworldandroid:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle org.sonarqube.helloworldandroid:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons org.sonarqube.helloworldandroid:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogStyle org.sonarqube.helloworldandroid:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogTheme org.sonarqube.helloworldandroid:alertDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle org.sonarqube.helloworldandroid:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle org.sonarqube.helloworldandroid:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle org.sonarqube.helloworldandroid:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle org.sonarqube.helloworldandroid:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle org.sonarqube.helloworldandroid:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle org.sonarqube.helloworldandroid:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarStyle org.sonarqube.helloworldandroid:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyle org.sonarqube.helloworldandroid:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall org.sonarqube.helloworldandroid:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkboxStyle org.sonarqube.helloworldandroid:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle org.sonarqube.helloworldandroid:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorAccent org.sonarqube.helloworldandroid:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorButtonNormal org.sonarqube.helloworldandroid:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlActivated org.sonarqube.helloworldandroid:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlHighlight org.sonarqube.helloworldandroid:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlNormal org.sonarqube.helloworldandroid:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimary org.sonarqube.helloworldandroid:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark org.sonarqube.helloworldandroid:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal org.sonarqube.helloworldandroid:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_controlBackground org.sonarqube.helloworldandroid:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding org.sonarqube.helloworldandroid:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogTheme org.sonarqube.helloworldandroid:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerHorizontal org.sonarqube.helloworldandroid:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerVertical org.sonarqube.helloworldandroid:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle org.sonarqube.helloworldandroid:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight org.sonarqube.helloworldandroid:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextBackground org.sonarqube.helloworldandroid:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextColor org.sonarqube.helloworldandroid:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextStyle org.sonarqube.helloworldandroid:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator org.sonarqube.helloworldandroid:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_imageButtonStyle org.sonarqube.helloworldandroid:imageButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator org.sonarqube.helloworldandroid:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog org.sonarqube.helloworldandroid:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle org.sonarqube.helloworldandroid:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight org.sonarqube.helloworldandroid:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge org.sonarqube.helloworldandroid:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall org.sonarqube.helloworldandroid:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft org.sonarqube.helloworldandroid:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight org.sonarqube.helloworldandroid:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelBackground org.sonarqube.helloworldandroid:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme org.sonarqube.helloworldandroid:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth org.sonarqube.helloworldandroid:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupMenuStyle org.sonarqube.helloworldandroid:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupWindowStyle org.sonarqube.helloworldandroid:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_radioButtonStyle org.sonarqube.helloworldandroid:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyle org.sonarqube.helloworldandroid:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator org.sonarqube.helloworldandroid:ratingBarStyleIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall org.sonarqube.helloworldandroid:ratingBarStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_searchViewStyle org.sonarqube.helloworldandroid:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_seekBarStyle org.sonarqube.helloworldandroid:seekBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackground org.sonarqube.helloworldandroid:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless org.sonarqube.helloworldandroid:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle org.sonarqube.helloworldandroid:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerStyle org.sonarqube.helloworldandroid:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_switchStyle org.sonarqube.helloworldandroid:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu org.sonarqube.helloworldandroid:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem org.sonarqube.helloworldandroid:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall org.sonarqube.helloworldandroid:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle org.sonarqube.helloworldandroid:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle org.sonarqube.helloworldandroid:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu org.sonarqube.helloworldandroid:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem org.sonarqube.helloworldandroid:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl org.sonarqube.helloworldandroid:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle org.sonarqube.helloworldandroid:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarStyle org.sonarqube.helloworldandroid:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBar org.sonarqube.helloworldandroid:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay org.sonarqube.helloworldandroid:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay org.sonarqube.helloworldandroid:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor org.sonarqube.helloworldandroid:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor org.sonarqube.helloworldandroid:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor org.sonarqube.helloworldandroid:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor org.sonarqube.helloworldandroid:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor org.sonarqube.helloworldandroid:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor org.sonarqube.helloworldandroid:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowNoTitle org.sonarqube.helloworldandroid:windowNoTitle}</code></td><td></td></tr> </table> @see #AppCompatTheme_actionBarDivider @see #AppCompatTheme_actionBarItemBackground @see #AppCompatTheme_actionBarPopupTheme @see #AppCompatTheme_actionBarSize @see #AppCompatTheme_actionBarSplitStyle @see #AppCompatTheme_actionBarStyle @see #AppCompatTheme_actionBarTabBarStyle @see #AppCompatTheme_actionBarTabStyle @see #AppCompatTheme_actionBarTabTextStyle @see #AppCompatTheme_actionBarTheme @see #AppCompatTheme_actionBarWidgetTheme @see #AppCompatTheme_actionButtonStyle @see #AppCompatTheme_actionDropDownStyle @see #AppCompatTheme_actionMenuTextAppearance @see #AppCompatTheme_actionMenuTextColor @see #AppCompatTheme_actionModeBackground @see #AppCompatTheme_actionModeCloseButtonStyle @see #AppCompatTheme_actionModeCloseDrawable @see #AppCompatTheme_actionModeCopyDrawable @see #AppCompatTheme_actionModeCutDrawable @see #AppCompatTheme_actionModeFindDrawable @see #AppCompatTheme_actionModePasteDrawable @see #AppCompatTheme_actionModePopupWindowStyle @see #AppCompatTheme_actionModeSelectAllDrawable @see #AppCompatTheme_actionModeShareDrawable @see #AppCompatTheme_actionModeSplitBackground @see #AppCompatTheme_actionModeStyle @see #AppCompatTheme_actionModeWebSearchDrawable @see #AppCompatTheme_actionOverflowButtonStyle @see #AppCompatTheme_actionOverflowMenuStyle @see #AppCompatTheme_activityChooserViewStyle @see #AppCompatTheme_alertDialogButtonGroupStyle @see #AppCompatTheme_alertDialogCenterButtons @see #AppCompatTheme_alertDialogStyle @see #AppCompatTheme_alertDialogTheme @see #AppCompatTheme_android_windowAnimationStyle @see #AppCompatTheme_android_windowIsFloating @see #AppCompatTheme_autoCompleteTextViewStyle @see #AppCompatTheme_borderlessButtonStyle @see #AppCompatTheme_buttonBarButtonStyle @see #AppCompatTheme_buttonBarNegativeButtonStyle @see #AppCompatTheme_buttonBarNeutralButtonStyle @see #AppCompatTheme_buttonBarPositiveButtonStyle @see #AppCompatTheme_buttonBarStyle @see #AppCompatTheme_buttonStyle @see #AppCompatTheme_buttonStyleSmall @see #AppCompatTheme_checkboxStyle @see #AppCompatTheme_checkedTextViewStyle @see #AppCompatTheme_colorAccent @see #AppCompatTheme_colorButtonNormal @see #AppCompatTheme_colorControlActivated @see #AppCompatTheme_colorControlHighlight @see #AppCompatTheme_colorControlNormal @see #AppCompatTheme_colorPrimary @see #AppCompatTheme_colorPrimaryDark @see #AppCompatTheme_colorSwitchThumbNormal @see #AppCompatTheme_controlBackground @see #AppCompatTheme_dialogPreferredPadding @see #AppCompatTheme_dialogTheme @see #AppCompatTheme_dividerHorizontal @see #AppCompatTheme_dividerVertical @see #AppCompatTheme_dropDownListViewStyle @see #AppCompatTheme_dropdownListPreferredItemHeight @see #AppCompatTheme_editTextBackground @see #AppCompatTheme_editTextColor @see #AppCompatTheme_editTextStyle @see #AppCompatTheme_homeAsUpIndicator @see #AppCompatTheme_imageButtonStyle @see #AppCompatTheme_listChoiceBackgroundIndicator @see #AppCompatTheme_listDividerAlertDialog @see #AppCompatTheme_listPopupWindowStyle @see #AppCompatTheme_listPreferredItemHeight @see #AppCompatTheme_listPreferredItemHeightLarge @see #AppCompatTheme_listPreferredItemHeightSmall @see #AppCompatTheme_listPreferredItemPaddingLeft @see #AppCompatTheme_listPreferredItemPaddingRight @see #AppCompatTheme_panelBackground @see #AppCompatTheme_panelMenuListTheme @see #AppCompatTheme_panelMenuListWidth @see #AppCompatTheme_popupMenuStyle @see #AppCompatTheme_popupWindowStyle @see #AppCompatTheme_radioButtonStyle @see #AppCompatTheme_ratingBarStyle @see #AppCompatTheme_ratingBarStyleIndicator @see #AppCompatTheme_ratingBarStyleSmall @see #AppCompatTheme_searchViewStyle @see #AppCompatTheme_seekBarStyle @see #AppCompatTheme_selectableItemBackground @see #AppCompatTheme_selectableItemBackgroundBorderless @see #AppCompatTheme_spinnerDropDownItemStyle @see #AppCompatTheme_spinnerStyle @see #AppCompatTheme_switchStyle @see #AppCompatTheme_textAppearanceLargePopupMenu @see #AppCompatTheme_textAppearanceListItem @see #AppCompatTheme_textAppearanceListItemSmall @see #AppCompatTheme_textAppearanceSearchResultSubtitle @see #AppCompatTheme_textAppearanceSearchResultTitle @see #AppCompatTheme_textAppearanceSmallPopupMenu @see #AppCompatTheme_textColorAlertDialogListItem @see #AppCompatTheme_textColorSearchUrl @see #AppCompatTheme_toolbarNavigationButtonStyle @see #AppCompatTheme_toolbarStyle @see #AppCompatTheme_windowActionBar @see #AppCompatTheme_windowActionBarOverlay @see #AppCompatTheme_windowActionModeOverlay @see #AppCompatTheme_windowFixedHeightMajor @see #AppCompatTheme_windowFixedHeightMinor @see #AppCompatTheme_windowFixedWidthMajor @see #AppCompatTheme_windowFixedWidthMinor @see #AppCompatTheme_windowMinWidthMajor @see #AppCompatTheme_windowMinWidthMinor @see #AppCompatTheme_windowNoTitle */ public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionBarDivider} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionBarItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionBarPopupTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionBarSize} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> @attr name org.sonarqube.helloworldandroid:actionBarSize */ public static final int AppCompatTheme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionBarSplitStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionBarTabBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionBarTabStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionBarTabTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionBarTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionBarWidgetTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle = 49; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionDropDownStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle = 45; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionMenuTextAppearance} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionMenuTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name org.sonarqube.helloworldandroid:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionModeBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionModeCloseButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionModeCloseDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionModeCopyDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionModeCutDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionModeFindDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionModePasteDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionModePopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionModeSelectAllDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionModeShareDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionModeSplitBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionModeStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionModeWebSearchDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionOverflowButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#actionOverflowMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#activityChooserViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle = 57; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#alertDialogButtonGroupStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle = 92; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#alertDialogCenterButtons} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons = 93; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#alertDialogStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle = 91; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#alertDialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme = 94; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowAnimationStyle */ public static final int AppCompatTheme_android_windowAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowIsFloating */ public static final int AppCompatTheme_android_windowIsFloating = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#autoCompleteTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle = 99; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#borderlessButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle = 54; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#buttonBarButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle = 51; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#buttonBarNegativeButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 97; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#buttonBarNeutralButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 98; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#buttonBarPositiveButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 96; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#buttonBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle = 50; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#buttonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:buttonStyle */ public static final int AppCompatTheme_buttonStyle = 100; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#buttonStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall = 101; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#checkboxStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle = 102; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#checkedTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle = 103; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#colorAccent} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:colorAccent */ public static final int AppCompatTheme_colorAccent = 84; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#colorButtonNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal = 88; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#colorControlActivated} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated = 86; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#colorControlHighlight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight = 87; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#colorControlNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal = 85; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#colorPrimary} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:colorPrimary */ public static final int AppCompatTheme_colorPrimary = 82; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#colorPrimaryDark} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark = 83; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#colorSwitchThumbNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal = 89; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#controlBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:controlBackground */ public static final int AppCompatTheme_controlBackground = 90; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#dialogPreferredPadding} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding = 43; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#dialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:dialogTheme */ public static final int AppCompatTheme_dialogTheme = 42; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#dividerHorizontal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal = 56; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#dividerVertical} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:dividerVertical */ public static final int AppCompatTheme_dividerVertical = 55; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#dropDownListViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle = 74; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#dropdownListPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight = 46; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#editTextBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:editTextBackground */ public static final int AppCompatTheme_editTextBackground = 63; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#editTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name org.sonarqube.helloworldandroid:editTextColor */ public static final int AppCompatTheme_editTextColor = 62; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#editTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:editTextStyle */ public static final int AppCompatTheme_editTextStyle = 104; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator = 48; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#imageButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle = 64; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#listChoiceBackgroundIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator = 81; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#listDividerAlertDialog} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog = 44; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#listPopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle = 75; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#listPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight = 69; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#listPreferredItemHeightLarge} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge = 71; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#listPreferredItemHeightSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall = 70; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#listPreferredItemPaddingLeft} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft = 72; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#listPreferredItemPaddingRight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight = 73; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#panelBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:panelBackground */ public static final int AppCompatTheme_panelBackground = 78; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#panelMenuListTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme = 80; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#panelMenuListWidth} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth = 79; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#popupMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle = 60; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#popupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle = 61; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#radioButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle = 105; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#ratingBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle = 106; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#ratingBarStyleIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator = 107; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#ratingBarStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall = 108; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#searchViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle = 68; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#seekBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle = 109; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#selectableItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground = 52; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#selectableItemBackgroundBorderless} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless = 53; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#spinnerDropDownItemStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle = 47; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#spinnerStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle = 110; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#switchStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:switchStyle */ public static final int AppCompatTheme_switchStyle = 111; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#textAppearanceLargePopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#textAppearanceListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem = 76; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#textAppearanceListItemSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall = 77; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#textAppearanceSearchResultSubtitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 66; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#textAppearanceSearchResultTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle = 65; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#textAppearanceSmallPopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#textColorAlertDialogListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name org.sonarqube.helloworldandroid:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem = 95; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#textColorSearchUrl} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name org.sonarqube.helloworldandroid:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl = 67; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#toolbarNavigationButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle = 59; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#toolbarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle = 58; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#windowActionBar} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:windowActionBar */ public static final int AppCompatTheme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#windowActionBarOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#windowActionModeOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#windowFixedHeightMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#windowFixedHeightMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#windowFixedWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#windowFixedWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#windowMinWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#windowMinWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#windowNoTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle = 3; /** Attributes that can be used with a BottomSheetBehavior_Params. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #BottomSheetBehavior_Params_behavior_hideable org.sonarqube.helloworldandroid:behavior_hideable}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Params_behavior_peekHeight org.sonarqube.helloworldandroid:behavior_peekHeight}</code></td><td></td></tr> </table> @see #BottomSheetBehavior_Params_behavior_hideable @see #BottomSheetBehavior_Params_behavior_peekHeight */ public static final int[] BottomSheetBehavior_Params = { 0x7f010097, 0x7f010098 }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#behavior_hideable} attribute's value can be found in the {@link #BottomSheetBehavior_Params} 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 org.sonarqube.helloworldandroid:behavior_hideable */ public static final int BottomSheetBehavior_Params_behavior_hideable = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#behavior_peekHeight} attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:behavior_peekHeight */ public static final int BottomSheetBehavior_Params_behavior_peekHeight = 0; /** Attributes that can be used with a ButtonBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ButtonBarLayout_allowStacking org.sonarqube.helloworldandroid:allowStacking}</code></td><td></td></tr> </table> @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout = { 0x7f010099 }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#allowStacking} attribute's value can be found in the {@link #ButtonBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:allowStacking */ public static final int ButtonBarLayout_allowStacking = 0; /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams. <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 #CollapsingAppBarLayout_LayoutParams_layout_collapseMode org.sonarqube.helloworldandroid:layout_collapseMode}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier org.sonarqube.helloworldandroid:layout_collapseParallaxMultiplier}</code></td><td></td></tr> </table> @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier */ public static final int[] CollapsingAppBarLayout_LayoutParams = { 0x7f01009a, 0x7f01009b }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#layout_collapseMode} attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>pin</code></td><td>1</td><td></td></tr> <tr><td><code>parallax</code></td><td>2</td><td></td></tr> </table> @attr name org.sonarqube.helloworldandroid:layout_collapseMode */ public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#layout_collapseParallaxMultiplier} attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} 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 org.sonarqube.helloworldandroid:layout_collapseParallaxMultiplier */ public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1; /** Attributes that can be used with a CollapsingToolbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity org.sonarqube.helloworldandroid:collapsedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance org.sonarqube.helloworldandroid:collapsedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim org.sonarqube.helloworldandroid:contentScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity org.sonarqube.helloworldandroid:expandedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin org.sonarqube.helloworldandroid:expandedTitleMargin}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom org.sonarqube.helloworldandroid:expandedTitleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd org.sonarqube.helloworldandroid:expandedTitleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart org.sonarqube.helloworldandroid:expandedTitleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop org.sonarqube.helloworldandroid:expandedTitleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance org.sonarqube.helloworldandroid:expandedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim org.sonarqube.helloworldandroid:statusBarScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_title org.sonarqube.helloworldandroid:title}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled org.sonarqube.helloworldandroid:titleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId org.sonarqube.helloworldandroid:toolbarId}</code></td><td></td></tr> </table> @see #CollapsingToolbarLayout_collapsedTitleGravity @see #CollapsingToolbarLayout_collapsedTitleTextAppearance @see #CollapsingToolbarLayout_contentScrim @see #CollapsingToolbarLayout_expandedTitleGravity @see #CollapsingToolbarLayout_expandedTitleMargin @see #CollapsingToolbarLayout_expandedTitleMarginBottom @see #CollapsingToolbarLayout_expandedTitleMarginEnd @see #CollapsingToolbarLayout_expandedTitleMarginStart @see #CollapsingToolbarLayout_expandedTitleMarginTop @see #CollapsingToolbarLayout_expandedTitleTextAppearance @see #CollapsingToolbarLayout_statusBarScrim @see #CollapsingToolbarLayout_title @see #CollapsingToolbarLayout_titleEnabled @see #CollapsingToolbarLayout_toolbarId */ public static final int[] CollapsingToolbarLayout = { 0x7f010003, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8 }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#collapsedTitleGravity} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name org.sonarqube.helloworldandroid:collapsedTitleGravity */ public static final int CollapsingToolbarLayout_collapsedTitleGravity = 11; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#collapsedTitleTextAppearance} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:collapsedTitleTextAppearance */ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#contentScrim} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:contentScrim */ public static final int CollapsingToolbarLayout_contentScrim = 8; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#expandedTitleGravity} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name org.sonarqube.helloworldandroid:expandedTitleGravity */ public static final int CollapsingToolbarLayout_expandedTitleGravity = 12; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#expandedTitleMargin} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:expandedTitleMargin */ public static final int CollapsingToolbarLayout_expandedTitleMargin = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#expandedTitleMarginBottom} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:expandedTitleMarginBottom */ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#expandedTitleMarginEnd} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:expandedTitleMarginEnd */ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#expandedTitleMarginStart} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:expandedTitleMarginStart */ public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#expandedTitleMarginTop} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:expandedTitleMarginTop */ public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#expandedTitleTextAppearance} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:expandedTitleTextAppearance */ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#statusBarScrim} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:statusBarScrim */ public static final int CollapsingToolbarLayout_statusBarScrim = 9; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#title} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:title */ public static final int CollapsingToolbarLayout_title = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#titleEnabled} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:titleEnabled */ public static final int CollapsingToolbarLayout_titleEnabled = 13; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#toolbarId} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:toolbarId */ public static final int CollapsingToolbarLayout_toolbarId = 10; /** 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 org.sonarqube.helloworldandroid:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode org.sonarqube.helloworldandroid:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f0100a9, 0x7f0100aa }; /** <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 org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:buttonTint */ public static final int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:buttonTintMode */ public static final int CompoundButton_buttonTintMode = 2; /** Attributes that can be used with a CoordinatorLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CoordinatorLayout_keylines org.sonarqube.helloworldandroid:keylines}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_statusBarBackground org.sonarqube.helloworldandroid:statusBarBackground}</code></td><td></td></tr> </table> @see #CoordinatorLayout_keylines @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout = { 0x7f0100ab, 0x7f0100ac }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#keylines} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:keylines */ public static final int CoordinatorLayout_keylines = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#statusBarBackground} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:statusBarBackground */ public static final int CoordinatorLayout_statusBarBackground = 1; /** Attributes that can be used with a CoordinatorLayout_LayoutParams. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_anchor org.sonarqube.helloworldandroid:layout_anchor}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity org.sonarqube.helloworldandroid:layout_anchorGravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_behavior org.sonarqube.helloworldandroid:layout_behavior}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_keyline org.sonarqube.helloworldandroid:layout_keyline}</code></td><td></td></tr> </table> @see #CoordinatorLayout_LayoutParams_android_layout_gravity @see #CoordinatorLayout_LayoutParams_layout_anchor @see #CoordinatorLayout_LayoutParams_layout_anchorGravity @see #CoordinatorLayout_LayoutParams_layout_behavior @see #CoordinatorLayout_LayoutParams_layout_keyline */ public static final int[] CoordinatorLayout_LayoutParams = { 0x010100b3, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. @attr name android:layout_gravity */ public static final int CoordinatorLayout_LayoutParams_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#layout_anchor} attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:layout_anchor */ public static final int CoordinatorLayout_LayoutParams_layout_anchor = 2; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#layout_anchorGravity} attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>fill</code></td><td>0x77</td><td></td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name org.sonarqube.helloworldandroid:layout_anchorGravity */ public static final int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#layout_behavior} attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} 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 org.sonarqube.helloworldandroid:layout_behavior */ public static final int CoordinatorLayout_LayoutParams_layout_behavior = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#layout_keyline} attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} 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 org.sonarqube.helloworldandroid:layout_keyline */ public static final int CoordinatorLayout_LayoutParams_layout_keyline = 3; /** Attributes that can be used with a DesignTheme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme org.sonarqube.helloworldandroid:bottomSheetDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_bottomSheetStyle org.sonarqube.helloworldandroid:bottomSheetStyle}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_textColorError org.sonarqube.helloworldandroid:textColorError}</code></td><td></td></tr> </table> @see #DesignTheme_bottomSheetDialogTheme @see #DesignTheme_bottomSheetStyle @see #DesignTheme_textColorError */ public static final int[] DesignTheme = { 0x7f0100b1, 0x7f0100b2, 0x7f0100b3 }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#bottomSheetDialogTheme} attribute's value can be found in the {@link #DesignTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:bottomSheetDialogTheme */ public static final int DesignTheme_bottomSheetDialogTheme = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#bottomSheetStyle} attribute's value can be found in the {@link #DesignTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:bottomSheetStyle */ public static final int DesignTheme_bottomSheetStyle = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#textColorError} attribute's value can be found in the {@link #DesignTheme} 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 org.sonarqube.helloworldandroid:textColorError */ public static final int DesignTheme_textColorError = 2; /** Attributes that can be used with a DrawerArrowToggle. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength org.sonarqube.helloworldandroid:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength org.sonarqube.helloworldandroid:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength org.sonarqube.helloworldandroid:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color org.sonarqube.helloworldandroid:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize org.sonarqube.helloworldandroid:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars org.sonarqube.helloworldandroid:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars org.sonarqube.helloworldandroid:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness org.sonarqube.helloworldandroid: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 = { 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:barLength */ public static final int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:color */ public static final int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:thickness */ public static final int DrawerArrowToggle_thickness = 7; /** Attributes that can be used with a FloatingActionButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTint org.sonarqube.helloworldandroid:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTintMode org.sonarqube.helloworldandroid:backgroundTintMode}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_borderWidth org.sonarqube.helloworldandroid:borderWidth}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_elevation org.sonarqube.helloworldandroid:elevation}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_fabSize org.sonarqube.helloworldandroid:fabSize}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ org.sonarqube.helloworldandroid:pressedTranslationZ}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_rippleColor org.sonarqube.helloworldandroid:rippleColor}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_useCompatPadding org.sonarqube.helloworldandroid:useCompatPadding}</code></td><td></td></tr> </table> @see #FloatingActionButton_backgroundTint @see #FloatingActionButton_backgroundTintMode @see #FloatingActionButton_borderWidth @see #FloatingActionButton_elevation @see #FloatingActionButton_fabSize @see #FloatingActionButton_pressedTranslationZ @see #FloatingActionButton_rippleColor @see #FloatingActionButton_useCompatPadding */ public static final int[] FloatingActionButton = { 0x7f01001a, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f010118, 0x7f010119 }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#backgroundTint} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:backgroundTint */ public static final int FloatingActionButton_backgroundTint = 6; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#backgroundTintMode} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name org.sonarqube.helloworldandroid:backgroundTintMode */ public static final int FloatingActionButton_backgroundTintMode = 7; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#borderWidth} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:borderWidth */ public static final int FloatingActionButton_borderWidth = 4; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#elevation} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:elevation */ public static final int FloatingActionButton_elevation = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#fabSize} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>mini</code></td><td>1</td><td></td></tr> </table> @attr name org.sonarqube.helloworldandroid:fabSize */ public static final int FloatingActionButton_fabSize = 2; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#pressedTranslationZ} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:pressedTranslationZ */ public static final int FloatingActionButton_pressedTranslationZ = 3; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#rippleColor} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:rippleColor */ public static final int FloatingActionButton_rippleColor = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#useCompatPadding} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:useCompatPadding */ public static final int FloatingActionButton_useCompatPadding = 5; /** Attributes that can be used with a ForegroundLinearLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding org.sonarqube.helloworldandroid:foregroundInsidePadding}</code></td><td></td></tr> </table> @see #ForegroundLinearLayout_android_foreground @see #ForegroundLinearLayout_android_foregroundGravity @see #ForegroundLinearLayout_foregroundInsidePadding */ public static final int[] ForegroundLinearLayout = { 0x01010109, 0x01010200, 0x7f0100c1 }; /** <p>This symbol is the offset where the {@link android.R.attr#foreground} attribute's value can be found in the {@link #ForegroundLinearLayout} array. @attr name android:foreground */ public static final int ForegroundLinearLayout_android_foreground = 0; /** <p>This symbol is the offset where the {@link android.R.attr#foregroundGravity} attribute's value can be found in the {@link #ForegroundLinearLayout} array. @attr name android:foregroundGravity */ public static final int ForegroundLinearLayout_android_foregroundGravity = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#foregroundInsidePadding} attribute's value can be found in the {@link #ForegroundLinearLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:foregroundInsidePadding */ public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; /** Attributes that can be used with a LinearLayoutCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_divider org.sonarqube.helloworldandroid:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding org.sonarqube.helloworldandroid:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild org.sonarqube.helloworldandroid:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers org.sonarqube.helloworldandroid: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, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4 }; /** <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 org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid: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 org.sonarqube.helloworldandroid:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass org.sonarqube.helloworldandroid:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass org.sonarqube.helloworldandroid: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 org.sonarqube.helloworldandroid: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, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:actionLayout */ public static final int MenuItem_actionLayout = 14; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:actionProviderClass */ public static final int MenuItem_actionProviderClass = 16; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid: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 org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid: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 org.sonarqube.helloworldandroid: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, 0x7f0100c9 }; /** <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 org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** Attributes that can be used with a NavigationView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_elevation org.sonarqube.helloworldandroid:elevation}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_headerLayout org.sonarqube.helloworldandroid:headerLayout}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemBackground org.sonarqube.helloworldandroid:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemIconTint org.sonarqube.helloworldandroid:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextAppearance org.sonarqube.helloworldandroid:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextColor org.sonarqube.helloworldandroid:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_menu org.sonarqube.helloworldandroid:menu}</code></td><td></td></tr> </table> @see #NavigationView_android_background @see #NavigationView_android_fitsSystemWindows @see #NavigationView_android_maxWidth @see #NavigationView_elevation @see #NavigationView_headerLayout @see #NavigationView_itemBackground @see #NavigationView_itemIconTint @see #NavigationView_itemTextAppearance @see #NavigationView_itemTextColor @see #NavigationView_menu */ public static final int[] NavigationView = { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #NavigationView} array. @attr name android:background */ public static final int NavigationView_android_background = 0; /** <p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} attribute's value can be found in the {@link #NavigationView} array. @attr name android:fitsSystemWindows */ public static final int NavigationView_android_fitsSystemWindows = 1; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #NavigationView} array. @attr name android:maxWidth */ public static final int NavigationView_android_maxWidth = 2; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#elevation} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:elevation */ public static final int NavigationView_elevation = 3; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#headerLayout} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:headerLayout */ public static final int NavigationView_headerLayout = 9; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#itemBackground} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:itemBackground */ public static final int NavigationView_itemBackground = 7; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#itemIconTint} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:itemIconTint */ public static final int NavigationView_itemIconTint = 5; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#itemTextAppearance} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:itemTextAppearance */ public static final int NavigationView_itemTextAppearance = 8; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#itemTextColor} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:itemTextColor */ public static final int NavigationView_itemTextColor = 6; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#menu} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:menu */ public static final int NavigationView_menu = 4; /** Attributes that can be used with a PopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_overlapAnchor org.sonarqube.helloworldandroid:overlapAnchor}</code></td><td></td></tr> </table> @see #PopupWindow_android_popupBackground @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { 0x01010176, 0x7f0100d0 }; /** <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 org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid: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 org.sonarqube.helloworldandroid:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f0100d1 }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor = 0; /** Attributes that can be used with a RecyclerView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_layoutManager org.sonarqube.helloworldandroid:layoutManager}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_reverseLayout org.sonarqube.helloworldandroid:reverseLayout}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_spanCount org.sonarqube.helloworldandroid:spanCount}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_stackFromEnd org.sonarqube.helloworldandroid:stackFromEnd}</code></td><td></td></tr> </table> @see #RecyclerView_android_orientation @see #RecyclerView_layoutManager @see #RecyclerView_reverseLayout @see #RecyclerView_spanCount @see #RecyclerView_stackFromEnd */ public static final int[] RecyclerView = { 0x010100c4, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5 }; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:orientation */ public static final int RecyclerView_android_orientation = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#layoutManager} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:layoutManager */ public static final int RecyclerView_layoutManager = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#reverseLayout} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:reverseLayout */ public static final int RecyclerView_reverseLayout = 3; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#spanCount} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:spanCount */ public static final int RecyclerView_spanCount = 2; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#stackFromEnd} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:stackFromEnd */ public static final int RecyclerView_stackFromEnd = 4; /** Attributes that can be used with a ScrimInsetsFrameLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground org.sonarqube.helloworldandroid:insetForeground}</code></td><td></td></tr> </table> @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout = { 0x7f0100d6 }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#insetForeground} attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name org.sonarqube.helloworldandroid:insetForeground */ public static final int ScrimInsetsFrameLayout_insetForeground = 0; /** Attributes that can be used with a ScrollingViewBehavior_Params. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ScrollingViewBehavior_Params_behavior_overlapTop org.sonarqube.helloworldandroid:behavior_overlapTop}</code></td><td></td></tr> </table> @see #ScrollingViewBehavior_Params_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Params = { 0x7f0100d7 }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#behavior_overlapTop} attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:behavior_overlapTop */ public static final int ScrollingViewBehavior_Params_behavior_overlapTop = 0; /** Attributes that can be used with a SearchView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_closeIcon org.sonarqube.helloworldandroid:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon org.sonarqube.helloworldandroid:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint org.sonarqube.helloworldandroid:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon org.sonarqube.helloworldandroid:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault org.sonarqube.helloworldandroid:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout org.sonarqube.helloworldandroid:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground org.sonarqube.helloworldandroid:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint org.sonarqube.helloworldandroid:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon org.sonarqube.helloworldandroid:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon org.sonarqube.helloworldandroid:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground org.sonarqube.helloworldandroid:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout org.sonarqube.helloworldandroid:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon org.sonarqube.helloworldandroid: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, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 }; /** <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 org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:closeIcon */ public static final int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:commitIcon */ public static final int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:defaultQueryHint */ public static final int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:goIcon */ public static final int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:layout */ public static final int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:queryBackground */ public static final int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:queryHint */ public static final int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:searchHintIcon */ public static final int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:searchIcon */ public static final int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:submitBackground */ public static final int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:voiceIcon */ public static final int SearchView_voiceIcon = 12; /** Attributes that can be used with a SnackbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_elevation org.sonarqube.helloworldandroid:elevation}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth org.sonarqube.helloworldandroid:maxActionInlineWidth}</code></td><td></td></tr> </table> @see #SnackbarLayout_android_maxWidth @see #SnackbarLayout_elevation @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout = { 0x0101011f, 0x7f01001a, 0x7f0100e5 }; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SnackbarLayout} array. @attr name android:maxWidth */ public static final int SnackbarLayout_android_maxWidth = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#elevation} attribute's value can be found in the {@link #SnackbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:elevation */ public static final int SnackbarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#maxActionInlineWidth} attribute's value can be found in the {@link #SnackbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:maxActionInlineWidth */ public static final int SnackbarLayout_maxActionInlineWidth = 2; /** Attributes that can be used with a Spinner. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_popupTheme org.sonarqube.helloworldandroid:popupTheme}</code></td><td></td></tr> </table> @see #Spinner_android_dropDownWidth @see #Spinner_android_entries @see #Spinner_android_popupBackground @see #Spinner_android_prompt @see #Spinner_popupTheme */ public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 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 = 3; /** <p>This symbol is the offset where the {@link android.R.attr#entries} attribute's value can be found in the {@link #Spinner} array. @attr name android:entries */ public static final int Spinner_android_entries = 0; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #Spinner} array. @attr name android:popupBackground */ public static final int Spinner_android_popupBackground = 1; /** <p>This symbol is the offset where the {@link android.R.attr#prompt} attribute's value can be found in the {@link #Spinner} array. @attr name android:prompt */ public static final int Spinner_android_prompt = 2; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:popupTheme */ public static final int Spinner_popupTheme = 4; /** Attributes that can be used with a SwitchCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_showText org.sonarqube.helloworldandroid:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack org.sonarqube.helloworldandroid:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth org.sonarqube.helloworldandroid:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding org.sonarqube.helloworldandroid:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance org.sonarqube.helloworldandroid:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding org.sonarqube.helloworldandroid:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track org.sonarqube.helloworldandroid: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, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec }; /** <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 org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:showText */ public static final int SwitchCompat_showText = 9; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:splitTrack */ public static final int SwitchCompat_splitTrack = 8; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 6; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:switchPadding */ public static final int SwitchCompat_switchPadding = 7; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 5; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 4; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:track */ public static final int SwitchCompat_track = 3; /** Attributes that can be used with a TabItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr> </table> @see #TabItem_android_icon @see #TabItem_android_layout @see #TabItem_android_text */ public static final int[] TabItem = { 0x01010002, 0x010100f2, 0x0101014f }; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #TabItem} array. @attr name android:icon */ public static final int TabItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #TabItem} array. @attr name android:layout */ public static final int TabItem_android_layout = 1; /** <p>This symbol is the offset where the {@link android.R.attr#text} attribute's value can be found in the {@link #TabItem} array. @attr name android:text */ public static final int TabItem_android_text = 2; /** Attributes that can be used with a TabLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TabLayout_tabBackground org.sonarqube.helloworldandroid:tabBackground}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabContentStart org.sonarqube.helloworldandroid:tabContentStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabGravity org.sonarqube.helloworldandroid:tabGravity}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorColor org.sonarqube.helloworldandroid:tabIndicatorColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorHeight org.sonarqube.helloworldandroid:tabIndicatorHeight}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMaxWidth org.sonarqube.helloworldandroid:tabMaxWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMinWidth org.sonarqube.helloworldandroid:tabMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMode org.sonarqube.helloworldandroid:tabMode}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPadding org.sonarqube.helloworldandroid:tabPadding}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingBottom org.sonarqube.helloworldandroid:tabPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingEnd org.sonarqube.helloworldandroid:tabPaddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingStart org.sonarqube.helloworldandroid:tabPaddingStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingTop org.sonarqube.helloworldandroid:tabPaddingTop}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabSelectedTextColor org.sonarqube.helloworldandroid:tabSelectedTextColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextAppearance org.sonarqube.helloworldandroid:tabTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextColor org.sonarqube.helloworldandroid:tabTextColor}</code></td><td></td></tr> </table> @see #TabLayout_tabBackground @see #TabLayout_tabContentStart @see #TabLayout_tabGravity @see #TabLayout_tabIndicatorColor @see #TabLayout_tabIndicatorHeight @see #TabLayout_tabMaxWidth @see #TabLayout_tabMinWidth @see #TabLayout_tabMode @see #TabLayout_tabPadding @see #TabLayout_tabPaddingBottom @see #TabLayout_tabPaddingEnd @see #TabLayout_tabPaddingStart @see #TabLayout_tabPaddingTop @see #TabLayout_tabSelectedTextColor @see #TabLayout_tabTextAppearance @see #TabLayout_tabTextColor */ public static final int[] TabLayout = { 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc }; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabBackground} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:tabBackground */ public static final int TabLayout_tabBackground = 3; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabContentStart} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:tabContentStart */ public static final int TabLayout_tabContentStart = 2; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabGravity} attribute's value can be found in the {@link #TabLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>fill</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> </table> @attr name org.sonarqube.helloworldandroid:tabGravity */ public static final int TabLayout_tabGravity = 5; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabIndicatorColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:tabIndicatorColor */ public static final int TabLayout_tabIndicatorColor = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabIndicatorHeight} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:tabIndicatorHeight */ public static final int TabLayout_tabIndicatorHeight = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabMaxWidth} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:tabMaxWidth */ public static final int TabLayout_tabMaxWidth = 7; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabMinWidth} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:tabMinWidth */ public static final int TabLayout_tabMinWidth = 6; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabMode} attribute's value can be found in the {@link #TabLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scrollable</code></td><td>0</td><td></td></tr> <tr><td><code>fixed</code></td><td>1</td><td></td></tr> </table> @attr name org.sonarqube.helloworldandroid:tabMode */ public static final int TabLayout_tabMode = 4; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabPadding} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:tabPadding */ public static final int TabLayout_tabPadding = 15; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabPaddingBottom} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:tabPaddingBottom */ public static final int TabLayout_tabPaddingBottom = 14; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabPaddingEnd} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:tabPaddingEnd */ public static final int TabLayout_tabPaddingEnd = 13; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabPaddingStart} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:tabPaddingStart */ public static final int TabLayout_tabPaddingStart = 11; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabPaddingTop} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:tabPaddingTop */ public static final int TabLayout_tabPaddingTop = 12; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabSelectedTextColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:tabSelectedTextColor */ public static final int TabLayout_tabSelectedTextColor = 10; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabTextAppearance} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:tabTextAppearance */ public static final int TabLayout_tabTextAppearance = 8; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#tabTextColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:tabTextColor */ public static final int TabLayout_tabTextColor = 9; /** Attributes that can be used with a TextAppearance. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextAppearance_android_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 org.sonarqube.helloworldandroid: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, 0x7f010028 }; /** <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 org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:textAllCaps */ public static final int TextAppearance_textAllCaps = 8; /** Attributes that can be used with a TextInputLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterEnabled org.sonarqube.helloworldandroid:counterEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterMaxLength org.sonarqube.helloworldandroid:counterMaxLength}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance org.sonarqube.helloworldandroid:counterOverflowTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterTextAppearance org.sonarqube.helloworldandroid:counterTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorEnabled org.sonarqube.helloworldandroid:errorEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorTextAppearance org.sonarqube.helloworldandroid:errorTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled org.sonarqube.helloworldandroid:hintAnimationEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintEnabled org.sonarqube.helloworldandroid:hintEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintTextAppearance org.sonarqube.helloworldandroid:hintTextAppearance}</code></td><td></td></tr> </table> @see #TextInputLayout_android_hint @see #TextInputLayout_android_textColorHint @see #TextInputLayout_counterEnabled @see #TextInputLayout_counterMaxLength @see #TextInputLayout_counterOverflowTextAppearance @see #TextInputLayout_counterTextAppearance @see #TextInputLayout_errorEnabled @see #TextInputLayout_errorTextAppearance @see #TextInputLayout_hintAnimationEnabled @see #TextInputLayout_hintEnabled @see #TextInputLayout_hintTextAppearance */ public static final int[] TextInputLayout = { 0x0101009a, 0x01010150, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105 }; /** <p>This symbol is the offset where the {@link android.R.attr#hint} attribute's value can be found in the {@link #TextInputLayout} array. @attr name android:hint */ public static final int TextInputLayout_android_hint = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textColorHint} attribute's value can be found in the {@link #TextInputLayout} array. @attr name android:textColorHint */ public static final int TextInputLayout_android_textColorHint = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#counterEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:counterEnabled */ public static final int TextInputLayout_counterEnabled = 6; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#counterMaxLength} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:counterMaxLength */ public static final int TextInputLayout_counterMaxLength = 7; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#counterOverflowTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:counterOverflowTextAppearance */ public static final int TextInputLayout_counterOverflowTextAppearance = 9; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#counterTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:counterTextAppearance */ public static final int TextInputLayout_counterTextAppearance = 8; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#errorEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:errorEnabled */ public static final int TextInputLayout_errorEnabled = 4; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#errorTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:errorTextAppearance */ public static final int TextInputLayout_errorTextAppearance = 5; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#hintAnimationEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:hintAnimationEnabled */ public static final int TextInputLayout_hintAnimationEnabled = 10; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#hintEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name org.sonarqube.helloworldandroid:hintEnabled */ public static final int TextInputLayout_hintEnabled = 3; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.R.attr#hintTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name org.sonarqube.helloworldandroid:hintTextAppearance */ public static final int TextInputLayout_hintTextAppearance = 2; /** 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 org.sonarqube.helloworldandroid:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon org.sonarqube.helloworldandroid:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd org.sonarqube.helloworldandroid:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft org.sonarqube.helloworldandroid:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight org.sonarqube.helloworldandroid:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart org.sonarqube.helloworldandroid:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo org.sonarqube.helloworldandroid:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription org.sonarqube.helloworldandroid:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight org.sonarqube.helloworldandroid:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription org.sonarqube.helloworldandroid:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon org.sonarqube.helloworldandroid:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme org.sonarqube.helloworldandroid:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle org.sonarqube.helloworldandroid:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance org.sonarqube.helloworldandroid:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor org.sonarqube.helloworldandroid:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title org.sonarqube.helloworldandroid:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom org.sonarqube.helloworldandroid:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd org.sonarqube.helloworldandroid:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart org.sonarqube.helloworldandroid:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop org.sonarqube.helloworldandroid:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins org.sonarqube.helloworldandroid:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance org.sonarqube.helloworldandroid:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor org.sonarqube.helloworldandroid: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, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114 }; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #Toolbar} array. @attr name android:gravity */ public static final int Toolbar_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #Toolbar} array. @attr name android:minHeight */ public static final int Toolbar_android_minHeight = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 19; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:collapseIcon */ public static final int Toolbar_collapseIcon = 18; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:contentInsetRight */ public static final int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:contentInsetStart */ public static final int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:logo */ public static final int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:logoDescription */ public static final int Toolbar_logoDescription = 22; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 17; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 21; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:navigationIcon */ public static final int Toolbar_navigationIcon = 20; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:popupTheme */ public static final int Toolbar_popupTheme = 9; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 11; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:subtitleTextColor */ public static final int Toolbar_subtitleTextColor = 24; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:title */ public static final int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 16; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 14; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:titleMarginStart */ public static final int Toolbar_titleMarginStart = 13; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:titleMarginTop */ public static final int Toolbar_titleMarginTop = 15; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:titleMargins */ public static final int Toolbar_titleMargins = 12; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 10; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid: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 org.sonarqube.helloworldandroid:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart org.sonarqube.helloworldandroid:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme org.sonarqube.helloworldandroid:theme}</code></td><td></td></tr> </table> @see #View_android_focusable @see #View_android_theme @see #View_paddingEnd @see #View_paddingStart @see #View_theme */ public static final int[] View = { 0x01010000, 0x010100da, 0x7f010115, 0x7f010116, 0x7f010117 }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #View} array. @attr name android:focusable */ public static final int View_android_focusable = 1; /** <p>This symbol is the offset where the {@link android.R.attr#theme} attribute's value can be found in the {@link #View} array. @attr name android:theme */ public static final int View_android_theme = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:paddingEnd */ public static final int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:paddingStart */ public static final int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid: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 org.sonarqube.helloworldandroid:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode org.sonarqube.helloworldandroid:backgroundTintMode}</code></td><td></td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010118, 0x7f010119 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #ViewBackgroundHelper} array. @attr name android:background */ public static final int ViewBackgroundHelper_android_background = 0; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link org.sonarqube.helloworldandroid.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 org.sonarqube.helloworldandroid: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; }; }
[ "mi.herinjaka@gmail.com" ]
mi.herinjaka@gmail.com
e0622c9d5e10f64a18930c3852560d8c6806c3b7
83ccd81ac7377939b8cd008bd6f1f26288fbc50b
/Programing Basic Java 2018/ProgrammingBasicsMay2018/src/Nums1To20.java
84cdda5ec0a79fee7cde57481b37e39f67ec0308
[]
no_license
HristoStavrev89/SoftUni
2b1f84252a5963cfddd3a133a9c97881579ab859
b28802332d7c3ea9da767ee37553521ea5c6b91f
refs/heads/master
2022-11-25T07:08:53.313418
2020-12-05T08:57:45
2020-12-05T08:57:45
253,452,274
0
0
null
2020-04-06T09:47:32
2020-04-06T09:31:23
Java
UTF-8
Java
false
false
709
java
public class Nums1To20 { public static void main(String[] args) { System.out.println(1); System.out.println(2); System.out.println(3); System.out.println(4); System.out.println(5); System.out.println(6); System.out.println(7); System.out.println(8); System.out.println(9); System.out.println(10); System.out.println(11); System.out.println(12); System.out.println(13); System.out.println(14); System.out.println(15); System.out.println(16); System.out.println(17); System.out.println(18); System.out.println(19); System.out.println(20); } }
[ "hristo.stavrev@yahoo.com" ]
hristo.stavrev@yahoo.com
b820097c0f2f8fa3f7b7379a1fc073a93bc7d76e
e044f1e94835abb6e57f7d1ff6ca6e87b36c365b
/api/src/main/java/com/ulfric/turtle/GET.java
77034f44fe32fb4c699fd39d4b84d1429570977b
[]
no_license
ulfricarchive/turtle
a7cfceb97dc19ad3ddd3c347adcc42056d3ad791
ec5103e2179f0deec2609b230ad912a989c218c2
refs/heads/master
2021-03-27T18:39:13.020787
2017-01-31T10:47:48
2017-01-31T10:47:48
80,331,156
0
0
null
null
null
null
UTF-8
Java
false
false
280
java
package com.ulfric.turtle; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface GET { }
[ "ad@mharrison.us" ]
ad@mharrison.us
9196d98be2c16aac206ff9ba9f3f1a4082ed524e
9277c804098a3593ac441f105205682b1280c9ed
/app/src/main/java/hackathon_16_npt/com/example/nishant/projects/DiscussionsAdapter.java
54cfbdae7cfc4ff9f8dce7a3df2ef7fe1b4d03a2
[]
no_license
titoghose/requiry
c3f453869000beeba0c3baaf3875ce3fa1458441
78ea4a3f06ea6542206ec6a6f32269d827fd1209
refs/heads/master
2021-05-03T22:42:00.296657
2016-10-23T01:02:53
2016-10-23T01:02:53
71,651,821
2
1
null
null
null
null
UTF-8
Java
false
false
1,517
java
package hackathon_16_npt.com.example.nishant.projects; /** * Created by Work on 03/10/16. */ import android.app.Activity; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.TextView; public class DiscussionsAdapter extends ArrayAdapter<Discussions>{ Context mContext; //Adapter context int mLayoutResourceId; //Adapter View Layout /* ResearchProjectAdapter that calls constructor of ArrayAdapter with mContext and mLayoutResourceId as parameters */ public DiscussionsAdapter(Context context, int layoutResourceId) { super(context, layoutResourceId); mContext = context; mLayoutResourceId = layoutResourceId; } // Returns view of one item @Override public View getView(int position, View convertView, ViewGroup parent) { View row = convertView; final Discussions currentItem = getItem(position); if (row == null) { LayoutInflater inflater = ((Activity) mContext).getLayoutInflater(); row = inflater.inflate(mLayoutResourceId, parent, false); } row.setTag(currentItem); final TextView tv1 = (TextView) row.findViewById(R.id.username); tv1.setText(currentItem.getUsername()); final TextView tv2 = (TextView) row.findViewById(R.id.message); tv2.setText(currentItem.getMessage()); return row; } }
[ "titoghose@gmail.com" ]
titoghose@gmail.com
a5af5bf398295929cff4514752fe26099df0c7b4
2ed796459754d8582ed72caecb4d28e42e57ca40
/Holo/src/main/java/com/holo/vo/BistroPageMaker.java
4becbf361984c3626270648d4d2284f56aaef0aa
[]
no_license
auviolet/Holo
922fa49f5238f812f48b61b5cbfb7f9dbf929d95
380bd3c113942421fb42973b1ab97bc95894a428
refs/heads/master
2021-05-07T07:28:11.021970
2017-11-01T12:45:30
2017-11-01T12:45:30
109,129,733
1
0
null
null
null
null
UTF-8
Java
false
false
2,134
java
package com.holo.vo; import org.springframework.web.util.UriComponents; import org.springframework.web.util.UriComponentsBuilder; public class BistroPageMaker { private int totalCount; private int startPage; private int endPage; private boolean prev; private boolean next; private int displayPageNum = 10; // 화면에 보여지는 페이지 번호의 숫자. private BistroCriteria cri; public void setCri(BistroCriteria cri) { this.cri = cri; } public void setTotalCount(int totalCount) { this.totalCount = totalCount; calcData(); } private void calcData() { endPage = (int) (Math.ceil(cri.getPage() / (double) displayPageNum) * displayPageNum); startPage = (endPage - displayPageNum) + 1; int tempEndPage = (int) (Math.ceil(totalCount / (double) cri.getPerPageNum())); if (endPage > tempEndPage) { endPage = tempEndPage; } prev = startPage == 1 ? false : true; next = endPage * cri.getPerPageNum() >= totalCount ? false : true; } public int getTotalCount() { return totalCount; } public int getStartPage() { return startPage; } public int getEndPage() { return endPage; } public boolean isPrev() { return prev; } public boolean isNext() { return next; } public int getDisplayPageNum() { return displayPageNum; } public BistroCriteria getCri() { return cri; } public String makeQuery(int page) { UriComponents uriComponents = UriComponentsBuilder.newInstance().queryParam("page", page) .queryParam("perPageNum", cri.getPerPageNum()).build(); return uriComponents.toUriString(); } public String makeSearch(int page){ UriComponents uriComponents = UriComponentsBuilder.newInstance() .queryParam("page", page) .queryParam("perPageNum", cri.getPerPageNum()) .build(); return uriComponents.toUriString(); } }
[ "you@example.com" ]
you@example.com
fdda67e672185921b285056b05957a78062076c6
d07b7b60e87df15a0c4732660c550d7bdd8c63f7
/1.JavaSyntax/src/com/javarush/task/task04/task0413/Solution.java
0a558f7de46a397bb028ccf6cfc6c85c09a73267
[]
no_license
udovitskiy/JavaRushTasks
594a2c3306fd48b5c61d90aa01c26215b4109949
bd84a018fef281efbebd8d479cb1a6ada63bca95
refs/heads/master
2022-04-03T12:57:21.826035
2019-10-16T05:37:33
2019-10-16T05:37:33
215,249,371
0
0
null
null
null
null
UTF-8
Java
false
false
1,302
java
package com.javarush.task.task04.task0413; /* День недели */ import java.io.*; import java.util.*; public class Solution { public static void main(String[] args) throws Exception { //напишите тут ваш код BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); printDayOfTheWeek(Integer.parseInt(reader.readLine())); } public static void printDayOfTheWeek(int i) { switch (i) { case 1: System.out.println("понедельник"); break; case 2: System.out.println("вторник"); break; case 3: System.out.println("среда"); break; case 4: System.out.println("четверг"); break; case 5: System.out.println("пятница"); break; case 6: System.out.println("суббота"); break; case 7: System.out.println("воскресенье"); break; default: System.out.println("такого дня недели не существует"); } } }
[ "ivan.udovitskiy@yandex.ru" ]
ivan.udovitskiy@yandex.ru
f3f8e7e5917514c7d7f6dbd672bfe2883ef088b3
7b93297194a1f037388ac94b6bffd20713d5ac7e
/BackEnd/src/main/java/eu/composition/bpmnmonitor/processhandling/BackEnd.java
7a6ddebff9106fec3e4fbb59310ba396ff825510
[ "Apache-2.0" ]
permissive
composition-project/bpmn-monitoring-framework
6a0d1821e4ca620433b6f0bda5a604019c350645
dc1957792bbf70c956344b1888bf2dd791d740b4
refs/heads/master
2020-05-05T02:33:17.921552
2019-04-05T09:56:47
2019-04-05T09:56:47
179,641,945
0
0
null
null
null
null
UTF-8
Java
false
false
2,464
java
package eu.composition.bpmnmonitor.processhandling; import eu.composition.bpmnmonitor.messaging.MachineStatus; import eu.composition.bpmnmonitor.messaging.ProcessStatus; import java.time.LocalDateTime; import java.time.ZoneId; import java.time.format.DateTimeFormatter; import java.util.ArrayList; import java.util.Random; public class BackEnd { private String bpmnModel; private int[] processedNumbers; private int[] previousOnOffStatus; private LocalDateTime dateTime; private ZoneId zoneId; public BackEnd() { bpmnModel = ""; processedNumbers = new int[] {0,0,0,0,0,0,0}; previousOnOffStatus = new int[] {0,0,0,0,0,0,0}; dateTime = LocalDateTime.now(); zoneId = ZoneId.systemDefault(); } public String getBpmnModel(){ return bpmnModel; } public boolean setBpmnModel(String m){ bpmnModel = m; return true; } public ProcessStatus getStatus() { ProcessStatus ps = new ProcessStatus(); dateTime = dateTime.plusMinutes(1); dateTime = dateTime.plusSeconds(27); ps.setTime(dateTime.atZone(zoneId).toEpochSecond()); //ps.setTime(dateTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"))); ArrayList<MachineStatus> machineList = new ArrayList<MachineStatus>(); for(int i=1; i < 8; i++){ MachineStatus ms = new MachineStatus(); Random rand = new Random(); ms.setName("machine_" + i); if(previousOnOffStatus[i-1] == 0) { if((i-1)==0){ processedNumbers[i-1] ++; } else { processedNumbers[i-1] = (processedNumbers[i-2]-1) > processedNumbers[i-1]? processedNumbers[i-1] + 1:processedNumbers[i-1]; } } Float onOffStatusRdn = rand.nextFloat(); if(onOffStatusRdn < 0.92) { ms.setOnOffStatus(0); previousOnOffStatus[i-1] = 0; } else if (onOffStatusRdn < 0.97) { ms.setOnOffStatus(1); previousOnOffStatus[i-1] = 1; } else { ms.setOnOffStatus(2); previousOnOffStatus[i-1] = 2; } ms.setTargetNumber(1000); ms.setCurrentNumber(processedNumbers[i-1]); machineList.add(ms); } ps.setMachines(machineList); return ps; } }
[ "junhong.liang@fit.fraunhofer.de" ]
junhong.liang@fit.fraunhofer.de
15d72e9d30c7ace46bd229f5edda473bbf6576f5
55907666714e19a3fdd67a15e9a5c734fdb401aa
/src/main/java/Example.java
e8445deddb98b6ea6d53d8b3e02bccef9edaedda
[]
no_license
yujiroarai/spring-boot-velocity
c0c34d6aba6a0dcc3c89607162fd983d3f220c61
d8b62e530d225af6c0883b4b4dfa2413e189f897
refs/heads/master
2021-01-10T01:41:01.915710
2015-11-05T16:17:07
2015-11-05T16:17:07
45,621,625
0
1
null
null
null
null
UTF-8
Java
false
false
763
java
import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import com.google.common.collect.Lists; @Controller @EnableAutoConfiguration public class Example { @RequestMapping("/") String home(Model model) { model.addAttribute("fromController", "コントローラーから渡す。"); model.addAttribute("list", Lists.newArrayList("リスト1", "リスト2", "リスト3")); return "hello"; } public static void main(String[] args) throws Exception { SpringApplication.run(Example.class, args); } }
[ "yujiroarai@gmail.com" ]
yujiroarai@gmail.com
64dd93f344e03cda240192c87aa4aa7bc9d2791b
2746c60061db69c34d6959b0c215634b53122782
/SpringBoot-full-config-starter-project-master1/src/main/java/com/roma/service/BooksService.java
7ec896bcde6689289efd0830f5a992d6c425201f
[]
no_license
ppzromko/BooksShopProject
fce13fcd43261658f9870c7bfcdb895fc8a72a11
9a17da3e5cc75dc50e3e1e524bcafffb2ad0a7eb
refs/heads/master
2021-04-18T20:14:52.971096
2018-03-27T17:19:22
2018-03-27T17:19:22
126,511,619
0
0
null
null
null
null
UTF-8
Java
false
false
236
java
package com.roma.service; import java.util.List; import com.roma.entity.UserEntity; public interface BooksService { void saveBook(UserEntity entity); UserEntity findBookByGenre(String genre); List<UserEntity> findAllBook(); }
[ "ppzromko@gmail.com" ]
ppzromko@gmail.com
c1e0490a5425dc3bcdbcc6ec28a9dd3b7701f51f
558eba97fa12cdf52984ba5c297bf131e6b9ebf2
/server/icard版sfs2xjar包源码/src/com/smartfoxserver/v2/entities/managers/IBannedUserStorage.java
7bd6c821d1c50c12eeddce5835c410860265fea2
[]
no_license
hoangnq154/i-card-v1
459ebc032fc94bd8354005cd33f2d82af5d78418
cd33c4917f22a08dd4a61a68fa5c95b1efb2cacf
refs/heads/master
2021-05-28T23:28:17.014355
2012-11-16T02:47:04
2012-11-16T02:47:04
null
0
0
null
null
null
null
UTF-8
Java
false
false
530
java
package com.smartfoxserver.v2.entities.managers; import java.io.IOException; public abstract interface IBannedUserStorage { public abstract void init(); public abstract void destroy(); public abstract BanUserData load() throws Exception; public abstract void save(BanUserData paramBanUserData) throws IOException; } /* Location: C:\work\card\server\jars\sfs2x.jar * Qualified Name: com.smartfoxserver.v2.entities.managers.IBannedUserStorage * JD-Core Version: 0.6.0 */
[ "ufoism@gmail.com" ]
ufoism@gmail.com
447ef1c253f726d89d2af3d54f3ffdb5830f59ec
478d05607f26446bde03948ab284a65058009b19
/projetof1TCCv1/BASE-web/src/qcs/base/lov/web/mb/LovBrinquedoMB.java
1b7fd6a1c8af7e5ec3813770a471de08ebbc0c11
[]
no_license
herberton/projetof1
865ed0a6ab54ecf6ffe177162933c946ddc724b8
00e27e7a1bc77a7c2ece7f326279858fc35b1b22
refs/heads/master
2021-01-22T06:54:39.320563
2010-12-04T22:57:38
2010-12-04T22:57:38
33,141,526
0
0
null
null
null
null
UTF-8
Java
false
false
3,087
java
package qcs.base.lov.web.mb; import java.util.HashMap; import java.util.Map; import qcs.base.lov.web.dataprov.LovBrinquedoDataProvider; import qcs.base.negocio.Brinquedo; import qcs.base.negocio.web.dataprov.BrinquedoDataProvider; import qcs.base.web.message.GeneralMessagesUtil; import qcs.datamodel.BaseMB; public class LovBrinquedoMB extends BaseMB{ private static final long serialVersionUID = 1L; private BrinquedoDataProvider dataProvider; private Map<String, Object> atributosFiltros; private Long idBrinquedoSelecionado; private String exibir; private Brinquedo brinquedo; //Filtros da tela de pesquisa private String nomeBrinquedo; private LovBrinquedoDataProvider lovBrinquedoDataProvider; @Override public void adicionar() { // TODO Auto-generated method stub } @Override protected void clear() { // TODO Auto-generated method stub } @Override public void editar() { // TODO Auto-generated method stub } @Override public void excluir() { // TODO Auto-generated method stub } @Override public void salvar() { // TODO Auto-generated method stub } public Map<String, Object> getAtributosFiltros(){ if(atributosFiltros == null)atributosFiltros = new HashMap<String, Object>(); atributosFiltros.remove("nomeBrinquedo"); atributosFiltros.put("nomeBrinquedo", (nomeBrinquedo == null ? "" : nomeBrinquedo)); return atributosFiltros; } public void setAtributosFiltros(Map<String, Object> atributosFiltros) { this.atributosFiltros = atributosFiltros; } public BrinquedoDataProvider getDataProvider() { return dataProvider; } public void setDataProvider(BrinquedoDataProvider dataProvider) { this.dataProvider = dataProvider; } public Long getIdBrinquedoSelecionado() { return idBrinquedoSelecionado; } public void setIdBrinquedoSelecionado(Long idBrinquedoSelecionado) { this.idBrinquedoSelecionado = idBrinquedoSelecionado; } public String getExibir() { return exibir; } public void setExibir(String exibir) { this.exibir = exibir; } public Brinquedo getBrinquedo() { return brinquedo; } public void setBrinquedo(Brinquedo brinquedo) { this.brinquedo = brinquedo; } public String getNomeBrinquedo() { return nomeBrinquedo; } public void setNomeBrinquedo(String nomeBrinquedo) { System.out.println("NOME BRINQUEDO PARAMETRO" + nomeBrinquedo); this.nomeBrinquedo = nomeBrinquedo; } public Brinquedo getBrinquedoById(){ try{ return getDataProvider().consultar(getIdBrinquedoSelecionado()); }catch(Exception e){ mensagem = GeneralMessagesUtil.criarMensagemErroApartirDe(e, "Erro ao carregar brinquedo selecionada: "+idBrinquedoSelecionado); } return null; } public LovBrinquedoDataProvider getLovBrinquedoDataProvider() { return lovBrinquedoDataProvider; } public void setLovBrinquedoDataProvider( LovBrinquedoDataProvider lovBrinquedoDataProvider) { this.lovBrinquedoDataProvider = lovBrinquedoDataProvider; } }
[ "ricardomirandamedina@gmail.com@ce33ccc2-3d83-6728-6919-ba1b5b4f86a8" ]
ricardomirandamedina@gmail.com@ce33ccc2-3d83-6728-6919-ba1b5b4f86a8