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
ee8da4da3552cfbf57267dde6cbfc28538d60695
6ebbdc1b1464c978082f755dd5e526c58323baee
/java/i5/las2peer/execution/NoSuchServiceMethodException.java
c64de1cf793714fe592cb53acb54652299fbfb76
[ "MIT" ]
permissive
AlexRuppert/las2peer_project
d346187874955205c2a526c3892706f2cf522c71
ea39bb351ed1c720fc1cf8be09f8938144c43d67
refs/heads/master
2021-01-18T14:58:18.051872
2013-12-19T02:39:27
2013-12-19T02:39:27
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,587
java
package i5.las2peer.execution; /** * exception thrown on a service method invocation, if the requested * method is not implemented at the given service * * @author Holger Janßen * */ public class NoSuchServiceMethodException extends ServiceInvocationException { /** * */ private static final long serialVersionUID = 200278355961032834L; private String method; private String service; private String parameterString; /** * create a new exception instance * * @param serviceClass the class of the service causing the problems * @param method name of not existing method */ public NoSuchServiceMethodException ( String serviceClass, String method ) { super ( "The method '" + method + "' of service '" + serviceClass + "' does not exist"); this.service = serviceClass; this.method = method; } /** * create a new exception instance * * @param serviceClass the class of the service causing the problems * @param method name of not existing method * @param parameterString description of the requested parameters */ public NoSuchServiceMethodException ( String serviceClass, String method, String parameterString ) { super ( "The method '" + method + " " + parameterString +"' of service '" + serviceClass + "' does not exist"); this.service = serviceClass; this.method = method; this.parameterString = parameterString; } public String getServiceClass () { return service; } public String getMethod () { return method; } public String getParateterString () { return parameterString; } }
[ "sumpfkrautjunkie@googlemail.com" ]
sumpfkrautjunkie@googlemail.com
10e570a12fca1d60dc6d0559b0dcb4a9a7a9d90f
c5fbec8c02de8a2925af1f98438726e794b0fe3c
/lightning.datacenter/src/main/java/com/lightning/datacenter/manager/DataImporterManager.java
dc2c525f4e8ae4b13d2ade50b3aaabb49cf0d896
[ "Apache-2.0" ]
permissive
shangV2/lightning
0fd89452d1a8f469d3bd161d1f8c21928cfed4d3
144228bc26a601fd16503ab1c66d118f0addcfe7
refs/heads/master
2020-12-24T18:51:50.347128
2016-04-13T01:38:41
2016-04-13T01:38:41
56,111,119
0
0
null
null
null
null
UTF-8
Java
false
false
918
java
package com.lightning.datacenter.manager; import java.util.ArrayList; import java.util.List; import com.lightning.datacenter.importer.QFImporter; import com.lightning.datacenter.utils.TimeUtility; public class DataImporterManager implements Runnable { private static final long DEFAULT_INTERVAL_SECONDS = 10 * 60L; private List<QFImporter> importers = new ArrayList<QFImporter>(); private long interval = DEFAULT_INTERVAL_SECONDS; @Override public void run() { do { TimeUtility.sleep(interval * 1000L); for ( QFImporter importer : importers ) { importer.process(); } } while (true); } public List<QFImporter> getImporters() { return importers; } public void setImporters(List<QFImporter> importers) { this.importers = importers; } public long getInterval() { return interval; } public void setInterval(long interval) { this.interval = interval; } }
[ "276897204@qq.com" ]
276897204@qq.com
7bf437085784381d23a20ac8acfe380122b2c686
d4544cdade08f934f5711eaa92675e0dc138ddcb
/src/main/java/com/groupal/ecommerce/service/CartShoppingService.java
3d2f521eb904c76532d5526be377fd519e37718f
[]
no_license
alvaroquispe094/ecommerce-spring-boot-security-jpa-postgresql-hibernate
8e6ca9394be1132cafe6f2a63ad64849edc096a6
d6dbf5fd01b13d96570b8846b09d3277d13fe0c0
refs/heads/master
2022-02-23T16:38:03.658807
2019-08-18T22:50:07
2019-08-18T22:50:07
197,862,826
0
0
null
null
null
null
UTF-8
Java
false
false
2,971
java
package com.groupal.ecommerce.service; import javax.servlet.http.HttpServletRequest; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Sort; import org.springframework.stereotype.Service; import com.groupal.ecommerce.model.Producto; import com.groupal.ecommerce.repository.CategoriaRepository; import com.groupal.ecommerce.repository.ProductoRepository; import com.groupal.ecommerce.resources.Utils; import com.querydsl.core.types.dsl.BooleanExpression; @Service public class CartShoppingService { @Autowired private ProductoRepository productoRepository; @Autowired private CategoriaRepository categoriaRepository; public Iterable<Producto> listAllProductos() { return productoRepository.findAll(); } public Iterable<Producto> listAllProductos(Sort sort) { return productoRepository.findAll(sort); } public Page<Producto> listAllProductosPagination(BooleanExpression predicate, Pageable pageable) { return productoRepository.findAll(predicate, pageable); } public Producto getProductoById(Integer id) { return productoRepository.findOne(id); } public Producto saveProducto(Integer id, String nombre,String descripcion,Integer stock,Double precio,String imagen,Integer idCategoria, Boolean activo) { Producto producto = null; if (id!=null){ producto = productoRepository.findOne(id); }else{ producto = new Producto(); } producto.setNombre(nombre); producto.setDescripcion(descripcion); producto.setStock(stock); producto.setPrecio(precio); producto.setImagen(imagen); producto.setCategoria(categoriaRepository.findOne(idCategoria)); producto.setActivo(activo);producto.setDescripcion(descripcion); productoRepository.save(producto); return producto; } public Producto searchProductInCart(int idProducto, HttpServletRequest request) { Producto p = null; // List<Producto> myCart = Utils.getCartInSession(request); for (Producto producto : Utils.myProducts) { if (producto.getId() == idProducto) { p = producto; break; } } return p; } public double getTotalCartShopping(HttpServletRequest request) { // List<Producto> myCart = Utils.getCartInSession(request); double total = 0 ; for(Producto producto : Utils.myProducts){ total += producto.getPrecio() * producto.getCantidad(); } return total; } public void deleteProducto(Integer id) { productoRepository.delete(id); } public void cambiarEstadoProducto(Integer idCarrera, boolean estado) { Producto producto = productoRepository.findOne(idCarrera); producto.setActivo(estado); productoRepository.save(producto); } }
[ "alvarodanielq17@gmail.com" ]
alvarodanielq17@gmail.com
0d457fcffc176946e2411ef625a62b45f77a8500
3da14f10137eff95e2457e4fe11f6d4848749f75
/Lab1/src/bharatdarren/tightlycoupled/Policeman.java
020a241aec6ee49b93ebc7775de294deac6abb24
[]
no_license
DarryQueen/PRA-Labs
35afad97373b49455d9f4bf71dd2c1521096a045
2c6811cd769b5885e23e8ecc8425692494c8bb65
refs/heads/master
2016-08-13T01:07:06.221069
2016-03-22T12:39:10
2016-03-22T12:39:10
50,914,167
0
0
null
2016-02-09T14:52:46
2016-02-02T10:52:34
null
UTF-8
Java
false
false
1,267
java
package bharatdarren.tightlycoupled; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; public class Policeman { private String name; private Set<EvidenceBox> evidenceBoxes; public Policeman(String n) { this.name = n; this.evidenceBoxes = new HashSet<EvidenceBox>(); } public void takeBox(EvidenceBox eb) { this.evidenceBoxes.add(eb); } /** * Grabs relevant evidence from the specified boxes that this policeman possesses. * * @param cnum the case number of the box to look in * @param type string type of evidence to search for * @return list of evidence that matches query */ public List<Evidence> getEvidence(int cnum, String type) { List<Evidence> evidenceList = new ArrayList<Evidence>(); for (EvidenceBox eb : evidenceBoxes) { if (cnum != eb.getCaseNumber()) { continue; } for (Evidence e : eb.extract()) { if (type.equals(e.getType())) { evidenceList.add(e); } } } return evidenceList; } @Override public String toString() { return this.name; } }
[ "slimfrog@gmail.com" ]
slimfrog@gmail.com
dff22f99e624d3250a75296009099a77c65e7f21
d602f231b1d36c4e5f3d35d1618b4faa307068b0
/src/main/java/self/WordBreak2.java
3760c30392f15232c3aa07f93df84dc8b3e379ec
[]
no_license
bigtonysayshi/challenge
54d39bba5bbe30793629771ee00ba5e6751459aa
80b59935022e84c23489ebb9a5e44166161ed1a4
refs/heads/master
2021-01-12T13:17:09.557411
2017-06-12T06:36:46
2017-06-12T06:36:46
72,179,836
0
0
null
null
null
null
UTF-8
Java
false
false
1,725
java
package self; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; /** * Given a non-empty string s and a dictionary wordDict containing a list of non-empty words, * add spaces in s to construct a sentence where each word is a valid dictionary word. * You may assume the dictionary does not contain duplicate words. Return all such possible sentences. */ public class WordBreak2 { public List<String> wordBreak(String s, List<String> wordDict) { return dfs(s, wordDict, new HashMap<>()); } private List<String> dfs( String input, List<String> dict, Map<String, List<String>> explored) { if (explored.containsKey(input)) { return explored.get(input); } List<String> results = new ArrayList<>(); if (input.length() == 0) { results.add(""); return results; } for (String word : dict) { if (input.startsWith(word)) { List<String> subs = dfs(input.substring(word.length()), dict, explored); for (String sub : subs) { results.add(word + (sub.length() == 0 ? "" : " ") + sub); } } } explored.put(input, results); return results; } public static void main(String[] args){ WordBreak2 instance = new WordBreak2(); List<String> dict = new ArrayList<String>() {{ add("cat"); add("cats"); add("and"); add("sand"); add("dog"); }}; System.out.println(instance.wordBreak("catsanddog", dict)); } }
[ "panda90926@gmail.com" ]
panda90926@gmail.com
40d46eeed52021da175c9fafbc181985b4550c73
174550f5241c55f6d4da855c14b43afef22f773f
/MvcWeb/Audomoticar/obj/Release/android/src/audomoticar/audomoticar/R.java
418bd44a75c06f90645036fa496a0199900678ba
[]
no_license
AlejandroRuiz/Audomoticar
853b01dad412b5358d2c6939f7628142d73b1f46
ed768853e7280a7fb2a410fa8b15b2aa5fb5cfd4
refs/heads/master
2020-05-16T21:49:06.454681
2014-07-26T19:20:51
2014-07-26T19:20:51
null
0
0
null
null
null
null
UTF-8
Java
false
false
20,516
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 audomoticar.audomoticar; public final class R { public static final class anim { public static final int alpha=0x7f040000; public static final int translate=0x7f040001; } public static final class attr { /** <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 ahBarColor=0x7f010003; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int ahBarLength=0x7f01000b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int ahBarWidth=0x7f01000a; /** <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 ahCircleColor=0x7f010008; /** <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 ahDelayMillis=0x7f010007; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int ahRadius=0x7f010009; /** <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 ahRimColor=0x7f010004; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int ahRimWidth=0x7f010005; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int ahSpinSpeed=0x7f010006; /** <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 ahText=0x7f010000; /** <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 ahTextColor=0x7f010001; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int ahTextSize=0x7f010002; } public static final class drawable { public static final int ic_errorstatus=0x7f020000; public static final int ic_successstatus=0x7f020001; public static final int icon=0x7f020002; public static final int logo=0x7f020003; public static final int radialback=0x7f020004; public static final int roundedbg=0x7f020005; public static final int roundedbgdark=0x7f020006; } public static final class id { public static final int button1=0x7f060009; public static final int editText1=0x7f060006; public static final int editText2=0x7f060008; public static final int lin_lay=0x7f06000c; public static final int loadingImage=0x7f060002; public static final int loadingProgressBar=0x7f060000; public static final int loadingProgressWheel=0x7f060003; public static final int logo=0x7f06000d; public static final int textView1=0x7f060004; public static final int textView2=0x7f060005; public static final int textView3=0x7f060007; public static final int textView4=0x7f06000a; public static final int textView5=0x7f06000b; public static final int textViewStatus=0x7f060001; } public static final class layout { public static final int loading=0x7f030000; public static final int loadingimage=0x7f030001; public static final int loadingprogress=0x7f030002; public static final int login=0x7f030003; public static final int main=0x7f030004; public static final int splash=0x7f030005; } public static final class string { public static final int ApplicationName=0x7f050002; public static final int Hello=0x7f050001; public static final int Login=0x7f050008; public static final int action_settings=0x7f050004; public static final int app_name=0x7f050003; public static final int attempts=0x7f050009; public static final int hello_world=0x7f050005; public static final int library_name=0x7f050000; public static final int password=0x7f050007; public static final int username=0x7f050006; } public static final class styleable { /** Attributes that can be used with a ProgressWheel. <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 #ProgressWheel_ahBarColor Audomoticar.Audomoticar:ahBarColor}</code></td><td></td></tr> <tr><td><code>{@link #ProgressWheel_ahBarLength Audomoticar.Audomoticar:ahBarLength}</code></td><td></td></tr> <tr><td><code>{@link #ProgressWheel_ahBarWidth Audomoticar.Audomoticar:ahBarWidth}</code></td><td></td></tr> <tr><td><code>{@link #ProgressWheel_ahCircleColor Audomoticar.Audomoticar:ahCircleColor}</code></td><td></td></tr> <tr><td><code>{@link #ProgressWheel_ahDelayMillis Audomoticar.Audomoticar:ahDelayMillis}</code></td><td></td></tr> <tr><td><code>{@link #ProgressWheel_ahRadius Audomoticar.Audomoticar:ahRadius}</code></td><td></td></tr> <tr><td><code>{@link #ProgressWheel_ahRimColor Audomoticar.Audomoticar:ahRimColor}</code></td><td></td></tr> <tr><td><code>{@link #ProgressWheel_ahRimWidth Audomoticar.Audomoticar:ahRimWidth}</code></td><td></td></tr> <tr><td><code>{@link #ProgressWheel_ahSpinSpeed Audomoticar.Audomoticar:ahSpinSpeed}</code></td><td></td></tr> <tr><td><code>{@link #ProgressWheel_ahText Audomoticar.Audomoticar:ahText}</code></td><td></td></tr> <tr><td><code>{@link #ProgressWheel_ahTextColor Audomoticar.Audomoticar:ahTextColor}</code></td><td></td></tr> <tr><td><code>{@link #ProgressWheel_ahTextSize Audomoticar.Audomoticar:ahTextSize}</code></td><td></td></tr> </table> @see #ProgressWheel_ahBarColor @see #ProgressWheel_ahBarLength @see #ProgressWheel_ahBarWidth @see #ProgressWheel_ahCircleColor @see #ProgressWheel_ahDelayMillis @see #ProgressWheel_ahRadius @see #ProgressWheel_ahRimColor @see #ProgressWheel_ahRimWidth @see #ProgressWheel_ahSpinSpeed @see #ProgressWheel_ahText @see #ProgressWheel_ahTextColor @see #ProgressWheel_ahTextSize */ public static final int[] ProgressWheel = { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b }; /** <p>This symbol is the offset where the {@link Audomoticar.Audomoticar.R.attr#ahBarColor} attribute's value can be found in the {@link #ProgressWheel} 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 android:ahBarColor */ public static final int ProgressWheel_ahBarColor = 3; /** <p>This symbol is the offset where the {@link Audomoticar.Audomoticar.R.attr#ahBarLength} attribute's value can be found in the {@link #ProgressWheel} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android:ahBarLength */ public static final int ProgressWheel_ahBarLength = 11; /** <p>This symbol is the offset where the {@link Audomoticar.Audomoticar.R.attr#ahBarWidth} attribute's value can be found in the {@link #ProgressWheel} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android:ahBarWidth */ public static final int ProgressWheel_ahBarWidth = 10; /** <p>This symbol is the offset where the {@link Audomoticar.Audomoticar.R.attr#ahCircleColor} attribute's value can be found in the {@link #ProgressWheel} 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 android:ahCircleColor */ public static final int ProgressWheel_ahCircleColor = 8; /** <p>This symbol is the offset where the {@link Audomoticar.Audomoticar.R.attr#ahDelayMillis} attribute's value can be found in the {@link #ProgressWheel} 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 android:ahDelayMillis */ public static final int ProgressWheel_ahDelayMillis = 7; /** <p>This symbol is the offset where the {@link Audomoticar.Audomoticar.R.attr#ahRadius} attribute's value can be found in the {@link #ProgressWheel} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android:ahRadius */ public static final int ProgressWheel_ahRadius = 9; /** <p>This symbol is the offset where the {@link Audomoticar.Audomoticar.R.attr#ahRimColor} attribute's value can be found in the {@link #ProgressWheel} 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 android:ahRimColor */ public static final int ProgressWheel_ahRimColor = 4; /** <p>This symbol is the offset where the {@link Audomoticar.Audomoticar.R.attr#ahRimWidth} attribute's value can be found in the {@link #ProgressWheel} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android:ahRimWidth */ public static final int ProgressWheel_ahRimWidth = 5; /** <p>This symbol is the offset where the {@link Audomoticar.Audomoticar.R.attr#ahSpinSpeed} attribute's value can be found in the {@link #ProgressWheel} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android:ahSpinSpeed */ public static final int ProgressWheel_ahSpinSpeed = 6; /** <p>This symbol is the offset where the {@link Audomoticar.Audomoticar.R.attr#ahText} attribute's value can be found in the {@link #ProgressWheel} 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 android:ahText */ public static final int ProgressWheel_ahText = 0; /** <p>This symbol is the offset where the {@link Audomoticar.Audomoticar.R.attr#ahTextColor} attribute's value can be found in the {@link #ProgressWheel} 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 android:ahTextColor */ public static final int ProgressWheel_ahTextColor = 1; /** <p>This symbol is the offset where the {@link Audomoticar.Audomoticar.R.attr#ahTextSize} attribute's value can be found in the {@link #ProgressWheel} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android:ahTextSize */ public static final int ProgressWheel_ahTextSize = 2; }; }
[ "elgoberlivel@gmail.com" ]
elgoberlivel@gmail.com
7ae4d35ae2d7242cb2d111e1043047c08ee75e73
4e30843174b829b1a4f6d3cee4b4103b9d9f8ded
/app/src/main/java/redeem/com/autozon/ProductName.java
ee9fd43c952bd43b286a7b49a40670f1ef80e5bd
[]
no_license
sus018/Autozon
a5bd568975cd53152c37709c4a2e0d0a8cc044ed
80bdd987fa279ef0e81c5a8bc7382149f3827823
refs/heads/master
2020-06-29T19:07:17.934389
2019-04-22T08:47:45
2019-04-22T08:47:45
200,599,100
0
0
null
null
null
null
UTF-8
Java
false
false
1,781
java
package redeem.com.autozon; import android.annotation.SuppressLint; import android.app.AlertDialog; import android.app.Dialog; import android.app.DialogFragment; import android.content.DialogInterface; import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.EditText; import android.widget.Toast; /** * A simple {@link Fragment} subclass. */ public class ProductName extends DialogFragment { EditText productName; DeviceInfo deviceInfo; public ProductName() { // Required empty public constructor } @SuppressLint("ValidFragment") public ProductName(DeviceInfo deviceInfo) { this.deviceInfo = deviceInfo; } public Dialog onCreateDialog(Bundle savedInstanceState) { Dialog d = null; AlertDialog.Builder ab = new AlertDialog.Builder(getActivity()); View v = getActivity().getLayoutInflater().inflate(R.layout.fragment_product_name, null); productName = v.findViewById(R.id.name); ab.setMessage("Enter relevant admin's phone number"); ab.setPositiveButton("OK", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { DeviceInfo.productName = productName.getText().toString().trim(); if (DeviceInfo.productName.equals("")) { Toast.makeText(getActivity(), "Enter product name", Toast.LENGTH_SHORT).show(); return; } deviceInfo.doTask(); } }); ab.setView(v); d = ab.create(); return d; } }
[ "jcynthi@gmail.com" ]
jcynthi@gmail.com
7bac893c3402977e10b70f83fc1a03028c9a3faf
42800bfb857497b469a7dd796803b61008e89ed3
/app/build/generated/source/r/debug/com/afollestad/materialdialogs/commons/R.java
625f1f458c7a95088e53ee228e2d508aacfeb60e
[]
no_license
gerardogandeaga/CyberLock-Deprecated-
65d32ba7bd6d5e9b4ca624245771fbcb1b70f1b9
bb25218ed8d22517e35d704fa26ec46a80567f7e
refs/heads/master
2021-09-17T05:19:18.343140
2018-06-28T08:33:48
2018-06-28T08:33:48
null
0
0
null
null
null
null
UTF-8
Java
false
false
131,630
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * gradle plugin from the resource data it found. It * should not be modified by hand. */ package com.afollestad.materialdialogs.commons; public final class R { public static final class anim { public static final int abc_fade_in = 0x7f010000; public static final int abc_fade_out = 0x7f010001; public static final int abc_grow_fade_in_from_bottom = 0x7f010002; public static final int abc_popup_enter = 0x7f010003; public static final int abc_popup_exit = 0x7f010004; public static final int abc_shrink_fade_out_from_bottom = 0x7f010005; public static final int abc_slide_in_bottom = 0x7f010006; public static final int abc_slide_in_top = 0x7f010007; public static final int abc_slide_out_bottom = 0x7f010008; public static final int abc_slide_out_top = 0x7f010009; public static final int decelerate_cubic = 0x7f010014; public static final int popup_enter = 0x7f01001f; public static final int popup_exit = 0x7f010020; } public static final class attr { public static final int actionBarDivider = 0x7f040001; public static final int actionBarItemBackground = 0x7f040002; public static final int actionBarPopupTheme = 0x7f040003; public static final int actionBarSize = 0x7f040004; public static final int actionBarSplitStyle = 0x7f040005; public static final int actionBarStyle = 0x7f040006; public static final int actionBarTabBarStyle = 0x7f040007; public static final int actionBarTabStyle = 0x7f040008; public static final int actionBarTabTextStyle = 0x7f040009; public static final int actionBarTheme = 0x7f04000a; public static final int actionBarWidgetTheme = 0x7f04000b; public static final int actionButtonStyle = 0x7f04000c; public static final int actionDropDownStyle = 0x7f04000d; public static final int actionLayout = 0x7f04000e; public static final int actionMenuTextAppearance = 0x7f04000f; public static final int actionMenuTextColor = 0x7f040010; public static final int actionModeBackground = 0x7f040011; public static final int actionModeCloseButtonStyle = 0x7f040012; public static final int actionModeCloseDrawable = 0x7f040013; public static final int actionModeCopyDrawable = 0x7f040014; public static final int actionModeCutDrawable = 0x7f040015; public static final int actionModeFindDrawable = 0x7f040016; public static final int actionModePasteDrawable = 0x7f040017; public static final int actionModePopupWindowStyle = 0x7f040018; public static final int actionModeSelectAllDrawable = 0x7f040019; public static final int actionModeShareDrawable = 0x7f04001a; public static final int actionModeSplitBackground = 0x7f04001b; public static final int actionModeStyle = 0x7f04001c; public static final int actionModeWebSearchDrawable = 0x7f04001d; public static final int actionOverflowButtonStyle = 0x7f04001e; public static final int actionOverflowMenuStyle = 0x7f04001f; public static final int actionProviderClass = 0x7f040020; public static final int actionViewClass = 0x7f040021; public static final int activityChooserViewStyle = 0x7f040022; public static final int alertDialogButtonGroupStyle = 0x7f040023; public static final int alertDialogCenterButtons = 0x7f040024; public static final int alertDialogStyle = 0x7f040025; public static final int alertDialogTheme = 0x7f040026; public static final int allowStacking = 0x7f040028; public static final int alpha = 0x7f040029; public static final int alphabeticModifiers = 0x7f04002a; public static final int arrowHeadLength = 0x7f04002b; public static final int arrowShaftLength = 0x7f04002c; public static final int autoCompleteTextViewStyle = 0x7f04002d; public static final int autoSizeMaxTextSize = 0x7f04002e; public static final int autoSizeMinTextSize = 0x7f04002f; public static final int autoSizePresetSizes = 0x7f040030; public static final int autoSizeStepGranularity = 0x7f040031; public static final int autoSizeTextType = 0x7f040032; public static final int background = 0x7f040033; public static final int backgroundSplit = 0x7f040035; public static final int backgroundStacked = 0x7f040036; public static final int backgroundTint = 0x7f040037; public static final int backgroundTintMode = 0x7f040038; public static final int barLength = 0x7f040039; public static final int borderlessButtonStyle = 0x7f040045; public static final int buttonBarButtonStyle = 0x7f040048; public static final int buttonBarNegativeButtonStyle = 0x7f040049; public static final int buttonBarNeutralButtonStyle = 0x7f04004a; public static final int buttonBarPositiveButtonStyle = 0x7f04004b; public static final int buttonBarStyle = 0x7f04004c; public static final int buttonGravity = 0x7f04004d; public static final int buttonPanelSideLayout = 0x7f04004f; public static final int buttonStyle = 0x7f040050; public static final int buttonStyleSmall = 0x7f040051; public static final int buttonTint = 0x7f040052; public static final int buttonTintMode = 0x7f040053; public static final int checkboxStyle = 0x7f04005c; public static final int checkedTextViewStyle = 0x7f04005d; public static final int closeIcon = 0x7f040063; public static final int closeItemLayout = 0x7f040064; public static final int collapseContentDescription = 0x7f040065; public static final int collapseIcon = 0x7f040066; public static final int color = 0x7f040069; public static final int colorAccent = 0x7f04006a; public static final int colorBackgroundFloating = 0x7f04006b; public static final int colorButtonNormal = 0x7f04006c; public static final int colorControlActivated = 0x7f04006d; public static final int colorControlHighlight = 0x7f04006e; public static final int colorControlNormal = 0x7f04006f; public static final int colorError = 0x7f040070; public static final int colorPrimary = 0x7f040071; public static final int colorPrimaryDark = 0x7f040072; public static final int colorSwitchThumbNormal = 0x7f040073; public static final int commitIcon = 0x7f040076; public static final int contentDescription = 0x7f04007a; public static final int contentInsetEnd = 0x7f04007b; public static final int contentInsetEndWithActions = 0x7f04007c; public static final int contentInsetLeft = 0x7f04007d; public static final int contentInsetRight = 0x7f04007e; public static final int contentInsetStart = 0x7f04007f; public static final int contentInsetStartWithNavigation = 0x7f040080; public static final int controlBackground = 0x7f040087; public static final int customNavigationLayout = 0x7f04008d; public static final int defaultQueryHint = 0x7f04008e; public static final int dialogPreferredPadding = 0x7f04008f; public static final int dialogTheme = 0x7f040090; public static final int displayOptions = 0x7f040091; public static final int divider = 0x7f040092; public static final int dividerHorizontal = 0x7f040093; public static final int dividerPadding = 0x7f040094; public static final int dividerVertical = 0x7f040095; public static final int drawableSize = 0x7f040096; public static final int drawerArrowStyle = 0x7f040097; public static final int dropDownListViewStyle = 0x7f040098; public static final int dropdownListPreferredItemHeight = 0x7f040099; public static final int editTextBackground = 0x7f04009a; public static final int editTextColor = 0x7f04009b; public static final int editTextStyle = 0x7f04009c; public static final int elevation = 0x7f04009d; public static final int expandActivityOverflowButtonDrawable = 0x7f0400a1; public static final int fastScrollEnabled = 0x7f0400c0; public static final int fastScrollHorizontalThumbDrawable = 0x7f0400c1; public static final int fastScrollHorizontalTrackDrawable = 0x7f0400c2; public static final int fastScrollVerticalThumbDrawable = 0x7f0400c3; public static final int fastScrollVerticalTrackDrawable = 0x7f0400c4; public static final int font = 0x7f0400c5; public static final int fontFamily = 0x7f0400c6; public static final int fontProviderAuthority = 0x7f0400c7; public static final int fontProviderCerts = 0x7f0400c8; public static final int fontProviderFetchStrategy = 0x7f0400c9; public static final int fontProviderFetchTimeout = 0x7f0400ca; public static final int fontProviderPackage = 0x7f0400cb; public static final int fontProviderQuery = 0x7f0400cc; public static final int fontStyle = 0x7f0400cd; public static final int fontWeight = 0x7f0400ce; public static final int gapBetweenBars = 0x7f0400d0; public static final int goIcon = 0x7f0400d1; public static final int height = 0x7f0400d3; public static final int hideOnContentScroll = 0x7f0400d4; public static final int homeAsUpIndicator = 0x7f0400d8; public static final int homeLayout = 0x7f0400d9; public static final int icon = 0x7f0400e6; public static final int iconTint = 0x7f0400e7; public static final int iconTintMode = 0x7f0400e8; public static final int iconifiedByDefault = 0x7f0400e9; public static final int imageButtonStyle = 0x7f0400ea; public static final int indeterminateProgressStyle = 0x7f0400eb; public static final int initialActivityCount = 0x7f0400ec; public static final int isLightTheme = 0x7f0400ee; public static final int itemPadding = 0x7f0400f1; public static final int layout = 0x7f0400f5; public static final int layoutManager = 0x7f0400f6; public static final int listChoiceBackgroundIndicator = 0x7f040144; public static final int listDividerAlertDialog = 0x7f040145; public static final int listItemLayout = 0x7f040146; public static final int listLayout = 0x7f040147; public static final int listMenuViewStyle = 0x7f040148; public static final int listPopupWindowStyle = 0x7f040149; public static final int listPreferredItemHeight = 0x7f04014a; public static final int listPreferredItemHeightLarge = 0x7f04014b; public static final int listPreferredItemHeightSmall = 0x7f04014c; public static final int listPreferredItemPaddingLeft = 0x7f04014d; public static final int listPreferredItemPaddingRight = 0x7f04014e; public static final int logo = 0x7f04014f; public static final int logoDescription = 0x7f040150; public static final int maxButtonHeight = 0x7f04015e; public static final int md_background_color = 0x7f04015f; public static final int md_btn_negative_selector = 0x7f040160; public static final int md_btn_neutral_selector = 0x7f040161; public static final int md_btn_positive_selector = 0x7f040162; public static final int md_btn_ripple_color = 0x7f040163; public static final int md_btn_stacked_selector = 0x7f040164; public static final int md_btnstacked_gravity = 0x7f040165; public static final int md_buttons_gravity = 0x7f040166; public static final int md_content_color = 0x7f040167; public static final int md_content_gravity = 0x7f040168; public static final int md_dark_theme = 0x7f040169; public static final int md_divider = 0x7f04016a; public static final int md_divider_color = 0x7f04016b; public static final int md_icon = 0x7f04016c; public static final int md_icon_limit_icon_to_default_size = 0x7f04016d; public static final int md_icon_max_size = 0x7f04016e; public static final int md_item_color = 0x7f04016f; public static final int md_items_gravity = 0x7f040170; public static final int md_link_color = 0x7f040171; public static final int md_list_selector = 0x7f040172; public static final int md_medium_font = 0x7f040173; public static final int md_negative_color = 0x7f040174; public static final int md_neutral_color = 0x7f040175; public static final int md_positive_color = 0x7f040176; public static final int md_reduce_padding_no_title_no_buttons = 0x7f040177; public static final int md_regular_font = 0x7f040178; public static final int md_title_color = 0x7f040179; public static final int md_title_gravity = 0x7f04017a; public static final int md_widget_color = 0x7f04017b; public static final int measureWithLargestChild = 0x7f04017c; public static final int mpb_determinateCircularProgressStyle = 0x7f0401a5; public static final int mpb_indeterminateTint = 0x7f0401a6; public static final int mpb_indeterminateTintMode = 0x7f0401a7; public static final int mpb_progressBackgroundTint = 0x7f0401a8; public static final int mpb_progressBackgroundTintMode = 0x7f0401a9; public static final int mpb_progressStyle = 0x7f0401aa; public static final int mpb_progressTint = 0x7f0401ab; public static final int mpb_progressTintMode = 0x7f0401ac; public static final int mpb_secondaryProgressTint = 0x7f0401ad; public static final int mpb_secondaryProgressTintMode = 0x7f0401ae; public static final int mpb_setBothDrawables = 0x7f0401af; public static final int mpb_showProgressBackground = 0x7f0401b0; public static final int mpb_useIntrinsicPadding = 0x7f0401b1; public static final int multiChoiceItemLayout = 0x7f0401b2; public static final int navigationContentDescription = 0x7f0401b3; public static final int navigationIcon = 0x7f0401b4; public static final int navigationMode = 0x7f0401b5; public static final int numericModifiers = 0x7f0401b6; public static final int overlapAnchor = 0x7f0401b8; public static final int paddingBottomNoButtons = 0x7f0401b9; public static final int paddingEnd = 0x7f0401ba; public static final int paddingStart = 0x7f0401bb; public static final int paddingTopNoTitle = 0x7f0401bc; public static final int panelBackground = 0x7f0401bd; public static final int panelMenuListTheme = 0x7f0401be; public static final int panelMenuListWidth = 0x7f0401bf; public static final int popupMenuStyle = 0x7f0401c5; public static final int popupTheme = 0x7f0401c6; public static final int popupWindowStyle = 0x7f0401c7; public static final int preserveIconSpacing = 0x7f0401c8; public static final int progressBarPadding = 0x7f0401ca; public static final int progressBarStyle = 0x7f0401cb; public static final int queryBackground = 0x7f0401cc; public static final int queryHint = 0x7f0401cd; public static final int radioButtonStyle = 0x7f0401ce; public static final int ratingBarStyle = 0x7f0401cf; public static final int ratingBarStyleIndicator = 0x7f0401d0; public static final int ratingBarStyleSmall = 0x7f0401d1; public static final int reverseLayout = 0x7f0401d2; public static final int searchHintIcon = 0x7f0401da; public static final int searchIcon = 0x7f0401db; public static final int searchViewStyle = 0x7f0401dc; public static final int seekBarStyle = 0x7f0401dd; public static final int selectableItemBackground = 0x7f0401de; public static final int selectableItemBackgroundBorderless = 0x7f0401df; public static final int showAsAction = 0x7f0401e0; public static final int showDividers = 0x7f0401e1; public static final int showText = 0x7f0401e2; public static final int showTitle = 0x7f0401e3; public static final int singleChoiceItemLayout = 0x7f0401e4; public static final int spanCount = 0x7f0401e7; public static final int spinBars = 0x7f0401e8; public static final int spinnerDropDownItemStyle = 0x7f0401e9; public static final int spinnerStyle = 0x7f0401ea; public static final int splitTrack = 0x7f0401eb; public static final int srcCompat = 0x7f0401ec; public static final int stackFromEnd = 0x7f0401ed; public static final int state_above_anchor = 0x7f0401ee; public static final int subMenuArrow = 0x7f0401f3; public static final int submitBackground = 0x7f0401f4; public static final int subtitle = 0x7f0401f5; public static final int subtitleTextAppearance = 0x7f0401f6; public static final int subtitleTextColor = 0x7f0401f7; public static final int subtitleTextStyle = 0x7f0401f8; public static final int suggestionRowLayout = 0x7f0401f9; public static final int switchMinWidth = 0x7f0401fa; public static final int switchPadding = 0x7f0401fb; public static final int switchStyle = 0x7f0401fc; public static final int switchTextAppearance = 0x7f0401fd; public static final int textAllCaps = 0x7f04020e; public static final int textAppearanceLargePopupMenu = 0x7f04020f; public static final int textAppearanceListItem = 0x7f040210; public static final int textAppearanceListItemSecondary = 0x7f040211; public static final int textAppearanceListItemSmall = 0x7f040212; public static final int textAppearancePopupMenuHeader = 0x7f040213; public static final int textAppearanceSearchResultSubtitle = 0x7f040214; public static final int textAppearanceSearchResultTitle = 0x7f040215; public static final int textAppearanceSmallPopupMenu = 0x7f040216; public static final int textColorAlertDialogListItem = 0x7f040217; public static final int textColorSearchUrl = 0x7f040219; public static final int theme = 0x7f04021a; public static final int thickness = 0x7f04021b; public static final int thumbTextPadding = 0x7f04021c; public static final int thumbTint = 0x7f04021d; public static final int thumbTintMode = 0x7f04021e; public static final int tickMark = 0x7f04021f; public static final int tickMarkTint = 0x7f040220; public static final int tickMarkTintMode = 0x7f040221; public static final int tint = 0x7f040222; public static final int tintMode = 0x7f040223; public static final int title = 0x7f040224; public static final int titleMargin = 0x7f040226; public static final int titleMarginBottom = 0x7f040227; public static final int titleMarginEnd = 0x7f040228; public static final int titleMarginStart = 0x7f040229; public static final int titleMarginTop = 0x7f04022a; public static final int titleMargins = 0x7f04022b; public static final int titleTextAppearance = 0x7f04022c; public static final int titleTextColor = 0x7f04022d; public static final int titleTextStyle = 0x7f04022e; public static final int toolbarNavigationButtonStyle = 0x7f040232; public static final int toolbarStyle = 0x7f040233; public static final int tooltipForegroundColor = 0x7f040236; public static final int tooltipFrameBackground = 0x7f040237; public static final int tooltipText = 0x7f040238; public static final int track = 0x7f040239; public static final int trackTint = 0x7f04023a; public static final int trackTintMode = 0x7f04023b; public static final int useStockLayout = 0x7f04023f; public static final int voiceIcon = 0x7f040241; public static final int windowActionBar = 0x7f040242; public static final int windowActionBarOverlay = 0x7f040243; public static final int windowActionModeOverlay = 0x7f040244; public static final int windowFixedHeightMajor = 0x7f040245; public static final int windowFixedHeightMinor = 0x7f040246; public static final int windowFixedWidthMajor = 0x7f040247; public static final int windowFixedWidthMinor = 0x7f040248; public static final int windowMinWidthMajor = 0x7f040249; public static final int windowMinWidthMinor = 0x7f04024a; public static final int windowNoTitle = 0x7f04024b; } public static final class bool { public static final int abc_action_bar_embed_tabs = 0x7f050000; public static final int abc_allow_stacked_button_bar = 0x7f050001; public static final int abc_config_actionMenuItemAllCaps = 0x7f050002; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f050003; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark = 0x7f060000; public static final int abc_background_cache_hint_selector_material_light = 0x7f060001; public static final int abc_btn_colored_borderless_text_material = 0x7f060002; public static final int abc_btn_colored_text_material = 0x7f060003; public static final int abc_color_highlight_material = 0x7f060004; public static final int abc_hint_foreground_material_dark = 0x7f060005; public static final int abc_hint_foreground_material_light = 0x7f060006; public static final int abc_input_method_navigation_guard = 0x7f060007; public static final int abc_primary_text_disable_only_material_dark = 0x7f060008; public static final int abc_primary_text_disable_only_material_light = 0x7f060009; public static final int abc_primary_text_material_dark = 0x7f06000a; public static final int abc_primary_text_material_light = 0x7f06000b; public static final int abc_search_url_text = 0x7f06000c; public static final int abc_search_url_text_normal = 0x7f06000d; public static final int abc_search_url_text_pressed = 0x7f06000e; public static final int abc_search_url_text_selected = 0x7f06000f; public static final int abc_secondary_text_material_dark = 0x7f060010; public static final int abc_secondary_text_material_light = 0x7f060011; public static final int abc_tint_btn_checkable = 0x7f060012; public static final int abc_tint_default = 0x7f060013; public static final int abc_tint_edittext = 0x7f060014; public static final int abc_tint_seek_thumb = 0x7f060015; public static final int abc_tint_spinner = 0x7f060016; public static final int abc_tint_switch_track = 0x7f060017; public static final int accent_material_dark = 0x7f060019; public static final int accent_material_light = 0x7f06001a; public static final int background_floating_material_dark = 0x7f06001b; public static final int background_floating_material_light = 0x7f06001c; public static final int background_material_dark = 0x7f06001d; public static final int background_material_light = 0x7f06001e; public static final int bright_foreground_disabled_material_dark = 0x7f060020; public static final int bright_foreground_disabled_material_light = 0x7f060021; public static final int bright_foreground_inverse_material_dark = 0x7f060022; public static final int bright_foreground_inverse_material_light = 0x7f060023; public static final int bright_foreground_material_dark = 0x7f060024; public static final int bright_foreground_material_light = 0x7f060025; public static final int button_material_dark = 0x7f060026; public static final int button_material_light = 0x7f060027; public static final int dim_foreground_disabled_material_dark = 0x7f06006c; public static final int dim_foreground_disabled_material_light = 0x7f06006d; public static final int dim_foreground_material_dark = 0x7f06006e; public static final int dim_foreground_material_light = 0x7f06006f; public static final int error_color_material = 0x7f060070; public static final int foreground_material_dark = 0x7f060071; public static final int foreground_material_light = 0x7f060072; public static final int highlighted_text_material_dark = 0x7f060073; public static final int highlighted_text_material_light = 0x7f060074; public static final int material_blue_grey_800 = 0x7f060075; public static final int material_blue_grey_900 = 0x7f060076; public static final int material_blue_grey_950 = 0x7f060077; public static final int material_deep_teal_200 = 0x7f060078; public static final int material_deep_teal_500 = 0x7f060079; public static final int material_grey_100 = 0x7f060092; public static final int material_grey_300 = 0x7f060093; public static final int material_grey_50 = 0x7f060094; public static final int material_grey_600 = 0x7f060095; public static final int material_grey_800 = 0x7f060096; public static final int material_grey_850 = 0x7f060097; public static final int material_grey_900 = 0x7f060098; public static final int md_btn_selected = 0x7f0600ce; public static final int md_btn_selected_dark = 0x7f0600cf; public static final int md_divider_black = 0x7f060104; public static final int md_divider_white = 0x7f060105; public static final int md_edittext_error = 0x7f060106; public static final int md_material_blue_600 = 0x7f060162; public static final int md_material_blue_800 = 0x7f060163; public static final int notification_action_color_filter = 0x7f0601b9; public static final int notification_icon_bg_color = 0x7f0601ba; public static final int notification_material_background_media_default_color = 0x7f0601bb; public static final int primary_dark_material_dark = 0x7f0601be; public static final int primary_dark_material_light = 0x7f0601bf; public static final int primary_material_dark = 0x7f0601c1; public static final int primary_material_light = 0x7f0601c2; public static final int primary_text_default_material_dark = 0x7f0601c3; public static final int primary_text_default_material_light = 0x7f0601c4; public static final int primary_text_disabled_material_dark = 0x7f0601c5; public static final int primary_text_disabled_material_light = 0x7f0601c6; public static final int ripple_material_dark = 0x7f0601c7; public static final int ripple_material_light = 0x7f0601c8; public static final int secondary_text_default_material_dark = 0x7f0601c9; public static final int secondary_text_default_material_light = 0x7f0601ca; public static final int secondary_text_disabled_material_dark = 0x7f0601cb; public static final int secondary_text_disabled_material_light = 0x7f0601cc; public static final int switch_thumb_disabled_material_dark = 0x7f0601cd; public static final int switch_thumb_disabled_material_light = 0x7f0601ce; public static final int switch_thumb_material_dark = 0x7f0601cf; public static final int switch_thumb_material_light = 0x7f0601d0; public static final int switch_thumb_normal_material_dark = 0x7f0601d1; public static final int switch_thumb_normal_material_light = 0x7f0601d2; public static final int tooltip_background_dark = 0x7f0601d3; public static final int tooltip_background_light = 0x7f0601d4; } public static final class dimen { public static final int abc_action_bar_content_inset_material = 0x7f070000; public static final int abc_action_bar_content_inset_with_nav = 0x7f070001; public static final int abc_action_bar_default_height_material = 0x7f070002; public static final int abc_action_bar_default_padding_end_material = 0x7f070003; public static final int abc_action_bar_default_padding_start_material = 0x7f070004; public static final int abc_action_bar_elevation_material = 0x7f070005; public static final int abc_action_bar_icon_vertical_padding_material = 0x7f070006; public static final int abc_action_bar_overflow_padding_end_material = 0x7f070007; public static final int abc_action_bar_overflow_padding_start_material = 0x7f070008; public static final int abc_action_bar_progress_bar_size = 0x7f070009; public static final int abc_action_bar_stacked_max_height = 0x7f07000a; public static final int abc_action_bar_stacked_tab_max_width = 0x7f07000b; public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f07000c; public static final int abc_action_bar_subtitle_top_margin_material = 0x7f07000d; public static final int abc_action_button_min_height_material = 0x7f07000e; public static final int abc_action_button_min_width_material = 0x7f07000f; public static final int abc_action_button_min_width_overflow_material = 0x7f070010; public static final int abc_alert_dialog_button_bar_height = 0x7f070011; public static final int abc_button_inset_horizontal_material = 0x7f070013; public static final int abc_button_inset_vertical_material = 0x7f070014; public static final int abc_button_padding_horizontal_material = 0x7f070015; public static final int abc_button_padding_vertical_material = 0x7f070016; public static final int abc_cascading_menus_min_smallest_width = 0x7f070017; public static final int abc_config_prefDialogWidth = 0x7f070018; public static final int abc_control_corner_material = 0x7f070019; public static final int abc_control_inset_material = 0x7f07001a; public static final int abc_control_padding_material = 0x7f07001b; public static final int abc_dialog_fixed_height_major = 0x7f07001c; public static final int abc_dialog_fixed_height_minor = 0x7f07001d; public static final int abc_dialog_fixed_width_major = 0x7f07001e; public static final int abc_dialog_fixed_width_minor = 0x7f07001f; public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f070020; public static final int abc_dialog_list_padding_top_no_title = 0x7f070021; public static final int abc_dialog_min_width_major = 0x7f070022; public static final int abc_dialog_min_width_minor = 0x7f070023; public static final int abc_dialog_padding_material = 0x7f070024; public static final int abc_dialog_padding_top_material = 0x7f070025; public static final int abc_dialog_title_divider_material = 0x7f070026; public static final int abc_disabled_alpha_material_dark = 0x7f070027; public static final int abc_disabled_alpha_material_light = 0x7f070028; public static final int abc_dropdownitem_icon_width = 0x7f070029; public static final int abc_dropdownitem_text_padding_left = 0x7f07002a; public static final int abc_dropdownitem_text_padding_right = 0x7f07002b; public static final int abc_edit_text_inset_bottom_material = 0x7f07002c; public static final int abc_edit_text_inset_horizontal_material = 0x7f07002d; public static final int abc_edit_text_inset_top_material = 0x7f07002e; public static final int abc_floating_window_z = 0x7f07002f; public static final int abc_list_item_padding_horizontal_material = 0x7f070030; public static final int abc_panel_menu_list_width = 0x7f070031; public static final int abc_progress_bar_height_material = 0x7f070032; public static final int abc_search_view_preferred_height = 0x7f070033; public static final int abc_search_view_preferred_width = 0x7f070034; public static final int abc_seekbar_track_background_height_material = 0x7f070035; public static final int abc_seekbar_track_progress_height_material = 0x7f070036; public static final int abc_select_dialog_padding_start_material = 0x7f070037; public static final int abc_switch_padding = 0x7f070038; public static final int abc_text_size_body_1_material = 0x7f070039; public static final int abc_text_size_body_2_material = 0x7f07003a; public static final int abc_text_size_button_material = 0x7f07003b; public static final int abc_text_size_caption_material = 0x7f07003c; public static final int abc_text_size_display_1_material = 0x7f07003d; public static final int abc_text_size_display_2_material = 0x7f07003e; public static final int abc_text_size_display_3_material = 0x7f07003f; public static final int abc_text_size_display_4_material = 0x7f070040; public static final int abc_text_size_headline_material = 0x7f070041; public static final int abc_text_size_large_material = 0x7f070042; public static final int abc_text_size_medium_material = 0x7f070043; public static final int abc_text_size_menu_header_material = 0x7f070044; public static final int abc_text_size_menu_material = 0x7f070045; public static final int abc_text_size_small_material = 0x7f070046; public static final int abc_text_size_subhead_material = 0x7f070047; public static final int abc_text_size_subtitle_material_toolbar = 0x7f070048; public static final int abc_text_size_title_material = 0x7f070049; public static final int abc_text_size_title_material_toolbar = 0x7f07004a; public static final int circular_progress_border = 0x7f07004e; public static final int compat_button_inset_horizontal_material = 0x7f07004f; public static final int compat_button_inset_vertical_material = 0x7f070050; public static final int compat_button_padding_horizontal_material = 0x7f070051; public static final int compat_button_padding_vertical_material = 0x7f070052; public static final int compat_control_corner_material = 0x7f070053; public static final int disabled_alpha_material_dark = 0x7f07007b; public static final int disabled_alpha_material_light = 0x7f07007c; public static final int fastscroll_default_thickness = 0x7f07007f; public static final int fastscroll_margin = 0x7f070080; public static final int fastscroll_minimum_range = 0x7f070081; public static final int highlight_alpha_material_colored = 0x7f070082; public static final int highlight_alpha_material_dark = 0x7f070083; public static final int highlight_alpha_material_light = 0x7f070084; public static final int hint_alpha_material_dark = 0x7f070085; public static final int hint_alpha_material_light = 0x7f070086; public static final int hint_pressed_alpha_material_dark = 0x7f070087; public static final int hint_pressed_alpha_material_light = 0x7f070088; public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f070089; public static final int item_touch_helper_swipe_escape_max_velocity = 0x7f07008a; public static final int item_touch_helper_swipe_escape_velocity = 0x7f07008b; public static final int md_action_corner_radius = 0x7f0700d9; public static final int md_bg_corner_radius = 0x7f0700da; public static final int md_button_frame_vertical_padding = 0x7f0700db; public static final int md_button_height = 0x7f0700dc; public static final int md_button_inset_horizontal = 0x7f0700dd; public static final int md_button_inset_vertical = 0x7f0700de; public static final int md_button_min_width = 0x7f0700df; public static final int md_button_padding_frame_side = 0x7f0700e0; public static final int md_button_padding_horizontal = 0x7f0700e1; public static final int md_button_padding_horizontal_internalexternal = 0x7f0700e2; public static final int md_button_padding_vertical = 0x7f0700e3; public static final int md_button_textpadding_horizontal = 0x7f0700e4; public static final int md_button_textsize = 0x7f0700e5; public static final int md_colorchooser_circlesize = 0x7f0700e6; public static final int md_content_padding_bottom = 0x7f0700e7; public static final int md_content_padding_top = 0x7f0700e8; public static final int md_content_textsize = 0x7f0700e9; public static final int md_dialog_frame_margin = 0x7f0700ea; public static final int md_dialog_horizontal_margin = 0x7f0700eb; public static final int md_dialog_max_width = 0x7f0700ec; public static final int md_dialog_vertical_margin = 0x7f0700ed; public static final int md_divider_height = 0x7f0700ee; public static final int md_icon_margin = 0x7f0700ef; public static final int md_icon_max_size = 0x7f0700f0; public static final int md_listitem_control_margin = 0x7f0700f1; public static final int md_listitem_height = 0x7f0700f2; public static final int md_listitem_margin_left = 0x7f0700f3; public static final int md_listitem_textsize = 0x7f0700f4; public static final int md_listitem_vertical_margin = 0x7f0700f5; public static final int md_listitem_vertical_margin_choice = 0x7f0700f6; public static final int md_neutral_button_margin = 0x7f0700f7; public static final int md_notitle_vertical_padding = 0x7f0700f8; public static final int md_notitle_vertical_padding_more = 0x7f0700f9; public static final int md_preference_content_inset = 0x7f0700fa; public static final int md_simpleitem_height = 0x7f0700fb; public static final int md_simplelist_icon = 0x7f0700fc; public static final int md_simplelist_icon_margin = 0x7f0700fd; public static final int md_simplelist_textsize = 0x7f0700fe; public static final int md_simplelistitem_padding_top = 0x7f0700ff; public static final int md_title_frame_margin_bottom = 0x7f070100; public static final int md_title_frame_margin_bottom_less = 0x7f070101; public static final int md_title_textsize = 0x7f070102; public static final int notification_action_icon_size = 0x7f070103; public static final int notification_action_text_size = 0x7f070104; public static final int notification_big_circle_margin = 0x7f070105; public static final int notification_content_margin_start = 0x7f070106; public static final int notification_large_icon_height = 0x7f070107; public static final int notification_large_icon_width = 0x7f070108; public static final int notification_main_column_padding_top = 0x7f070109; public static final int notification_media_narrow_margin = 0x7f07010a; public static final int notification_right_icon_size = 0x7f07010b; public static final int notification_right_side_padding_top = 0x7f07010c; public static final int notification_small_icon_background_padding = 0x7f07010d; public static final int notification_small_icon_size_as_large = 0x7f07010e; public static final int notification_subtext_size = 0x7f07010f; public static final int notification_top_pad = 0x7f070110; public static final int notification_top_pad_large_text = 0x7f070111; public static final int tooltip_corner_radius = 0x7f070113; public static final int tooltip_horizontal_padding = 0x7f070114; public static final int tooltip_margin = 0x7f070115; public static final int tooltip_precise_anchor_extra_offset = 0x7f070116; public static final int tooltip_precise_anchor_threshold = 0x7f070117; public static final int tooltip_vertical_padding = 0x7f070118; public static final int tooltip_y_offset_non_touch = 0x7f070119; public static final int tooltip_y_offset_touch = 0x7f07011a; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha = 0x7f080006; public static final int abc_action_bar_item_background_material = 0x7f080007; public static final int abc_btn_borderless_material = 0x7f080008; public static final int abc_btn_check_material = 0x7f080009; public static final int abc_btn_check_to_on_mtrl_000 = 0x7f08000a; public static final int abc_btn_check_to_on_mtrl_015 = 0x7f08000b; public static final int abc_btn_colored_material = 0x7f08000c; public static final int abc_btn_default_mtrl_shape = 0x7f08000d; public static final int abc_btn_radio_material = 0x7f08000e; public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f08000f; public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f080010; public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f080011; public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f080012; public static final int abc_cab_background_internal_bg = 0x7f080013; public static final int abc_cab_background_top_material = 0x7f080014; public static final int abc_cab_background_top_mtrl_alpha = 0x7f080015; public static final int abc_control_background_material = 0x7f080016; public static final int abc_dialog_material_background = 0x7f080017; public static final int abc_edit_text_material = 0x7f080018; public static final int abc_ic_ab_back_material = 0x7f080019; public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f08001a; public static final int abc_ic_clear_material = 0x7f08001b; public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f08001c; public static final int abc_ic_go_search_api_material = 0x7f08001d; public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f08001e; public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f08001f; public static final int abc_ic_menu_overflow_material = 0x7f080020; public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f080021; public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f080022; public static final int abc_ic_menu_share_mtrl_alpha = 0x7f080023; public static final int abc_ic_search_api_material = 0x7f080024; public static final int abc_ic_star_black_16dp = 0x7f080025; public static final int abc_ic_star_black_36dp = 0x7f080026; public static final int abc_ic_star_black_48dp = 0x7f080027; public static final int abc_ic_star_half_black_16dp = 0x7f080028; public static final int abc_ic_star_half_black_36dp = 0x7f080029; public static final int abc_ic_star_half_black_48dp = 0x7f08002a; public static final int abc_ic_voice_search_api_material = 0x7f08002b; public static final int abc_item_background_holo_dark = 0x7f08002c; public static final int abc_item_background_holo_light = 0x7f08002d; public static final int abc_list_divider_mtrl_alpha = 0x7f08002e; public static final int abc_list_focused_holo = 0x7f08002f; public static final int abc_list_longpressed_holo = 0x7f080030; public static final int abc_list_pressed_holo_dark = 0x7f080031; public static final int abc_list_pressed_holo_light = 0x7f080032; public static final int abc_list_selector_background_transition_holo_dark = 0x7f080033; public static final int abc_list_selector_background_transition_holo_light = 0x7f080034; public static final int abc_list_selector_disabled_holo_dark = 0x7f080035; public static final int abc_list_selector_disabled_holo_light = 0x7f080036; public static final int abc_list_selector_holo_dark = 0x7f080037; public static final int abc_list_selector_holo_light = 0x7f080038; public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f080039; public static final int abc_popup_background_mtrl_mult = 0x7f08003a; public static final int abc_ratingbar_indicator_material = 0x7f08003b; public static final int abc_ratingbar_material = 0x7f08003c; public static final int abc_ratingbar_small_material = 0x7f08003d; public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f08003e; public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f08003f; public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f080040; public static final int abc_scrubber_primary_mtrl_alpha = 0x7f080041; public static final int abc_scrubber_track_mtrl_alpha = 0x7f080042; public static final int abc_seekbar_thumb_material = 0x7f080043; public static final int abc_seekbar_tick_mark_material = 0x7f080044; public static final int abc_seekbar_track_material = 0x7f080045; public static final int abc_spinner_mtrl_am_alpha = 0x7f080046; public static final int abc_spinner_textfield_background_material = 0x7f080047; public static final int abc_switch_thumb_material = 0x7f080048; public static final int abc_switch_track_mtrl_alpha = 0x7f080049; public static final int abc_tab_indicator_material = 0x7f08004a; public static final int abc_tab_indicator_mtrl_alpha = 0x7f08004b; public static final int abc_text_cursor_material = 0x7f08004c; public static final int abc_text_select_handle_left_mtrl_dark = 0x7f08004d; public static final int abc_text_select_handle_left_mtrl_light = 0x7f08004e; public static final int abc_text_select_handle_middle_mtrl_dark = 0x7f08004f; public static final int abc_text_select_handle_middle_mtrl_light = 0x7f080050; public static final int abc_text_select_handle_right_mtrl_dark = 0x7f080051; public static final int abc_text_select_handle_right_mtrl_light = 0x7f080052; public static final int abc_textfield_activated_mtrl_alpha = 0x7f080053; public static final int abc_textfield_default_mtrl_alpha = 0x7f080054; public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f080055; public static final int abc_textfield_search_default_mtrl_alpha = 0x7f080056; public static final int abc_textfield_search_material = 0x7f080057; public static final int abc_vector_test = 0x7f080058; public static final int gray_circle = 0x7f08006f; public static final int md_btn_selected = 0x7f08009f; public static final int md_btn_selected_dark = 0x7f0800a0; public static final int md_btn_selector = 0x7f0800a1; public static final int md_btn_selector_dark = 0x7f0800a2; public static final int md_btn_selector_ripple = 0x7f0800a3; public static final int md_btn_selector_ripple_dark = 0x7f0800a4; public static final int md_btn_shape = 0x7f0800a5; public static final int md_item_selected = 0x7f0800a6; public static final int md_item_selected_dark = 0x7f0800a7; public static final int md_nav_back = 0x7f0800a8; public static final int md_selector = 0x7f0800a9; public static final int md_selector_dark = 0x7f0800aa; public static final int md_transparent = 0x7f0800ab; public static final int notification_action_background = 0x7f0800ad; public static final int notification_bg = 0x7f0800ae; public static final int notification_bg_low = 0x7f0800af; public static final int notification_bg_low_normal = 0x7f0800b0; public static final int notification_bg_low_pressed = 0x7f0800b1; public static final int notification_bg_normal = 0x7f0800b2; public static final int notification_bg_normal_pressed = 0x7f0800b3; public static final int notification_icon_background = 0x7f0800b4; public static final int notification_template_icon_bg = 0x7f0800b5; public static final int notification_template_icon_low_bg = 0x7f0800b6; public static final int notification_tile_bg = 0x7f0800b7; public static final int notify_panel_notification_icon_bg = 0x7f0800b8; public static final int tooltip_frame_dark = 0x7f0800c8; public static final int tooltip_frame_light = 0x7f0800c9; } public static final class id { public static final int ALT = 0x7f0a0000; public static final int CTRL = 0x7f0a0004; public static final int FUNCTION = 0x7f0a000a; public static final int META = 0x7f0a000f; public static final int SHIFT = 0x7f0a0017; public static final int SYM = 0x7f0a0018; public static final int action0 = 0x7f0a001d; public static final int action_bar = 0x7f0a001e; public static final int action_bar_activity_content = 0x7f0a001f; public static final int action_bar_container = 0x7f0a0020; public static final int action_bar_root = 0x7f0a0021; public static final int action_bar_spinner = 0x7f0a0022; public static final int action_bar_subtitle = 0x7f0a0023; public static final int action_bar_title = 0x7f0a0024; public static final int action_container = 0x7f0a0025; public static final int action_context_bar = 0x7f0a0026; public static final int action_divider = 0x7f0a0027; public static final int action_image = 0x7f0a0028; public static final int action_menu_divider = 0x7f0a0029; public static final int action_menu_presenter = 0x7f0a002a; public static final int action_mode_bar = 0x7f0a002b; public static final int action_mode_bar_stub = 0x7f0a002c; public static final int action_mode_close_button = 0x7f0a002d; public static final int action_text = 0x7f0a002e; public static final int actions = 0x7f0a002f; public static final int activity_chooser_view_content = 0x7f0a0030; public static final int add = 0x7f0a0031; public static final int alertTitle = 0x7f0a0032; public static final int always = 0x7f0a0036; public static final int async = 0x7f0a0038; public static final int beginning = 0x7f0a003c; public static final int blocking = 0x7f0a003d; public static final int bottom = 0x7f0a003e; public static final int buttonPanel = 0x7f0a0045; public static final int cancel_action = 0x7f0a0046; public static final int center = 0x7f0a0047; public static final int checkbox = 0x7f0a004b; public static final int chronometer = 0x7f0a004c; public static final int circular = 0x7f0a004d; public static final int collapseActionView = 0x7f0a0050; public static final int contentPanel = 0x7f0a0052; public static final int custom = 0x7f0a0055; public static final int customPanel = 0x7f0a0056; public static final int decor_content_parent = 0x7f0a0057; public static final int default_activity_button = 0x7f0a0058; public static final int disableHome = 0x7f0a0061; public static final int dynamic = 0x7f0a0063; public static final int edit_query = 0x7f0a0064; public static final int end = 0x7f0a0065; public static final int end_padder = 0x7f0a0066; public static final int expand_activities_button = 0x7f0a0078; public static final int expanded_menu = 0x7f0a0079; public static final int forever = 0x7f0a0081; public static final int home = 0x7f0a0085; public static final int homeAsUp = 0x7f0a0086; public static final int horizontal = 0x7f0a0087; public static final int icon = 0x7f0a0088; public static final int icon_group = 0x7f0a0089; public static final int ifRoom = 0x7f0a008b; public static final int image = 0x7f0a008c; public static final int info = 0x7f0a0093; public static final int italic = 0x7f0a0096; public static final int item_touch_helper_previous_elevation = 0x7f0a0097; public static final int line1 = 0x7f0a009a; public static final int line3 = 0x7f0a009b; public static final int listMode = 0x7f0a009c; public static final int list_item = 0x7f0a009d; public static final int md_buttonDefaultNegative = 0x7f0a00d7; public static final int md_buttonDefaultNeutral = 0x7f0a00d8; public static final int md_buttonDefaultPositive = 0x7f0a00d9; public static final int md_colorA = 0x7f0a00da; public static final int md_colorALabel = 0x7f0a00db; public static final int md_colorAValue = 0x7f0a00dc; public static final int md_colorB = 0x7f0a00dd; public static final int md_colorBLabel = 0x7f0a00de; public static final int md_colorBValue = 0x7f0a00df; public static final int md_colorChooserCustomFrame = 0x7f0a00e0; public static final int md_colorG = 0x7f0a00e1; public static final int md_colorGLabel = 0x7f0a00e2; public static final int md_colorGValue = 0x7f0a00e3; public static final int md_colorIndicator = 0x7f0a00e4; public static final int md_colorR = 0x7f0a00e5; public static final int md_colorRLabel = 0x7f0a00e6; public static final int md_colorRValue = 0x7f0a00e7; public static final int md_content = 0x7f0a00e8; public static final int md_contentListViewFrame = 0x7f0a00e9; public static final int md_contentRecyclerView = 0x7f0a00ea; public static final int md_contentScrollView = 0x7f0a00eb; public static final int md_control = 0x7f0a00ec; public static final int md_customViewFrame = 0x7f0a00ed; public static final int md_grid = 0x7f0a00ee; public static final int md_hexInput = 0x7f0a00ef; public static final int md_icon = 0x7f0a00f0; public static final int md_label = 0x7f0a00f1; public static final int md_minMax = 0x7f0a00f2; public static final int md_promptCheckbox = 0x7f0a00f3; public static final int md_root = 0x7f0a00f4; public static final int md_title = 0x7f0a00f5; public static final int md_titleFrame = 0x7f0a00f6; public static final int media_actions = 0x7f0a00f7; public static final int message = 0x7f0a0108; public static final int middle = 0x7f0a0109; public static final int multiply = 0x7f0a010b; public static final int never = 0x7f0a010e; public static final int none = 0x7f0a010f; public static final int normal = 0x7f0a0110; public static final int notification_background = 0x7f0a0112; public static final int notification_main_column = 0x7f0a0113; public static final int notification_main_column_container = 0x7f0a0114; public static final int parentPanel = 0x7f0a0118; public static final int progress_circular = 0x7f0a011e; public static final int progress_horizontal = 0x7f0a011f; public static final int radio = 0x7f0a0122; public static final int right_icon = 0x7f0a0125; public static final int right_side = 0x7f0a0126; public static final int screen = 0x7f0a012a; public static final int scrollIndicatorDown = 0x7f0a012c; public static final int scrollIndicatorUp = 0x7f0a012d; public static final int scrollView = 0x7f0a012e; public static final int search_badge = 0x7f0a0130; public static final int search_bar = 0x7f0a0131; public static final int search_button = 0x7f0a0132; public static final int search_close_btn = 0x7f0a0133; public static final int search_edit_frame = 0x7f0a0134; public static final int search_go_btn = 0x7f0a0135; public static final int search_mag_icon = 0x7f0a0136; public static final int search_plate = 0x7f0a0137; public static final int search_src_text = 0x7f0a0138; public static final int search_voice_btn = 0x7f0a0139; public static final int select_dialog_listview = 0x7f0a013a; public static final int shortcut = 0x7f0a013b; public static final int showCustom = 0x7f0a013c; public static final int showHome = 0x7f0a013d; public static final int showTitle = 0x7f0a013e; public static final int spacer = 0x7f0a0146; public static final int split_action_bar = 0x7f0a0147; public static final int src_atop = 0x7f0a014a; public static final int src_in = 0x7f0a014b; public static final int src_over = 0x7f0a014c; public static final int start = 0x7f0a014e; public static final int status_bar_latest_event_content = 0x7f0a014f; public static final int submenuarrow = 0x7f0a0150; public static final int submit_area = 0x7f0a0151; public static final int tabMode = 0x7f0a0154; public static final int tag_transition_group = 0x7f0a0155; public static final int text = 0x7f0a0156; public static final int text2 = 0x7f0a0157; public static final int textSpacerNoButtons = 0x7f0a0158; public static final int textSpacerNoTitle = 0x7f0a0159; public static final int time = 0x7f0a015e; public static final int title = 0x7f0a015f; public static final int titleDividerNoCustom = 0x7f0a0161; public static final int title_template = 0x7f0a0162; public static final int top = 0x7f0a0164; public static final int topPanel = 0x7f0a0165; public static final int uniform = 0x7f0a017d; public static final int up = 0x7f0a017e; public static final int useLogo = 0x7f0a017f; public static final int withText = 0x7f0a0183; public static final int wrap_content = 0x7f0a0185; } public static final class integer { public static final int abc_config_activityDefaultDur = 0x7f0b0000; public static final int abc_config_activityShortDur = 0x7f0b0001; public static final int cancel_button_image_alpha = 0x7f0b0004; public static final int config_tooltipAnimTime = 0x7f0b0005; public static final int status_bar_notification_info_maxnum = 0x7f0b0009; } public static final class layout { public static final int abc_action_bar_title_item = 0x7f0c0000; public static final int abc_action_bar_up_container = 0x7f0c0001; public static final int abc_action_menu_item_layout = 0x7f0c0002; public static final int abc_action_menu_layout = 0x7f0c0003; public static final int abc_action_mode_bar = 0x7f0c0004; public static final int abc_action_mode_close_item_material = 0x7f0c0005; public static final int abc_activity_chooser_view = 0x7f0c0006; public static final int abc_activity_chooser_view_list_item = 0x7f0c0007; public static final int abc_alert_dialog_button_bar_material = 0x7f0c0008; public static final int abc_alert_dialog_material = 0x7f0c0009; public static final int abc_alert_dialog_title_material = 0x7f0c000a; public static final int abc_dialog_title_material = 0x7f0c000b; public static final int abc_expanded_menu_layout = 0x7f0c000c; public static final int abc_list_menu_item_checkbox = 0x7f0c000d; public static final int abc_list_menu_item_icon = 0x7f0c000e; public static final int abc_list_menu_item_layout = 0x7f0c000f; public static final int abc_list_menu_item_radio = 0x7f0c0010; public static final int abc_popup_menu_header_item_layout = 0x7f0c0011; public static final int abc_popup_menu_item_layout = 0x7f0c0012; public static final int abc_screen_content_include = 0x7f0c0013; public static final int abc_screen_simple = 0x7f0c0014; public static final int abc_screen_simple_overlay_action_mode = 0x7f0c0015; public static final int abc_screen_toolbar = 0x7f0c0016; public static final int abc_search_dropdown_item_icons_2line = 0x7f0c0017; public static final int abc_search_view = 0x7f0c0018; public static final int abc_select_dialog_material = 0x7f0c0019; public static final int md_dialog_basic = 0x7f0c0053; public static final int md_dialog_basic_check = 0x7f0c0054; public static final int md_dialog_colorchooser = 0x7f0c0055; public static final int md_dialog_custom = 0x7f0c0056; public static final int md_dialog_input = 0x7f0c0057; public static final int md_dialog_input_check = 0x7f0c0058; public static final int md_dialog_list = 0x7f0c0059; public static final int md_dialog_list_check = 0x7f0c005a; public static final int md_dialog_progress = 0x7f0c005b; public static final int md_dialog_progress_indeterminate = 0x7f0c005c; public static final int md_dialog_progress_indeterminate_horizontal = 0x7f0c005d; public static final int md_listitem = 0x7f0c005e; public static final int md_listitem_multichoice = 0x7f0c005f; public static final int md_listitem_singlechoice = 0x7f0c0060; public static final int md_preference_custom = 0x7f0c0061; public static final int md_simplelist_item = 0x7f0c0062; public static final int md_stub_actionbuttons = 0x7f0c0063; public static final int md_stub_colorchooser_custom = 0x7f0c0064; public static final int md_stub_colorchooser_grid = 0x7f0c0065; public static final int md_stub_inputpref = 0x7f0c0066; public static final int md_stub_progress = 0x7f0c0067; public static final int md_stub_progress_indeterminate = 0x7f0c0068; public static final int md_stub_progress_indeterminate_horizontal = 0x7f0c0069; public static final int md_stub_titleframe = 0x7f0c006a; public static final int md_stub_titleframe_lesspadding = 0x7f0c006b; public static final int notification_action = 0x7f0c006e; public static final int notification_action_tombstone = 0x7f0c006f; public static final int notification_media_action = 0x7f0c0070; public static final int notification_media_cancel_action = 0x7f0c0071; public static final int notification_template_big_media = 0x7f0c0072; public static final int notification_template_big_media_custom = 0x7f0c0073; public static final int notification_template_big_media_narrow = 0x7f0c0074; public static final int notification_template_big_media_narrow_custom = 0x7f0c0075; public static final int notification_template_custom_big = 0x7f0c0076; public static final int notification_template_icon_group = 0x7f0c0077; public static final int notification_template_lines_media = 0x7f0c0078; public static final int notification_template_media = 0x7f0c0079; public static final int notification_template_media_custom = 0x7f0c007a; public static final int notification_template_part_chronometer = 0x7f0c007b; public static final int notification_template_part_time = 0x7f0c007c; public static final int select_dialog_item_material = 0x7f0c0081; public static final int select_dialog_multichoice_material = 0x7f0c0082; public static final int select_dialog_singlechoice_material = 0x7f0c0083; public static final int support_simple_spinner_dropdown_item = 0x7f0c0086; } public static final class string { public static final int abc_action_bar_home_description = 0x7f0f0002; public static final int abc_action_bar_up_description = 0x7f0f0003; public static final int abc_action_menu_overflow_description = 0x7f0f0004; public static final int abc_action_mode_done = 0x7f0f0005; public static final int abc_activity_chooser_view_see_all = 0x7f0f0006; public static final int abc_activitychooserview_choose_application = 0x7f0f0007; public static final int abc_capital_off = 0x7f0f0008; public static final int abc_capital_on = 0x7f0f0009; public static final int abc_font_family_body_1_material = 0x7f0f000a; public static final int abc_font_family_body_2_material = 0x7f0f000b; public static final int abc_font_family_button_material = 0x7f0f000c; public static final int abc_font_family_caption_material = 0x7f0f000d; public static final int abc_font_family_display_1_material = 0x7f0f000e; public static final int abc_font_family_display_2_material = 0x7f0f000f; public static final int abc_font_family_display_3_material = 0x7f0f0010; public static final int abc_font_family_display_4_material = 0x7f0f0011; public static final int abc_font_family_headline_material = 0x7f0f0012; public static final int abc_font_family_menu_material = 0x7f0f0013; public static final int abc_font_family_subhead_material = 0x7f0f0014; public static final int abc_font_family_title_material = 0x7f0f0015; public static final int abc_search_hint = 0x7f0f0016; public static final int abc_searchview_description_clear = 0x7f0f0017; public static final int abc_searchview_description_query = 0x7f0f0018; public static final int abc_searchview_description_search = 0x7f0f0019; public static final int abc_searchview_description_submit = 0x7f0f001a; public static final int abc_searchview_description_voice = 0x7f0f001b; public static final int abc_shareactionprovider_share_with = 0x7f0f001c; public static final int abc_shareactionprovider_share_with_application = 0x7f0f001d; public static final int abc_toolbar_collapse_description = 0x7f0f001e; public static final int md_back_label = 0x7f0f0055; public static final int md_cancel_label = 0x7f0f0056; public static final int md_choose_label = 0x7f0f0057; public static final int md_custom_label = 0x7f0f0058; public static final int md_done_label = 0x7f0f0059; public static final int md_error_label = 0x7f0f005a; public static final int md_presets_label = 0x7f0f005b; public static final int md_storage_perm_error = 0x7f0f005c; public static final int new_folder = 0x7f0f005d; public static final int search_menu_title = 0x7f0f0063; public static final int status_bar_notification_info_overflow = 0x7f0f0064; } public static final class style { public static final int AlertDialog_AppCompat = 0x7f100000; public static final int AlertDialog_AppCompat_Light = 0x7f100001; public static final int Animation_AppCompat_Dialog = 0x7f100002; public static final int Animation_AppCompat_DropDownUp = 0x7f100003; public static final int Animation_AppCompat_Tooltip = 0x7f100004; public static final int Base_AlertDialog_AppCompat = 0x7f10000b; public static final int Base_AlertDialog_AppCompat_Light = 0x7f10000c; public static final int Base_Animation_AppCompat_Dialog = 0x7f10000d; public static final int Base_Animation_AppCompat_DropDownUp = 0x7f10000e; public static final int Base_Animation_AppCompat_Tooltip = 0x7f10000f; public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f100012; public static final int Base_DialogWindowTitle_AppCompat = 0x7f100011; public static final int Base_TextAppearance_AppCompat = 0x7f100013; public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f100014; public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f100015; public static final int Base_TextAppearance_AppCompat_Button = 0x7f100016; public static final int Base_TextAppearance_AppCompat_Caption = 0x7f100017; public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f100018; public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f100019; public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f10001a; public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f10001b; public static final int Base_TextAppearance_AppCompat_Headline = 0x7f10001c; public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f10001d; public static final int Base_TextAppearance_AppCompat_Large = 0x7f10001e; public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f10001f; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f100020; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f100021; public static final int Base_TextAppearance_AppCompat_Medium = 0x7f100022; public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f100023; public static final int Base_TextAppearance_AppCompat_Menu = 0x7f100024; public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f100025; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f100026; public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f100027; public static final int Base_TextAppearance_AppCompat_Small = 0x7f100028; public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f100029; public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f10002a; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f10002b; public static final int Base_TextAppearance_AppCompat_Title = 0x7f10002c; public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f10002d; public static final int Base_TextAppearance_AppCompat_Tooltip = 0x7f10002e; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f10002f; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f100030; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f100031; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f100032; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f100033; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f100034; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f100035; public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f100036; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f100037; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f100038; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f100039; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f10003a; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f10003b; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f10003c; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f10003d; public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f10003e; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f10003f; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f100040; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f100041; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f100042; public static final int Base_ThemeOverlay_AppCompat = 0x7f100051; public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f100052; public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f100053; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f100054; public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f100055; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f100056; public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f100057; public static final int Base_Theme_AppCompat = 0x7f100043; public static final int Base_Theme_AppCompat_CompactMenu = 0x7f100044; public static final int Base_Theme_AppCompat_Dialog = 0x7f100045; public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f100049; public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f100046; public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f100047; public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f100048; public static final int Base_Theme_AppCompat_Light = 0x7f10004a; public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f10004b; public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f10004c; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f100050; public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f10004d; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f10004e; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f10004f; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f10005d; public static final int Base_V21_Theme_AppCompat = 0x7f100059; public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f10005a; public static final int Base_V21_Theme_AppCompat_Light = 0x7f10005b; public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f10005c; public static final int Base_V22_Theme_AppCompat = 0x7f10005f; public static final int Base_V22_Theme_AppCompat_Light = 0x7f100060; public static final int Base_V23_Theme_AppCompat = 0x7f100061; public static final int Base_V23_Theme_AppCompat_Light = 0x7f100062; public static final int Base_V26_Theme_AppCompat = 0x7f100063; public static final int Base_V26_Theme_AppCompat_Light = 0x7f100064; public static final int Base_V26_Widget_AppCompat_Toolbar = 0x7f100065; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f10006b; public static final int Base_V7_Theme_AppCompat = 0x7f100067; public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f100068; public static final int Base_V7_Theme_AppCompat_Light = 0x7f100069; public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f10006a; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f10006c; public static final int Base_V7_Widget_AppCompat_EditText = 0x7f10006d; public static final int Base_V7_Widget_AppCompat_Toolbar = 0x7f10006e; public static final int Base_Widget_AppCompat_ActionBar = 0x7f10006f; public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f100070; public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f100071; public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f100072; public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f100073; public static final int Base_Widget_AppCompat_ActionButton = 0x7f100074; public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f100075; public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f100076; public static final int Base_Widget_AppCompat_ActionMode = 0x7f100077; public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f100078; public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f100079; public static final int Base_Widget_AppCompat_Button = 0x7f10007a; public static final int Base_Widget_AppCompat_ButtonBar = 0x7f100080; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f100081; public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f10007b; public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f10007c; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f10007d; public static final int Base_Widget_AppCompat_Button_Colored = 0x7f10007e; public static final int Base_Widget_AppCompat_Button_Small = 0x7f10007f; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f100082; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f100083; public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f100084; public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f100085; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f100086; public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f100087; public static final int Base_Widget_AppCompat_EditText = 0x7f100088; public static final int Base_Widget_AppCompat_ImageButton = 0x7f100089; public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f10008a; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f10008b; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f10008c; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f10008d; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f10008e; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f10008f; public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f100090; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f100091; public static final int Base_Widget_AppCompat_ListMenuView = 0x7f100092; public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f100093; public static final int Base_Widget_AppCompat_ListView = 0x7f100094; public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f100095; public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f100096; public static final int Base_Widget_AppCompat_PopupMenu = 0x7f100097; public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f100098; public static final int Base_Widget_AppCompat_PopupWindow = 0x7f100099; public static final int Base_Widget_AppCompat_ProgressBar = 0x7f10009a; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f10009b; public static final int Base_Widget_AppCompat_RatingBar = 0x7f10009c; public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f10009d; public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f10009e; public static final int Base_Widget_AppCompat_SearchView = 0x7f10009f; public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f1000a0; public static final int Base_Widget_AppCompat_SeekBar = 0x7f1000a1; public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f1000a2; public static final int Base_Widget_AppCompat_Spinner = 0x7f1000a3; public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f1000a4; public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f1000a5; public static final int Base_Widget_AppCompat_Toolbar = 0x7f1000a6; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f1000a7; public static final int MD_ActionButton = 0x7f1000ae; public static final int MD_ActionButtonStacked = 0x7f1000b0; public static final int MD_ActionButton_Text = 0x7f1000af; public static final int MD_Dark = 0x7f1000b1; public static final int MD_Light = 0x7f1000b2; public static final int MD_WindowAnimation = 0x7f1000b3; public static final int Platform_AppCompat = 0x7f1000e7; public static final int Platform_AppCompat_Light = 0x7f1000e8; public static final int Platform_ThemeOverlay_AppCompat = 0x7f1000e9; public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f1000ea; public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f1000eb; public static final int Platform_V21_AppCompat = 0x7f1000ec; public static final int Platform_V21_AppCompat_Light = 0x7f1000ed; public static final int Platform_V25_AppCompat = 0x7f1000ee; public static final int Platform_V25_AppCompat_Light = 0x7f1000ef; public static final int Platform_Widget_AppCompat_Spinner = 0x7f1000f0; public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f1000f1; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f1000f2; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f1000f3; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f1000f4; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f1000f5; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f1000f6; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f1000fc; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f1000f7; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f1000f8; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f1000f9; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f1000fa; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f1000fb; public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f1000fd; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f1000fe; public static final int TextAppearance_AppCompat = 0x7f1000ff; public static final int TextAppearance_AppCompat_Body1 = 0x7f100100; public static final int TextAppearance_AppCompat_Body2 = 0x7f100101; public static final int TextAppearance_AppCompat_Button = 0x7f100102; public static final int TextAppearance_AppCompat_Caption = 0x7f100103; public static final int TextAppearance_AppCompat_Display1 = 0x7f100104; public static final int TextAppearance_AppCompat_Display2 = 0x7f100105; public static final int TextAppearance_AppCompat_Display3 = 0x7f100106; public static final int TextAppearance_AppCompat_Display4 = 0x7f100107; public static final int TextAppearance_AppCompat_Headline = 0x7f100108; public static final int TextAppearance_AppCompat_Inverse = 0x7f100109; public static final int TextAppearance_AppCompat_Large = 0x7f10010a; public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f10010b; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f10010c; public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f10010d; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f10010e; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f10010f; public static final int TextAppearance_AppCompat_Medium = 0x7f100110; public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f100111; public static final int TextAppearance_AppCompat_Menu = 0x7f100112; public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f100113; public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f100114; public static final int TextAppearance_AppCompat_Small = 0x7f100115; public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f100116; public static final int TextAppearance_AppCompat_Subhead = 0x7f100117; public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f100118; public static final int TextAppearance_AppCompat_Title = 0x7f100119; public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f10011a; public static final int TextAppearance_AppCompat_Tooltip = 0x7f10011b; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f10011c; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f10011d; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f10011e; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f10011f; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f100120; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f100121; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f100122; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f100123; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f100124; public static final int TextAppearance_AppCompat_Widget_Button = 0x7f100125; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f100126; public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f100127; public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f100128; public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f100129; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f10012a; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f10012b; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f10012c; public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f10012d; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f10012e; public static final int TextAppearance_Compat_Notification = 0x7f10012f; public static final int TextAppearance_Compat_Notification_Info = 0x7f100130; public static final int TextAppearance_Compat_Notification_Info_Media = 0x7f100131; public static final int TextAppearance_Compat_Notification_Line2 = 0x7f100132; public static final int TextAppearance_Compat_Notification_Line2_Media = 0x7f100133; public static final int TextAppearance_Compat_Notification_Media = 0x7f100134; public static final int TextAppearance_Compat_Notification_Time = 0x7f100135; public static final int TextAppearance_Compat_Notification_Time_Media = 0x7f100136; public static final int TextAppearance_Compat_Notification_Title = 0x7f100137; public static final int TextAppearance_Compat_Notification_Title_Media = 0x7f100138; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f100140; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f100141; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f100142; public static final int ThemeOverlay_AppCompat = 0x7f10015e; public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f10015f; public static final int ThemeOverlay_AppCompat_Dark = 0x7f100160; public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f100161; public static final int ThemeOverlay_AppCompat_Dialog = 0x7f100162; public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f100163; public static final int ThemeOverlay_AppCompat_Light = 0x7f100164; public static final int Theme_AppCompat = 0x7f100143; public static final int Theme_AppCompat_CompactMenu = 0x7f100144; public static final int Theme_AppCompat_DayNight = 0x7f100145; public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f100146; public static final int Theme_AppCompat_DayNight_Dialog = 0x7f100147; public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f10014a; public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f100148; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f100149; public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f10014b; public static final int Theme_AppCompat_Dialog = 0x7f10014c; public static final int Theme_AppCompat_DialogWhenLarge = 0x7f10014f; public static final int Theme_AppCompat_Dialog_Alert = 0x7f10014d; public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f10014e; public static final int Theme_AppCompat_Light = 0x7f100150; public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f100151; public static final int Theme_AppCompat_Light_Dialog = 0x7f100152; public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f100155; public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f100153; public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f100154; public static final int Theme_AppCompat_Light_NoActionBar = 0x7f100156; public static final int Theme_AppCompat_NoActionBar = 0x7f100157; public static final int Widget_AppCompat_ActionBar = 0x7f100165; public static final int Widget_AppCompat_ActionBar_Solid = 0x7f100166; public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f100167; public static final int Widget_AppCompat_ActionBar_TabText = 0x7f100168; public static final int Widget_AppCompat_ActionBar_TabView = 0x7f100169; public static final int Widget_AppCompat_ActionButton = 0x7f10016a; public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f10016b; public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f10016c; public static final int Widget_AppCompat_ActionMode = 0x7f10016d; public static final int Widget_AppCompat_ActivityChooserView = 0x7f10016e; public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f10016f; public static final int Widget_AppCompat_Button = 0x7f100170; public static final int Widget_AppCompat_ButtonBar = 0x7f100176; public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f100177; public static final int Widget_AppCompat_Button_Borderless = 0x7f100171; public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f100172; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f100173; public static final int Widget_AppCompat_Button_Colored = 0x7f100174; public static final int Widget_AppCompat_Button_Small = 0x7f100175; public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f100178; public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f100179; public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f10017a; public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f10017b; public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f10017c; public static final int Widget_AppCompat_EditText = 0x7f10017d; public static final int Widget_AppCompat_ImageButton = 0x7f10017e; public static final int Widget_AppCompat_Light_ActionBar = 0x7f10017f; public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f100180; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f100181; public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f100182; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f100183; public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f100184; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f100185; public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f100186; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f100187; public static final int Widget_AppCompat_Light_ActionButton = 0x7f100188; public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f100189; public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f10018a; public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f10018b; public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f10018c; public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f10018d; public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f10018e; public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f10018f; public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f100190; public static final int Widget_AppCompat_Light_PopupMenu = 0x7f100191; public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f100192; public static final int Widget_AppCompat_Light_SearchView = 0x7f100193; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f100194; public static final int Widget_AppCompat_ListMenuView = 0x7f100195; public static final int Widget_AppCompat_ListPopupWindow = 0x7f100196; public static final int Widget_AppCompat_ListView = 0x7f100197; public static final int Widget_AppCompat_ListView_DropDown = 0x7f100198; public static final int Widget_AppCompat_ListView_Menu = 0x7f100199; public static final int Widget_AppCompat_PopupMenu = 0x7f10019a; public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f10019b; public static final int Widget_AppCompat_PopupWindow = 0x7f10019c; public static final int Widget_AppCompat_ProgressBar = 0x7f10019d; public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f10019e; public static final int Widget_AppCompat_RatingBar = 0x7f10019f; public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f1001a0; public static final int Widget_AppCompat_RatingBar_Small = 0x7f1001a1; public static final int Widget_AppCompat_SearchView = 0x7f1001a2; public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f1001a3; public static final int Widget_AppCompat_SeekBar = 0x7f1001a4; public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f1001a5; public static final int Widget_AppCompat_Spinner = 0x7f1001a6; public static final int Widget_AppCompat_Spinner_DropDown = 0x7f1001a7; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f1001a8; public static final int Widget_AppCompat_Spinner_Underlined = 0x7f1001a9; public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f1001aa; public static final int Widget_AppCompat_Toolbar = 0x7f1001ab; public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f1001ac; public static final int Widget_Compat_NotificationActionContainer = 0x7f1001ad; public static final int Widget_Compat_NotificationActionText = 0x7f1001ae; public static final int Widget_MaterialProgressBar_ProgressBar = 0x7f1001ba; public static final int Widget_MaterialProgressBar_ProgressBar_Horizontal = 0x7f1001bb; public static final int Widget_MaterialProgressBar_ProgressBar_Horizontal_NoPadding = 0x7f1001bc; public static final int Widget_MaterialProgressBar_ProgressBar_Large = 0x7f1001bd; public static final int Widget_MaterialProgressBar_ProgressBar_Large_NoPadding = 0x7f1001be; public static final int Widget_MaterialProgressBar_ProgressBar_NoPadding = 0x7f1001bf; public static final int Widget_MaterialProgressBar_ProgressBar_Small = 0x7f1001c0; public static final int Widget_MaterialProgressBar_ProgressBar_Small_NoPadding = 0x7f1001c1; } public static final class styleable { public static final int[] ActionBar = { 0x7f040033, 0x7f040035, 0x7f040036, 0x7f04007b, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f04007f, 0x7f040080, 0x7f04008d, 0x7f040091, 0x7f040092, 0x7f04009d, 0x7f0400d3, 0x7f0400d4, 0x7f0400d8, 0x7f0400d9, 0x7f0400e6, 0x7f0400eb, 0x7f0400f1, 0x7f04014f, 0x7f0401b5, 0x7f0401c6, 0x7f0401ca, 0x7f0401cb, 0x7f0401f5, 0x7f0401f8, 0x7f040224, 0x7f04022e }; public static final int ActionBar_background = 0; public static final int ActionBar_backgroundSplit = 1; public static final int ActionBar_backgroundStacked = 2; public static final int ActionBar_contentInsetEnd = 3; public static final int ActionBar_contentInsetEndWithActions = 4; public static final int ActionBar_contentInsetLeft = 5; public static final int ActionBar_contentInsetRight = 6; public static final int ActionBar_contentInsetStart = 7; public static final int ActionBar_contentInsetStartWithNavigation = 8; public static final int ActionBar_customNavigationLayout = 9; public static final int ActionBar_displayOptions = 10; public static final int ActionBar_divider = 11; public static final int ActionBar_elevation = 12; public static final int ActionBar_height = 13; public static final int ActionBar_hideOnContentScroll = 14; public static final int ActionBar_homeAsUpIndicator = 15; public static final int ActionBar_homeLayout = 16; public static final int ActionBar_icon = 17; public static final int ActionBar_indeterminateProgressStyle = 18; public static final int ActionBar_itemPadding = 19; public static final int ActionBar_logo = 20; public static final int ActionBar_navigationMode = 21; public static final int ActionBar_popupTheme = 22; public static final int ActionBar_progressBarPadding = 23; public static final int ActionBar_progressBarStyle = 24; public static final int ActionBar_subtitle = 25; public static final int ActionBar_subtitleTextStyle = 26; public static final int ActionBar_title = 27; public static final int ActionBar_titleTextStyle = 28; public static final int[] ActionBarLayout = { 0x010100b3 }; public static final int ActionBarLayout_android_layout_gravity = 0; public static final int[] ActionMenuItemView = { 0x0101013f }; public static final int ActionMenuItemView_android_minWidth = 0; public static final int[] ActionMode = { 0x7f040033, 0x7f040035, 0x7f040064, 0x7f0400d3, 0x7f0401f8, 0x7f04022e }; public static final int ActionMode_background = 0; public static final int ActionMode_backgroundSplit = 1; public static final int ActionMode_closeItemLayout = 2; public static final int ActionMode_height = 3; public static final int ActionMode_subtitleTextStyle = 4; public static final int ActionMode_titleTextStyle = 5; public static final int[] ActivityChooserView = { 0x7f0400a1, 0x7f0400ec }; public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; public static final int ActivityChooserView_initialActivityCount = 1; public static final int[] AlertDialog = { 0x010100f2, 0x7f04004e, 0x7f04004f, 0x7f040146, 0x7f040147, 0x7f0401b2, 0x7f0401e3, 0x7f0401e4 }; public static final int AlertDialog_android_layout = 0; public static final int AlertDialog_buttonIconDimen = 1; public static final int AlertDialog_buttonPanelSideLayout = 2; public static final int AlertDialog_listItemLayout = 3; public static final int AlertDialog_listLayout = 4; public static final int AlertDialog_multiChoiceItemLayout = 5; public static final int AlertDialog_showTitle = 6; public static final int AlertDialog_singleChoiceItemLayout = 7; public static final int[] AppCompatImageView = { 0x01010119, 0x7f0401ec, 0x7f040222, 0x7f040223 }; public static final int AppCompatImageView_android_src = 0; public static final int AppCompatImageView_srcCompat = 1; public static final int AppCompatImageView_tint = 2; public static final int AppCompatImageView_tintMode = 3; public static final int[] AppCompatSeekBar = { 0x01010142, 0x7f04021f, 0x7f040220, 0x7f040221 }; public static final int AppCompatSeekBar_android_thumb = 0; public static final int AppCompatSeekBar_tickMark = 1; public static final int AppCompatSeekBar_tickMarkTint = 2; public static final int AppCompatSeekBar_tickMarkTintMode = 3; public static final int[] AppCompatTextHelper = { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; public static final int AppCompatTextHelper_android_textAppearance = 0; public static final int AppCompatTextHelper_android_drawableTop = 1; public static final int AppCompatTextHelper_android_drawableBottom = 2; public static final int AppCompatTextHelper_android_drawableLeft = 3; public static final int AppCompatTextHelper_android_drawableRight = 4; public static final int AppCompatTextHelper_android_drawableStart = 5; public static final int AppCompatTextHelper_android_drawableEnd = 6; public static final int[] AppCompatTextView = { 0x01010034, 0x7f04002e, 0x7f04002f, 0x7f040030, 0x7f040031, 0x7f040032, 0x7f0400c6, 0x7f04020e }; public static final int AppCompatTextView_android_textAppearance = 0; public static final int AppCompatTextView_autoSizeMaxTextSize = 1; public static final int AppCompatTextView_autoSizeMinTextSize = 2; public static final int AppCompatTextView_autoSizePresetSizes = 3; public static final int AppCompatTextView_autoSizeStepGranularity = 4; public static final int AppCompatTextView_autoSizeTextType = 5; public static final int AppCompatTextView_fontFamily = 6; public static final int AppCompatTextView_textAllCaps = 7; public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040022, 0x7f040023, 0x7f040024, 0x7f040025, 0x7f040026, 0x7f04002d, 0x7f040045, 0x7f040048, 0x7f040049, 0x7f04004a, 0x7f04004b, 0x7f04004c, 0x7f040050, 0x7f040051, 0x7f04005c, 0x7f04005d, 0x7f04006a, 0x7f04006b, 0x7f04006c, 0x7f04006d, 0x7f04006e, 0x7f04006f, 0x7f040070, 0x7f040071, 0x7f040072, 0x7f040073, 0x7f040087, 0x7f04008f, 0x7f040090, 0x7f040093, 0x7f040095, 0x7f040098, 0x7f040099, 0x7f04009a, 0x7f04009b, 0x7f04009c, 0x7f0400d8, 0x7f0400ea, 0x7f040144, 0x7f040145, 0x7f040148, 0x7f040149, 0x7f04014a, 0x7f04014b, 0x7f04014c, 0x7f04014d, 0x7f04014e, 0x7f0401bd, 0x7f0401be, 0x7f0401bf, 0x7f0401c5, 0x7f0401c7, 0x7f0401ce, 0x7f0401cf, 0x7f0401d0, 0x7f0401d1, 0x7f0401dc, 0x7f0401dd, 0x7f0401de, 0x7f0401df, 0x7f0401e9, 0x7f0401ea, 0x7f0401fc, 0x7f04020f, 0x7f040210, 0x7f040211, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040219, 0x7f040232, 0x7f040233, 0x7f040236, 0x7f040237, 0x7f040240, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024b }; public static final int AppCompatTheme_android_windowIsFloating = 0; public static final int AppCompatTheme_android_windowAnimationStyle = 1; public static final int AppCompatTheme_actionBarDivider = 2; public static final int AppCompatTheme_actionBarItemBackground = 3; public static final int AppCompatTheme_actionBarPopupTheme = 4; public static final int AppCompatTheme_actionBarSize = 5; public static final int AppCompatTheme_actionBarSplitStyle = 6; public static final int AppCompatTheme_actionBarStyle = 7; public static final int AppCompatTheme_actionBarTabBarStyle = 8; public static final int AppCompatTheme_actionBarTabStyle = 9; public static final int AppCompatTheme_actionBarTabTextStyle = 10; public static final int AppCompatTheme_actionBarTheme = 11; public static final int AppCompatTheme_actionBarWidgetTheme = 12; public static final int AppCompatTheme_actionButtonStyle = 13; public static final int AppCompatTheme_actionDropDownStyle = 14; public static final int AppCompatTheme_actionMenuTextAppearance = 15; public static final int AppCompatTheme_actionMenuTextColor = 16; public static final int AppCompatTheme_actionModeBackground = 17; public static final int AppCompatTheme_actionModeCloseButtonStyle = 18; public static final int AppCompatTheme_actionModeCloseDrawable = 19; public static final int AppCompatTheme_actionModeCopyDrawable = 20; public static final int AppCompatTheme_actionModeCutDrawable = 21; public static final int AppCompatTheme_actionModeFindDrawable = 22; public static final int AppCompatTheme_actionModePasteDrawable = 23; public static final int AppCompatTheme_actionModePopupWindowStyle = 24; public static final int AppCompatTheme_actionModeSelectAllDrawable = 25; public static final int AppCompatTheme_actionModeShareDrawable = 26; public static final int AppCompatTheme_actionModeSplitBackground = 27; public static final int AppCompatTheme_actionModeStyle = 28; public static final int AppCompatTheme_actionModeWebSearchDrawable = 29; public static final int AppCompatTheme_actionOverflowButtonStyle = 30; public static final int AppCompatTheme_actionOverflowMenuStyle = 31; public static final int AppCompatTheme_activityChooserViewStyle = 32; public static final int AppCompatTheme_alertDialogButtonGroupStyle = 33; public static final int AppCompatTheme_alertDialogCenterButtons = 34; public static final int AppCompatTheme_alertDialogStyle = 35; public static final int AppCompatTheme_alertDialogTheme = 36; public static final int AppCompatTheme_autoCompleteTextViewStyle = 37; public static final int AppCompatTheme_borderlessButtonStyle = 38; public static final int AppCompatTheme_buttonBarButtonStyle = 39; public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 40; public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 41; public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 42; public static final int AppCompatTheme_buttonBarStyle = 43; public static final int AppCompatTheme_buttonStyle = 44; public static final int AppCompatTheme_buttonStyleSmall = 45; public static final int AppCompatTheme_checkboxStyle = 46; public static final int AppCompatTheme_checkedTextViewStyle = 47; public static final int AppCompatTheme_colorAccent = 48; public static final int AppCompatTheme_colorBackgroundFloating = 49; public static final int AppCompatTheme_colorButtonNormal = 50; public static final int AppCompatTheme_colorControlActivated = 51; public static final int AppCompatTheme_colorControlHighlight = 52; public static final int AppCompatTheme_colorControlNormal = 53; public static final int AppCompatTheme_colorError = 54; public static final int AppCompatTheme_colorPrimary = 55; public static final int AppCompatTheme_colorPrimaryDark = 56; public static final int AppCompatTheme_colorSwitchThumbNormal = 57; public static final int AppCompatTheme_controlBackground = 58; public static final int AppCompatTheme_dialogPreferredPadding = 59; public static final int AppCompatTheme_dialogTheme = 60; public static final int AppCompatTheme_dividerHorizontal = 61; public static final int AppCompatTheme_dividerVertical = 62; public static final int AppCompatTheme_dropDownListViewStyle = 63; public static final int AppCompatTheme_dropdownListPreferredItemHeight = 64; public static final int AppCompatTheme_editTextBackground = 65; public static final int AppCompatTheme_editTextColor = 66; public static final int AppCompatTheme_editTextStyle = 67; public static final int AppCompatTheme_homeAsUpIndicator = 68; public static final int AppCompatTheme_imageButtonStyle = 69; public static final int AppCompatTheme_listChoiceBackgroundIndicator = 70; public static final int AppCompatTheme_listDividerAlertDialog = 71; public static final int AppCompatTheme_listMenuViewStyle = 72; public static final int AppCompatTheme_listPopupWindowStyle = 73; public static final int AppCompatTheme_listPreferredItemHeight = 74; public static final int AppCompatTheme_listPreferredItemHeightLarge = 75; public static final int AppCompatTheme_listPreferredItemHeightSmall = 76; public static final int AppCompatTheme_listPreferredItemPaddingLeft = 77; public static final int AppCompatTheme_listPreferredItemPaddingRight = 78; public static final int AppCompatTheme_panelBackground = 79; public static final int AppCompatTheme_panelMenuListTheme = 80; public static final int AppCompatTheme_panelMenuListWidth = 81; public static final int AppCompatTheme_popupMenuStyle = 82; public static final int AppCompatTheme_popupWindowStyle = 83; public static final int AppCompatTheme_radioButtonStyle = 84; public static final int AppCompatTheme_ratingBarStyle = 85; public static final int AppCompatTheme_ratingBarStyleIndicator = 86; public static final int AppCompatTheme_ratingBarStyleSmall = 87; public static final int AppCompatTheme_searchViewStyle = 88; public static final int AppCompatTheme_seekBarStyle = 89; public static final int AppCompatTheme_selectableItemBackground = 90; public static final int AppCompatTheme_selectableItemBackgroundBorderless = 91; public static final int AppCompatTheme_spinnerDropDownItemStyle = 92; public static final int AppCompatTheme_spinnerStyle = 93; public static final int AppCompatTheme_switchStyle = 94; public static final int AppCompatTheme_textAppearanceLargePopupMenu = 95; public static final int AppCompatTheme_textAppearanceListItem = 96; public static final int AppCompatTheme_textAppearanceListItemSecondary = 97; public static final int AppCompatTheme_textAppearanceListItemSmall = 98; public static final int AppCompatTheme_textAppearancePopupMenuHeader = 99; public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 100; public static final int AppCompatTheme_textAppearanceSearchResultTitle = 101; public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 102; public static final int AppCompatTheme_textColorAlertDialogListItem = 103; public static final int AppCompatTheme_textColorSearchUrl = 104; public static final int AppCompatTheme_toolbarNavigationButtonStyle = 105; public static final int AppCompatTheme_toolbarStyle = 106; public static final int AppCompatTheme_tooltipForegroundColor = 107; public static final int AppCompatTheme_tooltipFrameBackground = 108; public static final int AppCompatTheme_viewInflaterClass = 109; public static final int AppCompatTheme_windowActionBar = 110; public static final int AppCompatTheme_windowActionBarOverlay = 111; public static final int AppCompatTheme_windowActionModeOverlay = 112; public static final int AppCompatTheme_windowFixedHeightMajor = 113; public static final int AppCompatTheme_windowFixedHeightMinor = 114; public static final int AppCompatTheme_windowFixedWidthMajor = 115; public static final int AppCompatTheme_windowFixedWidthMinor = 116; public static final int AppCompatTheme_windowMinWidthMajor = 117; public static final int AppCompatTheme_windowMinWidthMinor = 118; public static final int AppCompatTheme_windowNoTitle = 119; public static final int[] ButtonBarLayout = { 0x7f040028 }; public static final int ButtonBarLayout_allowStacking = 0; public static final int[] ColorStateListItem = { 0x010101a5, 0x0101031f, 0x7f040029 }; public static final int ColorStateListItem_android_color = 0; public static final int ColorStateListItem_android_alpha = 1; public static final int ColorStateListItem_alpha = 2; public static final int[] CompoundButton = { 0x01010107, 0x7f040052, 0x7f040053 }; public static final int CompoundButton_android_button = 0; public static final int CompoundButton_buttonTint = 1; public static final int CompoundButton_buttonTintMode = 2; public static final int[] DrawerArrowToggle = { 0x7f04002b, 0x7f04002c, 0x7f040039, 0x7f040069, 0x7f040096, 0x7f0400d0, 0x7f0401e8, 0x7f04021b }; public static final int DrawerArrowToggle_arrowHeadLength = 0; public static final int DrawerArrowToggle_arrowShaftLength = 1; public static final int DrawerArrowToggle_barLength = 2; public static final int DrawerArrowToggle_color = 3; public static final int DrawerArrowToggle_drawableSize = 4; public static final int DrawerArrowToggle_gapBetweenBars = 5; public static final int DrawerArrowToggle_spinBars = 6; public static final int DrawerArrowToggle_thickness = 7; public static final int[] FontFamily = { 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb, 0x7f0400cc }; public static final int FontFamily_fontProviderAuthority = 0; public static final int FontFamily_fontProviderCerts = 1; public static final int FontFamily_fontProviderFetchStrategy = 2; public static final int FontFamily_fontProviderFetchTimeout = 3; public static final int FontFamily_fontProviderPackage = 4; public static final int FontFamily_fontProviderQuery = 5; public static final int[] FontFamilyFont = { 0x01010532, 0x01010533, 0x0101053f, 0x7f0400c5, 0x7f0400cd, 0x7f0400ce }; public static final int FontFamilyFont_android_font = 0; public static final int FontFamilyFont_android_fontWeight = 1; public static final int FontFamilyFont_android_fontStyle = 2; public static final int FontFamilyFont_font = 3; public static final int FontFamilyFont_fontStyle = 4; public static final int FontFamilyFont_fontWeight = 5; public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f040092, 0x7f040094, 0x7f04017c, 0x7f0401e1 }; public static final int LinearLayoutCompat_android_gravity = 0; public static final int LinearLayoutCompat_android_orientation = 1; public static final int LinearLayoutCompat_android_baselineAligned = 2; public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; public static final int LinearLayoutCompat_android_weightSum = 4; public static final int LinearLayoutCompat_divider = 5; public static final int LinearLayoutCompat_dividerPadding = 6; public static final int LinearLayoutCompat_measureWithLargestChild = 7; public static final int LinearLayoutCompat_showDividers = 8; public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; public static final int LinearLayoutCompat_Layout_android_layout_width = 1; public static final int LinearLayoutCompat_Layout_android_layout_height = 2; public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; public static final int[] MDRootLayout = { 0x7f040177 }; public static final int MDRootLayout_md_reduce_padding_no_title_no_buttons = 0; public static final int[] MaterialProgressBar = { 0x7f0401a5, 0x7f0401a6, 0x7f0401a7, 0x7f0401a8, 0x7f0401a9, 0x7f0401aa, 0x7f0401ab, 0x7f0401ac, 0x7f0401ad, 0x7f0401ae, 0x7f0401af, 0x7f0401b0, 0x7f0401b1 }; public static final int MaterialProgressBar_mpb_determinateCircularProgressStyle = 0; public static final int MaterialProgressBar_mpb_indeterminateTint = 1; public static final int MaterialProgressBar_mpb_indeterminateTintMode = 2; public static final int MaterialProgressBar_mpb_progressBackgroundTint = 3; public static final int MaterialProgressBar_mpb_progressBackgroundTintMode = 4; public static final int MaterialProgressBar_mpb_progressStyle = 5; public static final int MaterialProgressBar_mpb_progressTint = 6; public static final int MaterialProgressBar_mpb_progressTintMode = 7; public static final int MaterialProgressBar_mpb_secondaryProgressTint = 8; public static final int MaterialProgressBar_mpb_secondaryProgressTintMode = 9; public static final int MaterialProgressBar_mpb_setBothDrawables = 10; public static final int MaterialProgressBar_mpb_showProgressBackground = 11; public static final int MaterialProgressBar_mpb_useIntrinsicPadding = 12; public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; public static final int MenuGroup_android_enabled = 0; public static final int MenuGroup_android_id = 1; public static final int MenuGroup_android_visible = 2; public static final int MenuGroup_android_menuCategory = 3; public static final int MenuGroup_android_orderInCategory = 4; public static final int MenuGroup_android_checkableBehavior = 5; public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f04000e, 0x7f040020, 0x7f040021, 0x7f04002a, 0x7f04007a, 0x7f0400e7, 0x7f0400e8, 0x7f0401b6, 0x7f0401e0, 0x7f040238 }; public static final int MenuItem_android_icon = 0; public static final int MenuItem_android_enabled = 1; public static final int MenuItem_android_id = 2; public static final int MenuItem_android_checked = 3; public static final int MenuItem_android_visible = 4; public static final int MenuItem_android_menuCategory = 5; public static final int MenuItem_android_orderInCategory = 6; public static final int MenuItem_android_title = 7; public static final int MenuItem_android_titleCondensed = 8; public static final int MenuItem_android_alphabeticShortcut = 9; public static final int MenuItem_android_numericShortcut = 10; public static final int MenuItem_android_checkable = 11; public static final int MenuItem_android_onClick = 12; public static final int MenuItem_actionLayout = 13; public static final int MenuItem_actionProviderClass = 14; public static final int MenuItem_actionViewClass = 15; public static final int MenuItem_alphabeticModifiers = 16; public static final int MenuItem_contentDescription = 17; public static final int MenuItem_iconTint = 18; public static final int MenuItem_iconTintMode = 19; public static final int MenuItem_numericModifiers = 20; public static final int MenuItem_showAsAction = 21; public static final int MenuItem_tooltipText = 22; public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0401c8, 0x7f0401f3 }; public static final int MenuView_android_windowAnimationStyle = 0; public static final int MenuView_android_itemTextAppearance = 1; public static final int MenuView_android_horizontalDivider = 2; public static final int MenuView_android_verticalDivider = 3; public static final int MenuView_android_headerBackground = 4; public static final int MenuView_android_itemBackground = 5; public static final int MenuView_android_itemIconDisabledAlpha = 6; public static final int MenuView_preserveIconSpacing = 7; public static final int MenuView_subMenuArrow = 8; public static final int[] PopupWindow = { 0x01010176, 0x010102c9, 0x7f0401b8 }; public static final int PopupWindow_android_popupBackground = 0; public static final int PopupWindow_android_popupAnimationStyle = 1; public static final int PopupWindow_overlapAnchor = 2; public static final int[] PopupWindowBackgroundState = { 0x7f0401ee }; public static final int PopupWindowBackgroundState_state_above_anchor = 0; public static final int[] Preference = { 0x7f04023f }; public static final int Preference_useStockLayout = 0; public static final int[] RecycleListView = { 0x7f0401b9, 0x7f0401bc }; public static final int RecycleListView_paddingBottomNoButtons = 0; public static final int RecycleListView_paddingTopNoTitle = 1; public static final int[] RecyclerView = { 0x010100c4, 0x010100f1, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400f6, 0x7f0401d2, 0x7f0401e7, 0x7f0401ed }; public static final int RecyclerView_android_orientation = 0; public static final int RecyclerView_android_descendantFocusability = 1; public static final int RecyclerView_fastScrollEnabled = 2; public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 3; public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 4; public static final int RecyclerView_fastScrollVerticalThumbDrawable = 5; public static final int RecyclerView_fastScrollVerticalTrackDrawable = 6; public static final int RecyclerView_layoutManager = 7; public static final int RecyclerView_reverseLayout = 8; public static final int RecyclerView_spanCount = 9; public static final int RecyclerView_stackFromEnd = 10; public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f040063, 0x7f040076, 0x7f04008e, 0x7f0400d1, 0x7f0400e9, 0x7f0400f5, 0x7f0401cc, 0x7f0401cd, 0x7f0401da, 0x7f0401db, 0x7f0401f4, 0x7f0401f9, 0x7f040241 }; public static final int SearchView_android_focusable = 0; public static final int SearchView_android_maxWidth = 1; public static final int SearchView_android_inputType = 2; public static final int SearchView_android_imeOptions = 3; public static final int SearchView_closeIcon = 4; public static final int SearchView_commitIcon = 5; public static final int SearchView_defaultQueryHint = 6; public static final int SearchView_goIcon = 7; public static final int SearchView_iconifiedByDefault = 8; public static final int SearchView_layout = 9; public static final int SearchView_queryBackground = 10; public static final int SearchView_queryHint = 11; public static final int SearchView_searchHintIcon = 12; public static final int SearchView_searchIcon = 13; public static final int SearchView_submitBackground = 14; public static final int SearchView_suggestionRowLayout = 15; public static final int SearchView_voiceIcon = 16; public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0401c6 }; public static final int Spinner_android_entries = 0; public static final int Spinner_android_popupBackground = 1; public static final int Spinner_android_prompt = 2; public static final int Spinner_android_dropDownWidth = 3; public static final int Spinner_popupTheme = 4; public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f0401e2, 0x7f0401eb, 0x7f0401fa, 0x7f0401fb, 0x7f0401fd, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f040239, 0x7f04023a, 0x7f04023b }; public static final int SwitchCompat_android_textOn = 0; public static final int SwitchCompat_android_textOff = 1; public static final int SwitchCompat_android_thumb = 2; public static final int SwitchCompat_showText = 3; public static final int SwitchCompat_splitTrack = 4; public static final int SwitchCompat_switchMinWidth = 5; public static final int SwitchCompat_switchPadding = 6; public static final int SwitchCompat_switchTextAppearance = 7; public static final int SwitchCompat_thumbTextPadding = 8; public static final int SwitchCompat_thumbTint = 9; public static final int SwitchCompat_thumbTintMode = 10; public static final int SwitchCompat_track = 11; public static final int SwitchCompat_trackTint = 12; public static final int SwitchCompat_trackTintMode = 13; public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f0400c6, 0x7f04020e }; public static final int TextAppearance_android_textSize = 0; public static final int TextAppearance_android_typeface = 1; public static final int TextAppearance_android_textStyle = 2; public static final int TextAppearance_android_textColor = 3; public static final int TextAppearance_android_textColorHint = 4; public static final int TextAppearance_android_textColorLink = 5; public static final int TextAppearance_android_shadowColor = 6; public static final int TextAppearance_android_shadowDx = 7; public static final int TextAppearance_android_shadowDy = 8; public static final int TextAppearance_android_shadowRadius = 9; public static final int TextAppearance_android_fontFamily = 10; public static final int TextAppearance_fontFamily = 11; public static final int TextAppearance_textAllCaps = 12; public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f04004d, 0x7f040065, 0x7f040066, 0x7f04007b, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f04007f, 0x7f040080, 0x7f04014f, 0x7f040150, 0x7f04015e, 0x7f0401b3, 0x7f0401b4, 0x7f0401c6, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7, 0x7f040224, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d }; public static final int Toolbar_android_gravity = 0; public static final int Toolbar_android_minHeight = 1; public static final int Toolbar_buttonGravity = 2; public static final int Toolbar_collapseContentDescription = 3; public static final int Toolbar_collapseIcon = 4; public static final int Toolbar_contentInsetEnd = 5; public static final int Toolbar_contentInsetEndWithActions = 6; public static final int Toolbar_contentInsetLeft = 7; public static final int Toolbar_contentInsetRight = 8; public static final int Toolbar_contentInsetStart = 9; public static final int Toolbar_contentInsetStartWithNavigation = 10; public static final int Toolbar_logo = 11; public static final int Toolbar_logoDescription = 12; public static final int Toolbar_maxButtonHeight = 13; public static final int Toolbar_navigationContentDescription = 14; public static final int Toolbar_navigationIcon = 15; public static final int Toolbar_popupTheme = 16; public static final int Toolbar_subtitle = 17; public static final int Toolbar_subtitleTextAppearance = 18; public static final int Toolbar_subtitleTextColor = 19; public static final int Toolbar_title = 20; public static final int Toolbar_titleMargin = 21; public static final int Toolbar_titleMarginBottom = 22; public static final int Toolbar_titleMarginEnd = 23; public static final int Toolbar_titleMarginStart = 24; public static final int Toolbar_titleMarginTop = 25; public static final int Toolbar_titleMargins = 26; public static final int Toolbar_titleTextAppearance = 27; public static final int Toolbar_titleTextColor = 28; public static final int[] View = { 0x01010000, 0x010100da, 0x7f0401ba, 0x7f0401bb, 0x7f04021a }; public static final int View_android_theme = 0; public static final int View_android_focusable = 1; public static final int View_paddingEnd = 2; public static final int View_paddingStart = 3; public static final int View_theme = 4; public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f040037, 0x7f040038 }; public static final int ViewBackgroundHelper_android_background = 0; public static final int ViewBackgroundHelper_backgroundTint = 1; public static final int ViewBackgroundHelper_backgroundTintMode = 2; public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 }; public static final int ViewStubCompat_android_id = 0; public static final int ViewStubCompat_android_layout = 1; public static final int ViewStubCompat_android_inflatedId = 2; } }
[ "gerardogandeaga@Gmail.com" ]
gerardogandeaga@Gmail.com
549d78df01b14e3a1391f9101c4c817df374ccbb
ba2860c491c0d626239649c32f3c4fc7ac3f0947
/src/com/app43/appclient/module/db/DBUser_behavior.java
0a219aa9178d971941924d1b541e01202d38e25d
[]
no_license
jcevo/FullAppDemo
434af9857b4d540b1715ea39db896935b12ec68e
9e65f47c6749b07a7c83ddce523296725ae92e57
refs/heads/master
2023-02-13T19:48:20.244202
2013-04-24T15:41:50
2013-04-24T15:41:50
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,567
java
package com.app43.appclient.module.db; /** * 猜你喜欢用户行为分析表 */ import com.alvin.api.utils.LogOutputUtils; import com.alvin.api.utils.SettingsUtils; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import java.util.HashMap; import java.util.Map; public class DBUser_behavior extends DbHandle { String TAG = DBUser_behavior.class.getSimpleName(); public final static String sql = "CREATE TABLE IF NOT EXISTS " + SettingsUtils.USER_BEHAVIOR + " (" + " id INTEGER primary key autoincrement, " + " category_id INTEGER, " // 分类ID + " score INTEGER" // 分类积分 + ");"; public DBUser_behavior(Context context, int version) { super(context, version); } /** * 插入数据 * * @param tableName * @param category_id * @return true 则插入成功 */ public boolean inserts(long category_id, long score) { boolean flag = false; Map<Long, Long> list = getAllBehavior(); ContentValues initialValues = new ContentValues(); initialValues.put("category_id", category_id); initialValues.put("score", score); beginTrans(); LogOutputUtils.i(TAG, "更新behavior" + list.get(category_id));// 分类ID if (!list.containsKey(category_id)) { flag = db.insert(SettingsUtils.USER_BEHAVIOR, null, initialValues) > 0; } else { flag = db.update(SettingsUtils.USER_BEHAVIOR, initialValues, " category_id =" + category_id, null) > 0;// 若initialvalues为空时则插入null } endTrans(); return flag; } /** * 删除数据 暂时没用到 * * @param appid * @return true 则删除成功 */ public boolean delete(int appid) { boolean flag = true; beginTrans(); flag = db.delete(SettingsUtils.USER_BEHAVIOR, "app_id =" + appid, null) > 0; endTrans(); return flag; } /** * 查询积分高于10的appid * * @return */ public Cursor topQuery() { beginTrans(); Cursor cursor = db.rawQuery("select distinct * from " + SettingsUtils.USER_BEHAVIOR + " where score>=10 order by score desc", null); endTrans(); return cursor; } // 查询所有 public Cursor query() { beginTrans(); Cursor cursor = db.rawQuery("select distinct * from " + SettingsUtils.USER_BEHAVIOR + " order by score desc", null); endTrans(); return cursor; } /** * 获取收藏夹appsID * * @param userString * @return */ public Map<Long, Long> getThreeBehavior() { Cursor mcursor = topQuery(); Map<Long, Long> Apps = new HashMap<Long, Long>(); mcursor.moveToFirst(); for (int i = 0; i < mcursor.getCount(); i++) { Apps.put(mcursor.getLong(mcursor.getColumnIndex("category_id")), mcursor.getLong(mcursor.getColumnIndex("category_id"))); LogOutputUtils.e( "getBehaviorAppID", i + "category_id" + mcursor.getColumnIndex("category_id") + " score" + mcursor.getInt(mcursor.getColumnIndex("score"))); if (i > 2) { break; } mcursor.moveToNext(); } if (mcursor != null) { mcursor.close(); } return Apps; } public Map<Long, Long> getAllBehavior() { Cursor mcursor = query(); Map<Long, Long> Apps = new HashMap<Long, Long>(); mcursor.moveToFirst(); for (int i = 0; i < mcursor.getCount(); i++) { Apps.put(mcursor.getLong(mcursor.getColumnIndex("category_id")), mcursor.getLong(mcursor.getColumnIndex("score"))); // LogOutput.e( // "getBehaviorAppID", // i // + "category_id" // + mcursor.getLong(mcursor // .getColumnIndex("category_id")) + " score" // + mcursor.getInt(mcursor.getColumnIndex("score"))); mcursor.moveToNext(); } if (mcursor != null) { mcursor.close(); } return Apps; } }
[ "alvinli87@gmail.com" ]
alvinli87@gmail.com
0986721c553c4eeb268f42b50ec987b25edf99b2
46ce247bdb8b009d23d83f7cd39abb58056f8e86
/appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/main/java/org/openecomp/appc/adapter/netconf/exception/NetconfDAOException.java
5208915ec95279bdc7cb2597b8f8122ec6fcff16
[ "Apache-2.0" ]
permissive
arunsarat/appc
c0139f52e5c34ccd64142ef4075a016ea864b923
a5a04a7782fbb69621187ddc141c129554cc80ff
refs/heads/master
2021-04-18T23:08:48.242396
2017-06-19T21:43:30
2017-06-19T21:43:30
94,590,041
0
0
null
null
null
null
UTF-8
Java
false
false
1,534
java
/*- * ============LICENSE_START======================================================= * APPC * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. * Copyright (C) 2017 Amdocs * ================================================================================ * 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. * ============LICENSE_END========================================================= * ECOMP is a trademark and service mark of AT&T Intellectual Property. */ package org.openecomp.appc.adapter.netconf.exception; public class NetconfDAOException extends RuntimeException { private static final long serialVersionUID = -155423437162622414L; public NetconfDAOException(){ } public NetconfDAOException(String message){ super(message); } public NetconfDAOException(Throwable cause){ super(cause); } public NetconfDAOException(String message , Throwable cause){ super(message , cause); } }
[ "arunsarat@gmail.com" ]
arunsarat@gmail.com
972563841afd7e1a983c6608e422db6125162d15
6faae334f425b51d3cb5eaa7b4bc8b5d2e2ab586
/BFServer/src/service/IOService.java
66ab22b24db9eb381f38490893e40c549f1d6d41
[]
no_license
wenxiangdong/IDE
46de43eafec1b412bfdcdd7fba3663249ce2f55a
12f1a2b55b6abd812d248619e71bf80c6bdf963e
refs/heads/master
2021-03-22T00:36:14.309426
2017-07-01T14:29:25
2017-07-01T14:29:25
93,621,878
0
0
null
null
null
null
UTF-8
Java
false
false
385
java
//需要客户端的Stub package service; import java.rmi.Remote; import java.rmi.RemoteException; public interface IOService extends Remote { public boolean writeFile(String file, String userId, String fileName) throws RemoteException; public String readFile(String fileName) throws RemoteException; public String readFileList(String userId) throws RemoteException; }
[ "161250060@smail.nju.edu.cn" ]
161250060@smail.nju.edu.cn
159958979224fa01b407355818b64ede246add1c
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/31/31_d40efb532fb769946012d3f25773c2d74a920620/WeightedIntDocVector/31_d40efb532fb769946012d3f25773c2d74a920620_WeightedIntDocVector_t.java
0497ba269daff95a06914112f4d18857f82b289a
[]
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
2,447
java
package ivory.data; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import java.util.Iterator; import org.apache.hadoop.io.WritableUtils; import org.apache.log4j.Level; import org.apache.log4j.Logger; import edu.umd.cloud9.io.map.HMapIFW; /** * Implementation of {@link IntDocVector} with term weights * * @author Earl J. Wagner * */ public class WeightedIntDocVector implements IntDocVector { private static final Logger sLogger = Logger.getLogger (WeightedIntDocVector.class); { sLogger.setLevel (Level.DEBUG); } private int docLength; private HMapIFW weightedTerms; public WeightedIntDocVector () { docLength = 0; weightedTerms = new HMapIFW (); } public WeightedIntDocVector (int docLength, HMapIFW weightedTerms) { this.docLength = docLength; this.weightedTerms = weightedTerms; } public HMapIFW getWeightedTerms() { return weightedTerms; } public void setWeightedTerms(HMapIFW weightedTerms) { this.weightedTerms = weightedTerms; } public int getDocLength () { return docLength; } public void setDocLength (int docLength) { this.docLength = docLength; } public void write (DataOutput out) throws IOException { WritableUtils.writeVInt (out, docLength); weightedTerms.write (out); } public void readFields (DataInput in) throws IOException { docLength = WritableUtils.readVInt (in); weightedTerms = new HMapIFW (); weightedTerms.readFields (in); } public Reader getReader () throws IOException { return null; } public float dot (WeightedIntDocVector otherVector) { //sLogger.debug ("dot (otherVector: " + otherVector + ")"); float result = weightedTerms.dot (otherVector.weightedTerms); //sLogger.debug ("in KMeansClusterDocs mapper dotProduct () returning: " + result); return result; } public void plus (WeightedIntDocVector otherVector) { //sLogger.debug ("plus (otherVector: " + otherVector + ")"); //sLogger.debug ("weightedTerms == null: " + (weightedTerms == null)); //sLogger.debug ("otherVector.mWeightedTerms == null: " + (otherVector.mWeightedTerms == null)); weightedTerms.plus (otherVector.weightedTerms); docLength += otherVector.docLength; } public void normalizeWith (float l) { for (int f : weightedTerms.keySet ()) { weightedTerms.put (f, weightedTerms.get (f) / l); } } }
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
1517cd11ac3fecfa97c372e1258c6c30b5c9d684
bcbd056b77a137b34eb5f2a05a50d7eb8d399ad4
/app/src/main/java/com/zitab/base/mvp/LifecyclePresenter.java
3d3f284b112bf8a83db6ff732f27c8a0e1511f94
[]
no_license
collosdeveloper/zitab
7d0e15bbabaca21906bcccfef37282a302d3d8fc
9cd7fc427a42d9beeca35ea44cea28037fa9f46b
refs/heads/master
2021-10-28T03:38:33.019188
2019-04-21T14:02:24
2019-04-21T14:02:24
182,540,859
0
0
null
null
null
null
UTF-8
Java
false
false
3,822
java
package com.zitab.base.mvp; import android.content.Context; import android.content.res.Resources; import android.os.Bundle; import android.support.annotation.CallSuper; import android.support.annotation.Nullable; import android.util.SparseArray; import com.zitab.utils.RxUtils; import io.reactivex.disposables.CompositeDisposable; import io.reactivex.disposables.Disposable; public abstract class LifecyclePresenter<T> { private SparseArray<CompositeDisposable> aliveDisposables = new SparseArray<>(); private T view; private Context context; private Resources resources; private boolean paused = true; private boolean stopped = true; private boolean viewDestroyed = true; private boolean destroyed = true; @CallSuper public void attachToView(T view, @Nullable Bundle savedInstanceState) { this.view = view; viewDestroyed = false; } @CallSuper public void onAttach(Context context) { this.context = context; this.resources = context.getResources(); } @CallSuper public void onCreate(@Nullable Bundle savedInstanceState) { validateLifecycleDisposables(State.CREATE); destroyed = false; } @CallSuper public void onStart() { validateLifecycleDisposables(State.START); stopped = false; } @CallSuper public void onResume() { validateLifecycleDisposables(State.RESUME); paused = false; } @CallSuper public void onPause() { validateLifecycleDisposables(State.PAUSE); paused = true; } @CallSuper public void onStop() { validateLifecycleDisposables(State.STOP); stopped = true; } @CallSuper public void onDestroyView() { validateLifecycleDisposables(State.DESTROY_VIEW); viewDestroyed = true; view = null; } @CallSuper public void onDestroy() { validateLifecycleDisposables(State.DESTROY); destroyed = true; } public void onSaveInstanceState(Bundle state) { } public T getView() { return view; } protected boolean isDestroyed() { return destroyed; } protected boolean isStopped() { return stopped; } protected boolean isPaused() { return paused; } protected boolean isCreated() { return !destroyed; } protected boolean isStarted() { return !stopped; } protected boolean isResumed() { return !paused; } protected boolean isViewDestroyed() { return viewDestroyed; } private void validateLifecycleDisposables(@LifecycleState int state) { CompositeDisposable disposables = aliveDisposables.get(state); if (disposables != null) { RxUtils.safeDispose(disposables); disposables.clear(); aliveDisposables.remove(state); } } private void addDisposableToStateMap(Disposable disposable, @LifecycleState int unsubscribeOn) { CompositeDisposable disposables = aliveDisposables.get(unsubscribeOn); if (disposables == null) { disposables = new CompositeDisposable(); aliveDisposables.put(unsubscribeOn, disposables); } disposables.add(disposable); } public Context getContext() { return context; } public Resources getResources() { return resources; } protected void monitor(Disposable disposable, @LifecycleState int unsubscribeOn) { switch (unsubscribeOn) { case State.CREATE: if (isCreated()) RxUtils.safeDispose(disposable); break; case State.START: if (isStarted()) RxUtils.safeDispose(disposable); break; case State.RESUME: if (isResumed()) RxUtils.safeDispose(disposable); break; case State.PAUSE: if (isPaused()) RxUtils.safeDispose(disposable); break; case State.STOP: if (isStopped()) RxUtils.safeDispose(disposable); break; case State.DESTROY_VIEW: if (isViewDestroyed()) RxUtils.safeDispose(disposable); break; case State.DESTROY: if (isDestroyed()) RxUtils.safeDispose(disposable); break; } addDisposableToStateMap(disposable, unsubscribeOn); } }
[ "collosdeveloper@gmail.com" ]
collosdeveloper@gmail.com
027ef759a9e95e79bf727a621443780b33a6111c
b24818a948152b06c7d85ac442e9b37cb6becbbc
/src/main/java/com/ash/experiments/performance/whitespace/Class5636.java
076fd8aa89729c2ecb339887796bf88f1bcc2364
[]
no_license
ajorpheus/whitespace-perf-test
d0797b6aa3eea1435eaa1032612f0874537c58b8
d2b695aa09c6066fbba0aceb230fa4e308670b32
refs/heads/master
2020-04-17T23:38:39.420657
2014-06-02T09:27:17
2014-06-02T09:27:17
null
0
0
null
null
null
null
UTF-8
Java
false
false
41
java
public class Class5636 {}
[ "Ashutosh.Jindal@monitise.com" ]
Ashutosh.Jindal@monitise.com
48c2b3d70d3af583a5b504965ee4ae0b719d672f
3b6b4e01e7bc2a00fc423baba89a8ed50865d36c
/src/main/java/loaders/Products.java
89a817cb3833604b62a4f2cc12e9dde073d0b759
[ "BSD-2-Clause" ]
permissive
tpollard64/in-stock-bot-aio
c77cabe05e14f609cd0ec9f615abc0e5314ad091
14e2a7483701048aa855f2723e3e4f24cfe6f4f4
refs/heads/master
2023-01-20T17:28:20.312027
2020-11-20T17:40:23
2020-11-20T17:40:23
314,618,814
0
1
null
2020-11-20T17:40:24
2020-11-20T17:06:57
Java
UTF-8
Java
false
false
2,805
java
package loaders; import com.google.gson.GsonBuilder; import com.google.gson.JsonIOException; import com.google.gson.JsonSyntaxException; import com.google.gson.reflect.TypeToken; import java.io.File; import java.io.FileNotFoundException; import java.io.FileReader; import java.lang.reflect.Type; import java.util.ArrayList; public class Products { public static ArrayList<ProductObject> load(String name){ File file = new File(name); if(!file.exists()){ System.out.println(name + " not found...creating file."); create(name); return null; } Type type = new TypeToken<ArrayList<ProductObject>>() { }.getType(); try { return new GsonBuilder().create().fromJson(new FileReader(name), type); } catch (JsonIOException | JsonSyntaxException | FileNotFoundException e) { e.printStackTrace(); } return null; } public static void create(String name) { ArrayList<ProductObject> products = new ArrayList<>(); } public static class ProductObject { private String series, brand, model, productID, payment, url, price, store; private int tasks; public ProductObject(String series, String brand, String model, String productID, String payment, String url, String price, String store, String addToCartUrl, String mobileUrl, int tasks){ this.series = series; this.brand = brand; this.model = model; this.url = url; this.price = price; this.series = store; this.tasks = tasks; } public String getSeries() { return series; } public String getBrand() { return brand; } public String getModel() { return model; } public String getProductID() { return productID; } public String getPayment(){ return payment; } public String getUrl() { return url; } public String getPrice() { return price; } public String getStore() { return store; } public int getTasks() { return tasks; } @Override public String toString() { return "ProductObject{" + "series='" + series + '\'' + ", brand='" + brand + '\'' + ", model='" + model + '\'' + ", productID='" + productID + '\'' + ", url='" + url + '\'' + ", price='" + price + '\'' + ", store='" + store + '\'' + ", tasks='" + tasks + '\'' + '}'; } } }
[ "70110572+tpollard64@users.noreply.github.com" ]
70110572+tpollard64@users.noreply.github.com
aa9dd1fb7213d0a6a877660bdf9de96c462e8e5f
24df378c919dd8c10f268790c46f88580ee0a4fb
/src/collections/List/GeomProgression.java
d2c88ce78b930868a338fc5102222ab14254c8d5
[]
no_license
NDreKru/job4j_exercises
6cb8089ad8255b61ba592108430a67ac2e4aad21
136db76e9e7d7c8c77b2007a6107384dfd2d80eb
refs/heads/master
2023-05-14T07:33:03.143671
2021-06-07T09:21:43
2021-06-07T09:21:43
367,078,288
0
0
null
null
null
null
UTF-8
Java
false
false
514
java
package collections.List; import java.util.ArrayList; import java.util.List; public class GeomProgression { public static int generateAndSum(int first, int denominator, int count) { List<Integer> list = new ArrayList<>(count); int sum = first; list.add(first); for (int i = 1; i < count; i++) { int element = (int) Math.ceil(first * Math.pow(denominator, i)); list.add(i, element); sum += list.get(i); } return sum; } }
[ "ndrekrukru@gmail.com" ]
ndrekrukru@gmail.com
3d2d6d88742967f99122ce5ebacf41ef72e12c29
e89b627edff16da19b144e9c2cdc1671f259c4b8
/api/src/impl/owls/process/InputListImpl.java
817a44d89c190b4641bdb0e9d2dc3b474a46b820
[ "MIT" ]
permissive
arleyprates/owl-composer
c011570bb6ea1db815c8df0085c80cdc8287273e
fc41920f47832e6a276f679dab32027a3198487c
refs/heads/master
2021-01-10T21:45:36.722574
2012-06-20T02:04:13
2012-06-20T02:04:13
40,192,430
0
0
null
null
null
null
UTF-8
Java
false
false
2,031
java
// The MIT License // // Copyright (c) 2004 Evren Sirin // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal in the Software without restriction, including without limitation the // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or // sell copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. /* * Created on Dec 27, 2003 * */ package impl.owls.process; import java.net.URI; import org.mindswap.owl.OWLIndividualList; import org.mindswap.owls.process.Input; import org.mindswap.owls.process.InputList; /** * @author Evren Sirin * */ public class InputListImpl extends ParameterListImpl implements InputList { public InputListImpl() { super(Input.class); } public InputListImpl(OWLIndividualList list) { super(list, Input.class); } /* (non-Javadoc) * @see org.mindswap.owls.process.ParameterList#parameterAt(int) */ public Input inputAt(int index) { return (Input) get(index); } /* (non-Javadoc) * @see org.mindswap.owls.process.ParameterList#getParameter(java.lang.String) */ public Input getInput(URI parameterURI) { return (Input) getIndividual(parameterURI); } }
[ "fabricioalves.07@gmail.com" ]
fabricioalves.07@gmail.com
a37e84548eb7466060c91b694d285b12f0ed5872
628b8bf187f5a1e61b27d6f6983571c85a5340d6
/Project/app/src/main/java/ren/jieshu/jieshuren/base/BaseFragment.java
e8e1035886dc4c1fb046822eee271d70f2d29968
[]
no_license
SunWuXie/jieshuren
646a2cc699043c15027e25e2a6276d13061efa30
e0508e3418118c639ebc9d805ec3759f50c253ec
refs/heads/master
2021-07-11T22:50:43.551373
2017-10-13T08:29:38
2017-10-13T08:29:38
106,794,395
0
1
null
null
null
null
UTF-8
Java
false
false
1,305
java
package ren.jieshu.jieshuren.base; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentTransaction; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.lidroid.xutils.ViewUtils; import ren.jieshu.jieshuren.loading.IOSLoadingDialog; public abstract class BaseFragment extends Fragment { public static FragmentManager fragmentManager; public static FragmentTransaction transaction; public static IOSLoadingDialog iosLoadingDialog; @Nullable @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = createView(inflater,container,savedInstanceState); ViewUtils.inject(this, view); fragmentManager = getFragmentManager(); transaction = fragmentManager.beginTransaction(); iosLoadingDialog = new IOSLoadingDialog(); initToolBar(); init(); return view; } public void initToolBar(){ } public abstract View createView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState); public abstract void init(); }
[ "17621535432@163.com" ]
17621535432@163.com
329f8aec9152714cf1a08ca7142c0e3ff557a23b
1f19aec2ecfd756934898cf0ad2758ee18d9eca2
/u-1/u-11/u-11-111/u-11-111-1111/u-11-111-1111-f9901.java
476c0e78ecfca209f4a61aefd2b75b6d71f20a33
[]
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 9956666285357
[ "jenkins@khan.paloaltonetworks.local" ]
jenkins@khan.paloaltonetworks.local
6db230a3b0cbbc1714a6bad453e46e1f03e97d50
25ae10574a80f659473572bd802450a3811f882a
/spring-boot-validation/src/main/java/com/cjp/sbv/annotation/CheckCase.java
343d25f11ef8c77921ca7ee27ddcf5c089bd6af9
[]
no_license
allenayo/spring-boot-integration
c1a51a55922fa4ffa7df7d47c4aed134e19d90c6
9b92c7b3fb90085395391caa8f0b754660e01362
refs/heads/main
2023-06-26T17:52:55.055167
2021-07-25T09:18:03
2021-07-25T09:18:03
383,646,136
0
0
null
null
null
null
UTF-8
Java
false
false
552
java
package com.cjp.sbv.annotation; import com.cjp.sbv.entity.CaseMode; import com.cjp.sbv.validator.CheckCaseValidator; import javax.validation.Constraint; import javax.validation.Payload; import java.lang.annotation.*; @Documented @Target({ElementType.PARAMETER, ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) @Constraint(validatedBy = CheckCaseValidator.class) public @interface CheckCase { String message() default ""; Class<?>[] groups() default {}; Class<? extends Payload>[] payload() default {}; CaseMode value(); }
[ "m15766950919@163.com" ]
m15766950919@163.com
bd37c8e0dc57cb37b11c0e3cf4db46bad1147ed3
3d53f241eac05e4f7848161bd3db3229022eea4c
/CodeFights/arrayMinimumAboveBound.java
26ea2eb86a2d3c1f3def9a991d54f8062de638d7
[]
no_license
jojude/program-repo
c26d2636f812c0944a2aeb8f54fd68bc0816995c
39e2761023cc81ee577533ad86f2f175ae7b2028
refs/heads/master
2021-01-25T04:35:17.343858
2016-04-15T12:57:59
2016-04-15T12:57:59
null
0
0
null
null
null
null
UTF-8
Java
false
false
262
java
int arrayMinimumAboveBound(int[] inputArray, int bound) { int best = -1; for (int i = 0; i < inputArray.length; i++) { if (inputArray[i] > bound && (best == -1 || inputArray[i] < best)) { best = inputArray[i]; } } return best; }
[ "recervictory@gmail.com" ]
recervictory@gmail.com
3842b15a1276ceaa5757834e87cae78f0aa13521
4588ae3c127239360fc8f7959d2badf7fade3f81
/src/main/java/SimpleDotComGame/Board.java
d6f93cd1d630886bda32a3941ce27590f8559928
[]
no_license
izasemczuk/HeadFirstJava
25276141299ab76be1ca5632fd8aaf73e87f64ef
534df073ff3d29d7e4b9d033bab68200c45feb5f
refs/heads/master
2020-12-24T15:57:55.669601
2015-09-26T14:01:44
2015-09-26T14:01:44
41,027,961
0
0
null
null
null
null
UTF-8
Java
false
false
643
java
package SimpleDotComGame; /** * Created by Dell on 2015-08-24. */ public class Board { private String boardHeader = "0123456"; private String[] board = {"-", "-", "-", "-", "-", "-", "-"}; public String[] getBoard() { return board; } public void setBoard(String[] board) { this.board = board; } public void setBoardElement(int loc, String element) { this.board[loc] = element; } public void displayBoard(){ System.out.println(boardHeader); for (String znaczek : board) { System.out.print(znaczek); } System.out.println(); } }
[ "it.semczuk@gmail.com" ]
it.semczuk@gmail.com
0e4934447afdaf275b27f29d1d34ad1c7d2bc691
ddab61ca4b5c70cd655b42dbbd2ee2ad3271e5be
/GenEx/src/com/jts/gen/GenNames.java
e6af6064673b8d8ea3b94dcb3a82faa0bcf40c1a
[]
no_license
anvesh84/JtsJava
336ce3906cd453ec6b087778040af0fa0809dfad
67759138a25f6e3a2967a0961e2cc475a80ae75f
refs/heads/master
2022-11-27T23:36:19.825756
2020-07-30T08:50:42
2020-07-30T08:50:42
null
0
0
null
null
null
null
UTF-8
Java
false
false
411
java
package com.jts.gen; import java.util.ArrayList; import java.util.List; public class GenNames { public static void main(String[] args) { List<String> names = new ArrayList<String>(); names.add("Venky"); names.add("Anvesh"); names.add("Hemanth"); names.add("Prasanth"); names.add("Naveen"); // for (String s : names) { // System.out.println(s); // } names.forEach(System.out::println); } }
[ "prasanna@hexaware.com" ]
prasanna@hexaware.com
d8cb2fff8f8fb2d57f33458e00af630fc38ff3ed
f8f60ef4cae002f3500bf2a239f758221ea17948
/src/TDAArbol/TNode.java
51086212e7e93cd0b01a5a4ddda3854e0b1cc668
[]
no_license
santozzi/Estructuras-de-datos-en-Java
ca4ef77038dd76e7d16a7846c1a5935f930c8927
dd30ee8c87edec002c63ca623b4a51a98a487778
refs/heads/master
2023-07-20T12:08:53.856432
2021-09-03T02:09:53
2021-09-03T02:09:53
400,422,050
3
1
null
null
null
null
UTF-8
Java
false
false
910
java
package TDAArbol; import TDALista.DoubleLinkedList; import TDALista.Position; import TDALista.PositionList; public class TNode<E> implements Position<E> { protected TNode<E> padre; protected PositionList<TNode<E>> hijos; protected E rotulo; public TNode(TNode<E> padre, E rotulo ) { this.padre = padre; this.hijos = new DoubleLinkedList<TNode<E>>(); this.rotulo = rotulo; } public TNode(E rotulo) { this(null,rotulo); } @Override public E element() { return this.rotulo; } public TNode<E> getPadre() { return padre; } public void setPadre(TNode<E> padre) { this.padre = padre; } public PositionList<TNode<E>> getHijos() { return hijos; } public void setHijos(PositionList<TNode<E>> hijos) { this.hijos = hijos; } public E getRotulo() { return rotulo; } public void setRotulo(E rotulo) { this.rotulo = rotulo; } }
[ "santozzi@gmail.com" ]
santozzi@gmail.com
e8084be2003f90d4d4e00085a83da6bc59046c97
39a8684b498df54c0df9b2a6518847320ee54e6d
/SimplePlayer/src/com/notime2wait/simpleplayer/Track.java
4ad9342a6c99bee3b6e8d15936b45dd5f433e58a
[]
no_license
NoTimeToWait/SimplePlayer
1c3ec462dcb9f7d14594adc489727259303f2f12
7cf8876750fc5a84f0898a5ac5c9746bc174f3a9
refs/heads/master
2016-09-06T21:41:07.425936
2016-01-13T12:17:17
2016-01-13T12:17:17
34,054,411
0
0
null
null
null
null
UTF-8
Java
false
false
2,610
java
package com.notime2wait.simpleplayer; import android.os.Parcel; import android.os.Parcelable; public class Track implements Parcelable { public static String LOG_TAG = Track.class.getName(); private String title; private String path; private String album; private String artist; private String albumArt; /* public Track(String title, String path) { this.title = title; this.path = path; }*/ public Track(String title, String path, String album, String artist, String albumArt) { this.title = title; this.path = path; this.album = album; this.artist = artist; this.albumArt = albumArt; } public String getPath() { return path; } public String getTitle() { return title; } public String getAlbum() { return album; } public String getArtist() { return artist; } public String getAlbumArt(boolean dbCheck) { String art; if (dbCheck&&(albumArt==null||albumArt.isEmpty())) { art = MusicData.getInstance().getArt(this); if (art==null||art.isEmpty()) albumArt = "none"; else albumArt = art; } if ("none".equals(albumArt)) return null; return albumArt; } public Track clone() { return new Track(title, path, album, artist, albumArt); } public static final Parcelable.Creator<Track> CREATOR = new Parcelable.Creator<Track>() { public Track createFromParcel(Parcel in) { return new Track(in); } public Track[] newArray(int size) { return new Track[size]; } }; private Track(Parcel parcel) { this.title = parcel.readString(); this.path = parcel.readString(); this.album = parcel.readString(); this.artist = parcel.readString(); this.albumArt = parcel.readString(); } @Override public int describeContents() { return 0; } @Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(title); dest.writeString(path); dest.writeString(album); dest.writeString(artist); dest.writeString(albumArt); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; Track other = (Track) obj; if (!title.equals(other.title)) return false; if (!album.equals(other.album)) return false; if (!artist.equals(other.artist)) return false; return true; } @Override public int hashCode() { int result = 1; result = 37*result+title.hashCode(); result = 37*result+album.hashCode(); result = 37*result+artist.hashCode(); return result; } }
[ "wasteman91@gmail.com" ]
wasteman91@gmail.com
465930af922211a43d027a48294323420d235a73
9b110b5dcd4bd3950b401459503293b9fbb586f4
/android/app/src/main/java/com/maxpoi/MainActivity.java
0c5dfe9769eef561dc0d78a92bf6c991fa488e19
[]
no_license
mmmaxxx/POIApp
231691417d65243af02d63ea07f8702dd4a0960d
6973c832492e1dccb5ce873ab71c7b0977364e3e
refs/heads/master
2023-02-28T01:14:22.236371
2021-02-06T09:05:35
2021-02-06T09:05:35
336,422,802
0
0
null
null
null
null
UTF-8
Java
false
false
339
java
package com.maxpoi; import com.facebook.react.ReactActivity; public class MainActivity extends ReactActivity { /** * Returns the name of the main component registered from JavaScript. This is used to schedule * rendering of the component. */ @Override protected String getMainComponentName() { return "MaxPOI"; } }
[ "max.webhk@gmail.com" ]
max.webhk@gmail.com
c22ed600f23ece234bc7c8106d67ffd92844c56f
2cf8741f4f196f28bdd46006789fd318bdbe5504
/Part-C/TwitterStreamAnalysis/src/jvm/org/apache/storm/starter/PartC.java
6be71f1e63211af3b5ca3ebf9ee120eaba5a8633
[]
no_license
wandonye/ExperimentingBigdata
16bb180309be4aa982337fd32b77eb5ccb44cea3
2a943320227e108c3d38d49795957dd6f9563d96
refs/heads/master
2021-01-19T01:49:18.037822
2016-11-09T20:35:55
2016-11-09T20:35:55
73,318,346
0
0
null
null
null
null
UTF-8
Java
false
false
2,817
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.storm.starter; import org.apache.storm.Config; import org.apache.storm.LocalCluster; import org.apache.storm.topology.TopologyBuilder; import org.apache.storm.utils.Utils; import org.apache.storm.starter.bolt.WriteBolt; import org.apache.storm.starter.spout.TwitterSampleSpout; public class PartC { public static void main(String[] args) { String consumerKey = "phhCqmJBYarJE2kX74oVT6L1m"; String consumerSecret = "n9WjhY81IFi3zy0qL69YxDnwkAYuamaaMINcbt7RBbOGUC1ObV"; String accessToken = "56472627-tepJv0DiQOniiUxVcDbh7gDfr7TxWFjDkeoJ4L6ht"; String accessTokenSecret = "3C3MIXeJCdVThTIgooiwqGF6iGgD4lUsKnx0KMVLWJGB7"; String[] keyWords = {"Trump","president","election","Hillary", "market","marathon","breaking", "news","FBI", "Google", "Apple", "O2O","Uber", "Elon Musk", "Tesla", "AI", "TED", "stock","technology","education","cat","obama", "robot","IoT", "hollywood"}; // String consumerKey = args[0]; // String consumerSecret = args[1]; // String accessToken = args[2]; // String accessTokenSecret = args[3]; // String[] arguments = args.clone(); // String[] keyWords = Arrays.copyOfRange(arguments, 4, arguments.length); TopologyBuilder builder = new TopologyBuilder(); builder.setSpout("twitter", new TwitterSampleSpout(consumerKey, consumerSecret, accessToken, accessTokenSecret, keyWords)); builder.setBolt("print", new WriteBolt()) .shuffleGrouping("twitter"); Config conf = new Config(); //conf.put(Config.TOPOLOGY_ACKER_EXECUTORS, 2); LocalCluster cluster = new LocalCluster(); cluster.submitTopology("PartC1", conf, builder.createTopology()); Utils.sleep(20000000); cluster.shutdown(); System.out.println("end!!!!!!"); } }
[ "dongning.wang@gmail.com" ]
dongning.wang@gmail.com
f0d994c5e7c154da11c6d1bb4ef5abf9e12888dc
962f134140c84134fb25d3f7196571b2f28a83ea
/academy/src/by/academy/lesson20/Card.java
e017410b2b7f10e173066d63de524e9dda449c48
[]
no_license
Polina-Bril/academy
59304cc8b6bd5f0d6053a5867f818ac71e580a3a
a0693381012d2f9d93cac78249fe571defbdf07e
refs/heads/master
2022-12-24T03:01:38.755115
2020-09-28T18:41:18
2020-09-28T18:41:18
275,865,743
0
0
null
null
null
null
UTF-8
Java
false
false
469
java
package by.academy.lesson20; import java.util.Date; public class Card { private String issuer; private Long cardNo; private Date expiryDate; private int sumOnCard; public boolean authorise(double amount) { if (amount < sumOnCard) { return true; } else { return false; } } @Override public String toString() { return "Card [issuer=" + issuer + ", cardNo=" + cardNo + ", expiryDate=" + expiryDate + ", sumOnCard=" + sumOnCard + "]"; } }
[ "venera_48@mail.ru" ]
venera_48@mail.ru
98734dbd2c39e5816ee04c17e4cba7f3ccba55ec
e5684d8e615da640e6d4798cd39e439236a4a90a
/java-apps/src/test/java/com/ulflander/mining/processors/extract/MaxMindFreeIPGeolocTest.java
8740a1b3b3c8216ff53034ed6c7b60fceefd049a
[]
no_license
Ulflander/minethat
6b93970b5841d846a9d18d11ae2ef7fc579881e7
d967c025d267be9d89dc1745227d5073b716c215
refs/heads/master
2021-01-19T18:35:31.815367
2014-10-30T11:39:16
2014-10-30T11:39:16
18,831,415
1
0
null
null
null
null
UTF-8
Java
false
false
1,481
java
package com.ulflander.mining.processors.extract; import com.ulflander.AbstractTest; import org.junit.Before; import org.junit.Test; public class MaxMindFreeIPGeolocTest extends AbstractTest { @Before public void setupProcessors () { s.addProcessor("extract.DocumentCleaner"); s.addProcessor("extract.DocumentSplitter"); s.addProcessor("extract.LanguageDetector"); s.addProcessor("extract.DocumentTokenizer"); s.addProcessor("extract.TokenCounter"); s.addProcessor("extract.TokenCleaner"); s.addProcessor("extract.TokenRegExpGuesser"); s.addProcessor("augment.geoloc.MaxMindIPExtraction"); } @Test public void LocalIPTest () { d.setSurface("My IP is 192.168.0.0"); s.submit(d); //Assert.assertEquals("Local IP shouldn't return a location", 0, d.getTokenAt(0,0,0,3).getResults().size()); } @Test public void RealIPResponseTest () { d.setSurface("My IP is 81.2.69.160"); s.submit(d); //Assert.assertEquals("Real IP should return a location", 1, d.getTokenAt(0,0,0,3).getResults().size()); } @Test public void RealIPCityTest () { d.setSurface("My IP is 81.2.69.160"); s.submit(d); //MaxMindIPExtractionResult res = (MaxMindIPExtractionResult) d.getTokenAt(0, 0, 0, 3).getResults().get(0); //Assert.assertEquals("Real IP should return London as city", "Arnold", res.getCity()); } }
[ "xlaumonier@gmail.com" ]
xlaumonier@gmail.com
dee769393dc913b0f79d9ad2b827c443e57f4beb
2101a19093be5de39649ba0fd7616ad907a6bcf7
/sportapp.web/src/main/java/com/pacholsky/juraj/sportapp/entity/Country.java
344d5518981a61020f2e099883f0f7db42da866a
[]
no_license
JurajKE/jurajApp
362599089163aadef39f27798f7a921ec3875a39
60bd340cd2dd96712029cf743b71b8dd71ded3c1
refs/heads/main
2022-12-31T03:18:03.632845
2020-10-14T14:28:12
2020-10-14T14:28:12
303,802,991
0
0
null
null
null
null
UTF-8
Java
false
false
758
java
package com.pacholsky.juraj.sportapp.entity; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import javax.persistence.*; @Entity @SequenceGenerator(sequenceName="country_id_seq", initialValue=1, allocationSize=1, name = "country_gen") @Table(name="country") @NamedQueries({ @NamedQuery(name = "Country.getbyisocode", query = "SELECT c FROM Country c WHERE c.isoCode = :isocode"), @NamedQuery(name = "Country.getallcountry", query = "SELECT c FROM Country c") } ) @Data @NoArgsConstructor @AllArgsConstructor public class Country { @Id @GeneratedValue(strategy = GenerationType.SEQUENCE, generator="country_gen") private int id; private String name; private String isoCode; }
[ "pacholskyj@gmail.com" ]
pacholskyj@gmail.com
8ba1563068959c0828e8b5a5b5f036dcd3def929
c8d65c584f42aa9413cd559b240168d98a9eea1c
/src/main/java/com/ejercito/UnidadDeEjercito.java
2220977a01d1788526c8f3bf6c06a839a0cffa9d
[]
no_license
ivandangelo/batallas-romanas
a39cd6d51d2601916e61b54ef953563424e25660
1ef1b2ba61b0c1c6b98f762c5e822130926fc1b5
refs/heads/master
2023-01-10T02:49:00.994782
2020-11-18T00:13:36
2020-11-18T00:13:36
313,772,101
0
0
null
null
null
null
UTF-8
Java
false
false
288
java
package com.ejercito; import java.util.PriorityQueue; public interface UnidadDeEjercito { public float calcularCapacidadDeAtaque(); public float calcularIncrementoAlAtaqueTotal(); public void tomarPosicion(PriorityQueue<Soldado> frente); public boolean estaFueraDeCombate(); }
[ "ivanuntref@gmail.com" ]
ivanuntref@gmail.com
8cca672a7c882a226b62370d5110eb967899d4e8
09f5fe0c1137d4c7f08699170b0ebdb9ee3f8fa0
/TerceraEvaluacion/src/EjercicioSiete/Main.java
8864b8ab0b59a0a275ec1d92d228bc43e345c85f
[]
no_license
m4nuelcc/Java
1dcb9aed7e02bf58ab1d859ac9c91b2566b4217e
a52bf41af8f207b6c721855e0f61d7d76399a88a
refs/heads/master
2021-06-19T05:25:18.980932
2017-07-22T11:06:37
2017-07-22T11:06:37
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,290
java
package EjercicioSiete; import java.util.LinkedList; public class Main { @SuppressWarnings("rawtypes") public static <G>void main(String[] args) { byte opcionMenu; LinkedList<Caja> lista = new LinkedList<Caja>(); LinkedList<Caja> listaNumeros = new LinkedList<Caja>(); boolean salir = false; String cadena = null; long numero = 0; while(!salir){ try { opcionMenu = EntradaSalida.pedirNumero("Seleccione una opción\n\n1. Rellenar una lista" + " con Cajas que guarden cadenas\n2. Recorrer la lista rellenada en el punto 1" + "\n3. Rellenar una lista con Cajas que guarden números de tipo Long" + "\n4. Recorrer la lista rellenada en el punto 3\n5. Salir", (byte)5); switch (opcionMenu) { case 1: Metodos.rellenarLista(lista, cadena); break; case 2: Metodos.mostrarLista(lista, cadena); break; case 3: Metodos.rellenarLista(listaNumeros, numero); break; case 4: Metodos.mostrarLista(listaNumeros, numero); break; case 5: salir = true; System.out.println("El programa ha finalizado con éxito."); break; } } catch (NullPointerException e) { System.out.println("Ha cancelado el programa."); salir = true; } } } }
[ "Alex@DESKTOP-357RCQ9" ]
Alex@DESKTOP-357RCQ9
cd1168c5925d5d76c2f549fc746426c97d3f941b
a525532dc411535019453fb4d878b030b66da8e7
/src/Proxy/Subject.java
7aee466f26bf272411a1716069176b4f19a4b14b
[]
no_license
colining/thinking_of_java
b292e7358843c780ff570b8e3a7f7edd6158e86c
5af5a67941dd99d15aca7e611961cab4e1259034
refs/heads/master
2021-01-20T14:39:30.899446
2017-03-15T13:49:02
2017-03-15T13:49:02
82,765,448
0
0
null
null
null
null
UTF-8
Java
false
false
118
java
package Proxy; /** * Created by asus on 2017/3/5. */ public interface Subject { public void doSomething(); }
[ "18810782954@163.com" ]
18810782954@163.com
8e650d2abbab4482b4944c4ad9ce3adadf879cca
34f12fb97f56b3435695670b8ee880adc4a2fbdb
/odk/src/main/java/de/illilli/opengis/odk/bo/RadarChartDatasets.java
2529f566de12fe21f5e8c7e680bfab6f5a455d86
[]
no_license
weberius/osm
8125c5c30d216d2303e3361626ad0462d075d56f
c310f67e6b441c397357677cdc2775a630227a32
refs/heads/master
2016-09-05T10:47:18.255636
2015-10-19T04:56:42
2015-10-19T04:56:42
27,240,610
0
0
null
null
null
null
UTF-8
Java
false
false
4,138
java
package de.illilli.opengis.odk.bo; import java.util.Arrays; public class RadarChartDatasets { private String label; private String fillColor; private String strokeColor; private String pointColor; private String pointStrokeColor; private String pointHighlightFill; private String pointHighlightStroke; private double[] data; public String getLabel() { return label; } public void setLabel(String label) { this.label = label; } public String getFillColor() { return fillColor; } public void setFillColor(String fillColor) { this.fillColor = fillColor; } public String getStrokeColor() { return strokeColor; } public void setStrokeColor(String strokeColor) { this.strokeColor = strokeColor; } public String getPointColor() { return pointColor; } public void setPointColor(String pointColor) { this.pointColor = pointColor; } public String getPointStrokeColor() { return pointStrokeColor; } public void setPointStrokeColor(String pointStrokeColor) { this.pointStrokeColor = pointStrokeColor; } public String getPointHighlightFill() { return pointHighlightFill; } public void setPointHighlightFill(String pointHighlightFill) { this.pointHighlightFill = pointHighlightFill; } public String getPointHighlightStroke() { return pointHighlightStroke; } public void setPointHighlightStroke(String pointHighlightStroke) { this.pointHighlightStroke = pointHighlightStroke; } public double[] getData() { return data; } public void setData(double[] data) { this.data = data; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + Arrays.hashCode(data); result = prime * result + ((fillColor == null) ? 0 : fillColor.hashCode()); result = prime * result + ((label == null) ? 0 : label.hashCode()); result = prime * result + ((pointColor == null) ? 0 : pointColor.hashCode()); result = prime * result + ((pointHighlightFill == null) ? 0 : pointHighlightFill .hashCode()); result = prime * result + ((pointHighlightStroke == null) ? 0 : pointHighlightStroke .hashCode()); result = prime * result + ((pointStrokeColor == null) ? 0 : pointStrokeColor.hashCode()); result = prime * result + ((strokeColor == null) ? 0 : strokeColor.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; RadarChartDatasets other = (RadarChartDatasets) obj; if (!Arrays.equals(data, other.data)) return false; if (fillColor == null) { if (other.fillColor != null) return false; } else if (!fillColor.equals(other.fillColor)) return false; if (label == null) { if (other.label != null) return false; } else if (!label.equals(other.label)) return false; if (pointColor == null) { if (other.pointColor != null) return false; } else if (!pointColor.equals(other.pointColor)) return false; if (pointHighlightFill == null) { if (other.pointHighlightFill != null) return false; } else if (!pointHighlightFill.equals(other.pointHighlightFill)) return false; if (pointHighlightStroke == null) { if (other.pointHighlightStroke != null) return false; } else if (!pointHighlightStroke.equals(other.pointHighlightStroke)) return false; if (pointStrokeColor == null) { if (other.pointStrokeColor != null) return false; } else if (!pointStrokeColor.equals(other.pointStrokeColor)) return false; if (strokeColor == null) { if (other.strokeColor != null) return false; } else if (!strokeColor.equals(other.strokeColor)) return false; return true; } @Override public String toString() { return "Datasets [label=" + label + ", fillColor=" + fillColor + ", strokeColor=" + strokeColor + ", pointColor=" + pointColor + ", pointStrokeColor=" + pointStrokeColor + ", pointHighlightFill=" + pointHighlightFill + ", pointHighlightStroke=" + pointHighlightStroke + ", data=" + Arrays.toString(data) + "]"; } }
[ "eberius@gmail.com" ]
eberius@gmail.com
659cf98999c5d987b446fefad01401269210a05d
b485350bed0bb03ad14c182b91056d4c4535997c
/android/app/build/generated/source/r/debug/com/othello/R.java
e1debf481abed139dea8be323609198be6a4d4b0
[]
no_license
mariogrieco/Othello-Unet-react-native
1e79e03842380d6305e0b744e2756ae632a4648c
d0f7ea610a1fac6fca146610da3946cef5f1c2dc
refs/heads/master
2021-04-29T22:09:22.303917
2018-02-15T14:14:06
2018-02-15T14:14:06
121,633,019
0
0
null
null
null
null
UTF-8
Java
false
false
405,616
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.othello; public final class R { public static final class anim { public static final int abc_fade_in=0x7f050000; public static final int abc_fade_out=0x7f050001; public static final int abc_grow_fade_in_from_bottom=0x7f050002; public static final int abc_popup_enter=0x7f050003; public static final int abc_popup_exit=0x7f050004; public static final int abc_shrink_fade_out_from_bottom=0x7f050005; public static final int abc_slide_in_bottom=0x7f050006; public static final int abc_slide_in_top=0x7f050007; public static final int abc_slide_out_bottom=0x7f050008; public static final int abc_slide_out_top=0x7f050009; public static final int catalyst_fade_in=0x7f05000a; public static final int catalyst_fade_out=0x7f05000b; public static final int catalyst_push_up_in=0x7f05000c; public static final int catalyst_push_up_out=0x7f05000d; public static final int catalyst_slide_down=0x7f05000e; public static final int catalyst_slide_up=0x7f05000f; } public static final class attr { /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarDivider=0x7f01007d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarItemBackground=0x7f01007e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f010077; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> */ public static final int actionBarSize=0x7f01007c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarSplitStyle=0x7f010079; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarStyle=0x7f010078; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabBarStyle=0x7f010073; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f010072; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f010074; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTheme=0x7f01007a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarWidgetTheme=0x7f01007b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionButtonStyle=0x7f010097; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionDropDownStyle=0x7f010093; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionLayout=0x7f01004c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionMenuTextAppearance=0x7f01007f; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int actionMenuTextColor=0x7f010080; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeBackground=0x7f010083; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseButtonStyle=0x7f010082; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseDrawable=0x7f010085; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCopyDrawable=0x7f010087; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCutDrawable=0x7f010086; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeFindDrawable=0x7f01008b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePasteDrawable=0x7f010088; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePopupWindowStyle=0x7f01008d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSelectAllDrawable=0x7f010089; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeShareDrawable=0x7f01008a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSplitBackground=0x7f010084; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeStyle=0x7f010081; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeWebSearchDrawable=0x7f01008c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowButtonStyle=0x7f010075; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f010076; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actionProviderClass=0x7f01004e; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actionViewClass=0x7f01004d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int activityChooserViewStyle=0x7f01009f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actualImageResource=0x7f010060; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> */ public static final int actualImageScaleType=0x7f01003a; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actualImageUri=0x7f01005f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f0100c1; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int alertDialogCenterButtons=0x7f0100c2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogStyle=0x7f0100c0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogTheme=0x7f0100c3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowHeadLength=0x7f01002b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowShaftLength=0x7f01002c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=0x7f0100c8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int background=0x7f01000c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int backgroundImage=0x7f01003b; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundSplit=0x7f01000e; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundStacked=0x7f01000d; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int backgroundTint=0x7f0100e4; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int backgroundTintMode=0x7f0100e5; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int barLength=0x7f01002d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int borderlessButtonStyle=0x7f01009c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarButtonStyle=0x7f010099; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=0x7f0100c6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNeutralButtonStyle=0x7f0100c7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarPositiveButtonStyle=0x7f0100c5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarStyle=0x7f010098; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonPanelSideLayout=0x7f01001f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyle=0x7f0100c9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyleSmall=0x7f0100ca; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int buttonTint=0x7f010025; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int buttonTintMode=0x7f010026; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkboxStyle=0x7f0100cb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkedTextViewStyle=0x7f0100cc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeIcon=0x7f010056; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeItemLayout=0x7f01001c; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int collapseContentDescription=0x7f0100db; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int collapseIcon=0x7f0100da; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int color=0x7f010027; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorAccent=0x7f0100b9; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorButtonNormal=0x7f0100bd; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlActivated=0x7f0100bb; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlHighlight=0x7f0100bc; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlNormal=0x7f0100ba; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimary=0x7f0100b7; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimaryDark=0x7f0100b8; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorSwitchThumbNormal=0x7f0100be; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int commitIcon=0x7f01005b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetEnd=0x7f010017; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetLeft=0x7f010018; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetRight=0x7f010019; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetStart=0x7f010016; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int controlBackground=0x7f0100bf; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int customNavigationLayout=0x7f01000f; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int defaultQueryHint=0x7f010055; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dialogPreferredPadding=0x7f010091; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dialogTheme=0x7f010090; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> */ public static final int displayOptions=0x7f010005; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int divider=0x7f01000b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerHorizontal=0x7f01009e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dividerPadding=0x7f01004a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerVertical=0x7f01009d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int drawableSize=0x7f010029; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int drawerArrowStyle=0x7f010000; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dropDownListViewStyle=0x7f0100af; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dropdownListPreferredItemHeight=0x7f010094; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextBackground=0x7f0100a5; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int editTextColor=0x7f0100a4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextStyle=0x7f0100cd; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int elevation=0x7f01001a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int expandActivityOverflowButtonDrawable=0x7f01001e; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fadeDuration=0x7f01002f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int failureImage=0x7f010035; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> */ public static final int failureImageScaleType=0x7f010036; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int gapBetweenBars=0x7f01002a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int goIcon=0x7f010057; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int height=0x7f010001; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hideOnContentScroll=0x7f010015; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f010096; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeLayout=0x7f010010; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int icon=0x7f010009; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconifiedByDefault=0x7f010053; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f010012; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int initialActivityCount=0x7f01001d; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int isLightTheme=0x7f010002; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemPadding=0x7f010014; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout=0x7f010052; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f0100b6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listDividerAlertDialog=0x7f010092; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listItemLayout=0x7f010023; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listLayout=0x7f010020; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listPopupWindowStyle=0x7f0100b0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeight=0x7f0100aa; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightLarge=0x7f0100ac; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightSmall=0x7f0100ab; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingLeft=0x7f0100ad; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingRight=0x7f0100ae; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int logo=0x7f01000a; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int logoDescription=0x7f0100de; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxButtonHeight=0x7f0100d9; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int measureWithLargestChild=0x7f010048; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int multiChoiceItemLayout=0x7f010021; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int navigationContentDescription=0x7f0100dd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int navigationIcon=0x7f0100dc; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> */ public static final int navigationMode=0x7f010004; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int overlapAnchor=0x7f010050; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int overlayImage=0x7f01003c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingEnd=0x7f0100e2; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingStart=0x7f0100e1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelBackground=0x7f0100b3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f0100b5; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int panelMenuListWidth=0x7f0100b4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int placeholderImage=0x7f010031; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> */ public static final int placeholderImageScaleType=0x7f010032; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupMenuStyle=0x7f0100a2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupTheme=0x7f01001b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupWindowStyle=0x7f0100a3; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int preserveIconSpacing=0x7f01004f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int pressedStateOverlayImage=0x7f01003d; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int progressBarAutoRotateInterval=0x7f010039; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int progressBarImage=0x7f010037; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> */ public static final int progressBarImageScaleType=0x7f010038; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int progressBarPadding=0x7f010013; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int progressBarStyle=0x7f010011; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int queryBackground=0x7f01005d; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int queryHint=0x7f010054; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int radioButtonStyle=0x7f0100ce; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyle=0x7f0100cf; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int retryImage=0x7f010033; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> */ public static final int retryImageScaleType=0x7f010034; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundAsCircle=0x7f01003e; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundBottomLeft=0x7f010043; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundBottomRight=0x7f010042; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundTopLeft=0x7f010040; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundTopRight=0x7f010041; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundWithOverlayColor=0x7f010044; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundedCornerRadius=0x7f01003f; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundingBorderColor=0x7f010046; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundingBorderPadding=0x7f010047; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundingBorderWidth=0x7f010045; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchHintIcon=0x7f010059; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchIcon=0x7f010058; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchViewStyle=0x7f0100a9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackground=0x7f01009a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f01009b; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> */ public static final int showAsAction=0x7f01004b; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> */ public static final int showDividers=0x7f010049; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int showText=0x7f010067; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f010022; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int spinBars=0x7f010028; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=0x7f010095; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerStyle=0x7f0100d0; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int splitTrack=0x7f010066; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_above_anchor=0x7f010051; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int submitBackground=0x7f01005e; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int subtitle=0x7f010006; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextAppearance=0x7f0100d3; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int subtitleTextColor=0x7f0100e0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextStyle=0x7f010008; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int suggestionRowLayout=0x7f01005c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int switchMinWidth=0x7f010064; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int switchPadding=0x7f010065; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchStyle=0x7f0100d1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchTextAppearance=0x7f010063; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". */ public static final int textAllCaps=0x7f010024; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=0x7f01008e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItem=0x7f0100b1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItemSmall=0x7f0100b2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultSubtitle=0x7f0100a7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f0100a6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f01008f; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int textColorAlertDialogListItem=0x7f0100c4; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int textColorSearchUrl=0x7f0100a8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int theme=0x7f0100e3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thickness=0x7f01002e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thumbTextPadding=0x7f010062; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int title=0x7f010003; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginBottom=0x7f0100d8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginEnd=0x7f0100d6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginStart=0x7f0100d5; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginTop=0x7f0100d7; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMargins=0x7f0100d4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextAppearance=0x7f0100d2; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleTextColor=0x7f0100df; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextStyle=0x7f010007; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarNavigationButtonStyle=0x7f0100a1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarStyle=0x7f0100a0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int track=0x7f010061; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int viewAspectRatio=0x7f010030; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int voiceIcon=0x7f01005a; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBar=0x7f010068; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBarOverlay=0x7f01006a; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionModeOverlay=0x7f01006b; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedHeightMajor=0x7f01006f; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedHeightMinor=0x7f01006d; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedWidthMajor=0x7f01006c; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedWidthMinor=0x7f01006e; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowMinWidthMajor=0x7f010070; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowMinWidthMinor=0x7f010071; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowNoTitle=0x7f010069; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f0a0002; public static final int abc_action_bar_embed_tabs_pre_jb=0x7f0a0000; public static final int abc_action_bar_expanded_action_views_exclusive=0x7f0a0003; public static final int abc_config_actionMenuItemAllCaps=0x7f0a0004; public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f0a0001; public static final int abc_config_closeDialogWhenTouchOutside=0x7f0a0005; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0006; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f0c003b; public static final int abc_background_cache_hint_selector_material_light=0x7f0c003c; public static final int abc_color_highlight_material=0x7f0c003d; public static final int abc_input_method_navigation_guard=0x7f0c0000; public static final int abc_primary_text_disable_only_material_dark=0x7f0c003e; public static final int abc_primary_text_disable_only_material_light=0x7f0c003f; public static final int abc_primary_text_material_dark=0x7f0c0040; public static final int abc_primary_text_material_light=0x7f0c0041; public static final int abc_search_url_text=0x7f0c0042; public static final int abc_search_url_text_normal=0x7f0c0001; public static final int abc_search_url_text_pressed=0x7f0c0002; public static final int abc_search_url_text_selected=0x7f0c0003; public static final int abc_secondary_text_material_dark=0x7f0c0043; public static final int abc_secondary_text_material_light=0x7f0c0044; public static final int accent_material_dark=0x7f0c0004; public static final int accent_material_light=0x7f0c0005; public static final int background_floating_material_dark=0x7f0c0006; public static final int background_floating_material_light=0x7f0c0007; public static final int background_material_dark=0x7f0c0008; public static final int background_material_light=0x7f0c0009; public static final int bright_foreground_disabled_material_dark=0x7f0c000a; public static final int bright_foreground_disabled_material_light=0x7f0c000b; public static final int bright_foreground_inverse_material_dark=0x7f0c000c; public static final int bright_foreground_inverse_material_light=0x7f0c000d; public static final int bright_foreground_material_dark=0x7f0c000e; public static final int bright_foreground_material_light=0x7f0c000f; public static final int button_material_dark=0x7f0c0010; public static final int button_material_light=0x7f0c0011; public static final int catalyst_redbox_background=0x7f0c0012; public static final int dim_foreground_disabled_material_dark=0x7f0c0013; public static final int dim_foreground_disabled_material_light=0x7f0c0014; public static final int dim_foreground_material_dark=0x7f0c0015; public static final int dim_foreground_material_light=0x7f0c0016; public static final int foreground_material_dark=0x7f0c0017; public static final int foreground_material_light=0x7f0c0018; public static final int highlighted_text_material_dark=0x7f0c0019; public static final int highlighted_text_material_light=0x7f0c001a; public static final int hint_foreground_material_dark=0x7f0c001b; public static final int hint_foreground_material_light=0x7f0c001c; public static final int material_blue_grey_800=0x7f0c001d; public static final int material_blue_grey_900=0x7f0c001e; public static final int material_blue_grey_950=0x7f0c001f; public static final int material_deep_teal_200=0x7f0c0020; public static final int material_deep_teal_500=0x7f0c0021; public static final int material_grey_100=0x7f0c0022; public static final int material_grey_300=0x7f0c0023; public static final int material_grey_50=0x7f0c0024; public static final int material_grey_600=0x7f0c0025; public static final int material_grey_800=0x7f0c0026; public static final int material_grey_850=0x7f0c0027; public static final int material_grey_900=0x7f0c0028; public static final int primary_dark_material_dark=0x7f0c0029; public static final int primary_dark_material_light=0x7f0c002a; public static final int primary_material_dark=0x7f0c002b; public static final int primary_material_light=0x7f0c002c; public static final int primary_text_default_material_dark=0x7f0c002d; public static final int primary_text_default_material_light=0x7f0c002e; public static final int primary_text_disabled_material_dark=0x7f0c002f; public static final int primary_text_disabled_material_light=0x7f0c0030; public static final int ripple_material_dark=0x7f0c0031; public static final int ripple_material_light=0x7f0c0032; public static final int secondary_text_default_material_dark=0x7f0c0033; public static final int secondary_text_default_material_light=0x7f0c0034; public static final int secondary_text_disabled_material_dark=0x7f0c0035; public static final int secondary_text_disabled_material_light=0x7f0c0036; public static final int switch_thumb_disabled_material_dark=0x7f0c0037; public static final int switch_thumb_disabled_material_light=0x7f0c0038; public static final int switch_thumb_material_dark=0x7f0c0045; public static final int switch_thumb_material_light=0x7f0c0046; public static final int switch_thumb_normal_material_dark=0x7f0c0039; public static final int switch_thumb_normal_material_light=0x7f0c003a; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f08000b; public static final int abc_action_bar_default_height_material=0x7f080001; public static final int abc_action_bar_default_padding_end_material=0x7f08000c; public static final int abc_action_bar_default_padding_start_material=0x7f08000d; public static final int abc_action_bar_icon_vertical_padding_material=0x7f08000f; public static final int abc_action_bar_overflow_padding_end_material=0x7f080010; public static final int abc_action_bar_overflow_padding_start_material=0x7f080011; public static final int abc_action_bar_progress_bar_size=0x7f080002; public static final int abc_action_bar_stacked_max_height=0x7f080012; public static final int abc_action_bar_stacked_tab_max_width=0x7f080013; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f080014; public static final int abc_action_bar_subtitle_top_margin_material=0x7f080015; public static final int abc_action_button_min_height_material=0x7f080016; public static final int abc_action_button_min_width_material=0x7f080017; public static final int abc_action_button_min_width_overflow_material=0x7f080018; public static final int abc_alert_dialog_button_bar_height=0x7f080000; public static final int abc_button_inset_horizontal_material=0x7f080019; public static final int abc_button_inset_vertical_material=0x7f08001a; public static final int abc_button_padding_horizontal_material=0x7f08001b; public static final int abc_button_padding_vertical_material=0x7f08001c; public static final int abc_config_prefDialogWidth=0x7f080005; public static final int abc_control_corner_material=0x7f08001d; public static final int abc_control_inset_material=0x7f08001e; public static final int abc_control_padding_material=0x7f08001f; public static final int abc_dialog_list_padding_vertical_material=0x7f080020; public static final int abc_dialog_min_width_major=0x7f080021; public static final int abc_dialog_min_width_minor=0x7f080022; public static final int abc_dialog_padding_material=0x7f080023; public static final int abc_dialog_padding_top_material=0x7f080024; public static final int abc_disabled_alpha_material_dark=0x7f080025; public static final int abc_disabled_alpha_material_light=0x7f080026; public static final int abc_dropdownitem_icon_width=0x7f080027; public static final int abc_dropdownitem_text_padding_left=0x7f080028; public static final int abc_dropdownitem_text_padding_right=0x7f080029; public static final int abc_edit_text_inset_bottom_material=0x7f08002a; public static final int abc_edit_text_inset_horizontal_material=0x7f08002b; public static final int abc_edit_text_inset_top_material=0x7f08002c; public static final int abc_floating_window_z=0x7f08002d; public static final int abc_list_item_padding_horizontal_material=0x7f08002e; public static final int abc_panel_menu_list_width=0x7f08002f; public static final int abc_search_view_preferred_width=0x7f080030; public static final int abc_search_view_text_min_width=0x7f080006; public static final int abc_switch_padding=0x7f08000e; public static final int abc_text_size_body_1_material=0x7f080031; public static final int abc_text_size_body_2_material=0x7f080032; public static final int abc_text_size_button_material=0x7f080033; public static final int abc_text_size_caption_material=0x7f080034; public static final int abc_text_size_display_1_material=0x7f080035; public static final int abc_text_size_display_2_material=0x7f080036; public static final int abc_text_size_display_3_material=0x7f080037; public static final int abc_text_size_display_4_material=0x7f080038; public static final int abc_text_size_headline_material=0x7f080039; public static final int abc_text_size_large_material=0x7f08003a; public static final int abc_text_size_medium_material=0x7f08003b; public static final int abc_text_size_menu_material=0x7f08003c; public static final int abc_text_size_small_material=0x7f08003d; public static final int abc_text_size_subhead_material=0x7f08003e; public static final int abc_text_size_subtitle_material_toolbar=0x7f080003; public static final int abc_text_size_title_material=0x7f08003f; public static final int abc_text_size_title_material_toolbar=0x7f080004; public static final int dialog_fixed_height_major=0x7f080007; public static final int dialog_fixed_height_minor=0x7f080008; public static final int dialog_fixed_width_major=0x7f080009; public static final int dialog_fixed_width_minor=0x7f08000a; public static final int disabled_alpha_material_dark=0x7f080040; public static final int disabled_alpha_material_light=0x7f080041; public static final int highlight_alpha_material_colored=0x7f080042; public static final int highlight_alpha_material_dark=0x7f080043; public static final int highlight_alpha_material_light=0x7f080044; public static final int notification_large_icon_height=0x7f080045; public static final int notification_large_icon_width=0x7f080046; public static final int notification_subtext_size=0x7f080047; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; public static final int abc_action_bar_item_background_material=0x7f020001; public static final int abc_btn_borderless_material=0x7f020002; public static final int abc_btn_check_material=0x7f020003; public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; public static final int abc_btn_colored_material=0x7f020006; public static final int abc_btn_default_mtrl_shape=0x7f020007; public static final int abc_btn_radio_material=0x7f020008; public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b; public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; public static final int abc_cab_background_internal_bg=0x7f02000f; public static final int abc_cab_background_top_material=0x7f020010; public static final int abc_cab_background_top_mtrl_alpha=0x7f020011; public static final int abc_control_background_material=0x7f020012; public static final int abc_dialog_material_background_dark=0x7f020013; public static final int abc_dialog_material_background_light=0x7f020014; public static final int abc_edit_text_material=0x7f020015; public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; public static final int abc_ic_clear_mtrl_alpha=0x7f020017; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020019; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001f; public static final int abc_ic_search_api_mtrl_alpha=0x7f020020; public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020021; public static final int abc_item_background_holo_dark=0x7f020022; public static final int abc_item_background_holo_light=0x7f020023; public static final int abc_list_divider_mtrl_alpha=0x7f020024; public static final int abc_list_focused_holo=0x7f020025; public static final int abc_list_longpressed_holo=0x7f020026; public static final int abc_list_pressed_holo_dark=0x7f020027; public static final int abc_list_pressed_holo_light=0x7f020028; public static final int abc_list_selector_background_transition_holo_dark=0x7f020029; public static final int abc_list_selector_background_transition_holo_light=0x7f02002a; public static final int abc_list_selector_disabled_holo_dark=0x7f02002b; public static final int abc_list_selector_disabled_holo_light=0x7f02002c; public static final int abc_list_selector_holo_dark=0x7f02002d; public static final int abc_list_selector_holo_light=0x7f02002e; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f02002f; public static final int abc_popup_background_mtrl_mult=0x7f020030; public static final int abc_ratingbar_full_material=0x7f020031; public static final int abc_spinner_mtrl_am_alpha=0x7f020032; public static final int abc_spinner_textfield_background_material=0x7f020033; public static final int abc_switch_thumb_material=0x7f020034; public static final int abc_switch_track_mtrl_alpha=0x7f020035; public static final int abc_tab_indicator_material=0x7f020036; public static final int abc_tab_indicator_mtrl_alpha=0x7f020037; public static final int abc_text_cursor_material=0x7f020038; public static final int abc_textfield_activated_mtrl_alpha=0x7f020039; public static final int abc_textfield_default_mtrl_alpha=0x7f02003a; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02003b; public static final int abc_textfield_search_default_mtrl_alpha=0x7f02003c; public static final int abc_textfield_search_material=0x7f02003d; public static final int notification_template_icon_bg=0x7f02003e; } public static final class id { public static final int action0=0x7f0d0058; public static final int action_bar=0x7f0d0048; public static final int action_bar_activity_content=0x7f0d0000; public static final int action_bar_container=0x7f0d0047; public static final int action_bar_root=0x7f0d0043; public static final int action_bar_spinner=0x7f0d0001; public static final int action_bar_subtitle=0x7f0d002c; public static final int action_bar_title=0x7f0d002b; public static final int action_context_bar=0x7f0d0049; public static final int action_divider=0x7f0d005c; public static final int action_menu_divider=0x7f0d0002; public static final int action_menu_presenter=0x7f0d0003; public static final int action_mode_bar=0x7f0d0045; public static final int action_mode_bar_stub=0x7f0d0044; public static final int action_mode_close_button=0x7f0d002d; public static final int activity_chooser_view_content=0x7f0d002e; public static final int alertTitle=0x7f0d0038; public static final int always=0x7f0d0025; public static final int beginning=0x7f0d0022; public static final int buttonPanel=0x7f0d003e; public static final int cancel_action=0x7f0d0059; public static final int catalyst_redbox_title=0x7f0d0067; public static final int center=0x7f0d001a; public static final int centerCrop=0x7f0d001b; public static final int centerInside=0x7f0d001c; public static final int checkbox=0x7f0d0040; public static final int chronometer=0x7f0d005f; public static final int collapseActionView=0x7f0d0026; public static final int contentPanel=0x7f0d0039; public static final int custom=0x7f0d003d; public static final int customPanel=0x7f0d003c; public static final int decor_content_parent=0x7f0d0046; public static final int default_activity_button=0x7f0d0031; public static final int disableHome=0x7f0d000e; public static final int edit_query=0x7f0d004a; public static final int end=0x7f0d0023; public static final int end_padder=0x7f0d0064; public static final int expand_activities_button=0x7f0d002f; public static final int expanded_menu=0x7f0d003f; public static final int fitCenter=0x7f0d001d; public static final int fitEnd=0x7f0d001e; public static final int fitStart=0x7f0d001f; public static final int fitXY=0x7f0d0020; public static final int focusCrop=0x7f0d0021; public static final int fps_text=0x7f0d0057; public static final int home=0x7f0d0004; public static final int homeAsUp=0x7f0d000f; public static final int icon=0x7f0d0033; public static final int ifRoom=0x7f0d0027; public static final int image=0x7f0d0030; public static final int info=0x7f0d0063; public static final int line1=0x7f0d005d; public static final int line3=0x7f0d0061; public static final int listMode=0x7f0d000b; public static final int list_item=0x7f0d0032; public static final int media_actions=0x7f0d005b; public static final int middle=0x7f0d0024; public static final int multiply=0x7f0d0015; public static final int never=0x7f0d0028; public static final int none=0x7f0d0010; public static final int normal=0x7f0d000c; public static final int parentPanel=0x7f0d0035; public static final int progress_circular=0x7f0d0005; public static final int progress_horizontal=0x7f0d0006; public static final int radio=0x7f0d0042; public static final int react_test_id=0x7f0d0007; public static final int rn_frame_file=0x7f0d0066; public static final int rn_frame_method=0x7f0d0065; public static final int rn_redbox_copy_button=0x7f0d006e; public static final int rn_redbox_dismiss_button=0x7f0d006c; public static final int rn_redbox_line_separator=0x7f0d0069; public static final int rn_redbox_loading_indicator=0x7f0d006a; public static final int rn_redbox_reload_button=0x7f0d006d; public static final int rn_redbox_report_button=0x7f0d006f; public static final int rn_redbox_report_label=0x7f0d006b; public static final int rn_redbox_stack=0x7f0d0068; public static final int screen=0x7f0d0016; public static final int scrollView=0x7f0d003a; public static final int search_badge=0x7f0d004c; public static final int search_bar=0x7f0d004b; public static final int search_button=0x7f0d004d; public static final int search_close_btn=0x7f0d0052; public static final int search_edit_frame=0x7f0d004e; public static final int search_go_btn=0x7f0d0054; public static final int search_mag_icon=0x7f0d004f; public static final int search_plate=0x7f0d0050; public static final int search_src_text=0x7f0d0051; public static final int search_voice_btn=0x7f0d0055; public static final int select_dialog_listview=0x7f0d0056; public static final int shortcut=0x7f0d0041; public static final int showCustom=0x7f0d0011; public static final int showHome=0x7f0d0012; public static final int showTitle=0x7f0d0013; public static final int split_action_bar=0x7f0d0008; public static final int src_atop=0x7f0d0017; public static final int src_in=0x7f0d0018; public static final int src_over=0x7f0d0019; public static final int status_bar_latest_event_content=0x7f0d005a; public static final int submit_area=0x7f0d0053; public static final int tabMode=0x7f0d000d; public static final int text=0x7f0d0062; public static final int text2=0x7f0d0060; public static final int textSpacerNoButtons=0x7f0d003b; public static final int time=0x7f0d005e; public static final int title=0x7f0d0034; public static final int title_template=0x7f0d0037; public static final int topPanel=0x7f0d0036; public static final int up=0x7f0d0009; public static final int useLogo=0x7f0d0014; public static final int view_tag_native_id=0x7f0d000a; public static final int withText=0x7f0d0029; public static final int wrap_content=0x7f0d002a; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f0b0001; public static final int abc_config_activityShortDur=0x7f0b0002; public static final int abc_max_action_buttons=0x7f0b0000; public static final int cancel_button_image_alpha=0x7f0b0003; public static final int status_bar_notification_info_maxnum=0x7f0b0004; } public static final class layout { public static final int abc_action_bar_title_item=0x7f040000; public static final int abc_action_bar_up_container=0x7f040001; public static final int abc_action_bar_view_list_nav_layout=0x7f040002; public static final int abc_action_menu_item_layout=0x7f040003; public static final int abc_action_menu_layout=0x7f040004; public static final int abc_action_mode_bar=0x7f040005; public static final int abc_action_mode_close_item_material=0x7f040006; public static final int abc_activity_chooser_view=0x7f040007; public static final int abc_activity_chooser_view_list_item=0x7f040008; public static final int abc_alert_dialog_material=0x7f040009; public static final int abc_dialog_title_material=0x7f04000a; public static final int abc_expanded_menu_layout=0x7f04000b; public static final int abc_list_menu_item_checkbox=0x7f04000c; public static final int abc_list_menu_item_icon=0x7f04000d; public static final int abc_list_menu_item_layout=0x7f04000e; public static final int abc_list_menu_item_radio=0x7f04000f; public static final int abc_popup_menu_item_layout=0x7f040010; public static final int abc_screen_content_include=0x7f040011; public static final int abc_screen_simple=0x7f040012; public static final int abc_screen_simple_overlay_action_mode=0x7f040013; public static final int abc_screen_toolbar=0x7f040014; public static final int abc_search_dropdown_item_icons_2line=0x7f040015; public static final int abc_search_view=0x7f040016; public static final int abc_select_dialog_material=0x7f040017; public static final int dev_loading_view=0x7f040018; public static final int fps_view=0x7f040019; public static final int notification_media_action=0x7f04001a; public static final int notification_media_cancel_action=0x7f04001b; public static final int notification_template_big_media=0x7f04001c; public static final int notification_template_big_media_narrow=0x7f04001d; public static final int notification_template_lines=0x7f04001e; public static final int notification_template_media=0x7f04001f; public static final int notification_template_part_chronometer=0x7f040020; public static final int notification_template_part_time=0x7f040021; public static final int redbox_item_frame=0x7f040022; public static final int redbox_item_title=0x7f040023; public static final int redbox_view=0x7f040024; public static final int select_dialog_item_material=0x7f040025; public static final int select_dialog_multichoice_material=0x7f040026; public static final int select_dialog_singlechoice_material=0x7f040027; public static final int support_simple_spinner_dropdown_item=0x7f040028; } public static final class mipmap { public static final int ic_launcher=0x7f030000; } public static final class string { public static final int abc_action_bar_home_description=0x7f070000; public static final int abc_action_bar_home_description_format=0x7f070001; public static final int abc_action_bar_home_subtitle_description_format=0x7f070002; public static final int abc_action_bar_up_description=0x7f070003; public static final int abc_action_menu_overflow_description=0x7f070004; public static final int abc_action_mode_done=0x7f070005; public static final int abc_activity_chooser_view_see_all=0x7f070006; public static final int abc_activitychooserview_choose_application=0x7f070007; public static final int abc_search_hint=0x7f070008; public static final int abc_searchview_description_clear=0x7f070009; public static final int abc_searchview_description_query=0x7f07000a; public static final int abc_searchview_description_search=0x7f07000b; public static final int abc_searchview_description_submit=0x7f07000c; public static final int abc_searchview_description_voice=0x7f07000d; public static final int abc_shareactionprovider_share_with=0x7f07000e; public static final int abc_shareactionprovider_share_with_application=0x7f07000f; public static final int abc_toolbar_collapse_description=0x7f070010; public static final int app_name=0x7f070012; public static final int catalyst_copy_button=0x7f070013; public static final int catalyst_debugjs=0x7f070014; public static final int catalyst_debugjs_nuclide=0x7f070015; public static final int catalyst_debugjs_nuclide_failure=0x7f070016; public static final int catalyst_debugjs_off=0x7f070017; public static final int catalyst_dismiss_button=0x7f070018; public static final int catalyst_element_inspector=0x7f070019; public static final int catalyst_heap_capture=0x7f07001a; public static final int catalyst_hot_module_replacement=0x7f07001b; public static final int catalyst_hot_module_replacement_off=0x7f07001c; public static final int catalyst_jsload_error=0x7f07001d; public static final int catalyst_live_reload=0x7f07001e; public static final int catalyst_live_reload_off=0x7f07001f; public static final int catalyst_loading_from_url=0x7f070020; public static final int catalyst_perf_monitor=0x7f070021; public static final int catalyst_perf_monitor_off=0x7f070022; public static final int catalyst_poke_sampling_profiler=0x7f070023; public static final int catalyst_reload_button=0x7f070024; public static final int catalyst_reloadjs=0x7f070025; public static final int catalyst_remotedbg_error=0x7f070026; public static final int catalyst_remotedbg_message=0x7f070027; public static final int catalyst_report_button=0x7f070028; public static final int catalyst_settings=0x7f070029; public static final int catalyst_settings_title=0x7f07002a; public static final int status_bar_notification_info_overflow=0x7f070011; } public static final class style { public static final int AlertDialog_AppCompat=0x7f09007a; public static final int AlertDialog_AppCompat_Light=0x7f09007b; public static final int Animation_AppCompat_Dialog=0x7f09007c; public static final int Animation_AppCompat_DropDownUp=0x7f09007d; public static final int Animation_Catalyst_RedBox=0x7f09007e; /** Customize your theme here. */ public static final int AppTheme=0x7f09007f; public static final int Base_AlertDialog_AppCompat=0x7f090080; public static final int Base_AlertDialog_AppCompat_Light=0x7f090081; public static final int Base_Animation_AppCompat_Dialog=0x7f090082; public static final int Base_Animation_AppCompat_DropDownUp=0x7f090083; public static final int Base_DialogWindowTitle_AppCompat=0x7f090084; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f090085; public static final int Base_TextAppearance_AppCompat=0x7f09002d; public static final int Base_TextAppearance_AppCompat_Body1=0x7f09002e; public static final int Base_TextAppearance_AppCompat_Body2=0x7f09002f; public static final int Base_TextAppearance_AppCompat_Button=0x7f090018; public static final int Base_TextAppearance_AppCompat_Caption=0x7f090030; public static final int Base_TextAppearance_AppCompat_Display1=0x7f090031; public static final int Base_TextAppearance_AppCompat_Display2=0x7f090032; public static final int Base_TextAppearance_AppCompat_Display3=0x7f090033; public static final int Base_TextAppearance_AppCompat_Display4=0x7f090034; public static final int Base_TextAppearance_AppCompat_Headline=0x7f090035; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f090003; public static final int Base_TextAppearance_AppCompat_Large=0x7f090036; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f090004; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f090037; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f090038; public static final int Base_TextAppearance_AppCompat_Medium=0x7f090039; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f090005; public static final int Base_TextAppearance_AppCompat_Menu=0x7f09003a; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f090086; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f09003b; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f09003c; public static final int Base_TextAppearance_AppCompat_Small=0x7f09003d; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f090006; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f09003e; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f090007; public static final int Base_TextAppearance_AppCompat_Title=0x7f09003f; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f090008; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f090040; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f090041; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f090042; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f090043; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090044; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f090045; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f090046; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f090047; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f090076; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f090087; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f090048; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f090049; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f09004a; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f09004b; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f090088; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f09004c; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f09004d; public static final int Base_Theme_AppCompat=0x7f09004e; public static final int Base_Theme_AppCompat_CompactMenu=0x7f090089; public static final int Base_Theme_AppCompat_Dialog=0x7f090009; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f09008a; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f09008b; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f09008c; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f090001; public static final int Base_Theme_AppCompat_Light=0x7f09004f; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f09008d; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f09000a; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f09008e; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f09008f; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f090090; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f090002; public static final int Base_ThemeOverlay_AppCompat=0x7f090091; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f090092; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f090093; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f090094; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f090095; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f09000b; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f09000c; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f090014; public static final int Base_V12_Widget_AppCompat_EditText=0x7f090015; public static final int Base_V21_Theme_AppCompat=0x7f090050; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f090051; public static final int Base_V21_Theme_AppCompat_Light=0x7f090052; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f090053; public static final int Base_V22_Theme_AppCompat=0x7f090074; public static final int Base_V22_Theme_AppCompat_Light=0x7f090075; public static final int Base_V23_Theme_AppCompat=0x7f090077; public static final int Base_V23_Theme_AppCompat_Light=0x7f090078; public static final int Base_V7_Theme_AppCompat=0x7f090096; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f090097; public static final int Base_V7_Theme_AppCompat_Light=0x7f090098; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f090099; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f09009a; public static final int Base_V7_Widget_AppCompat_EditText=0x7f09009b; public static final int Base_Widget_AppCompat_ActionBar=0x7f09009c; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f09009d; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f09009e; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f090054; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f090055; public static final int Base_Widget_AppCompat_ActionButton=0x7f090056; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f090057; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f090058; public static final int Base_Widget_AppCompat_ActionMode=0x7f09009f; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0900a0; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f090016; public static final int Base_Widget_AppCompat_Button=0x7f090059; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f09005a; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f09005b; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900a1; public static final int Base_Widget_AppCompat_Button_Colored=0x7f090079; public static final int Base_Widget_AppCompat_Button_Small=0x7f09005c; public static final int Base_Widget_AppCompat_ButtonBar=0x7f09005d; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900a2; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f09005e; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f09005f; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900a3; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f090000; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900a4; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f090060; public static final int Base_Widget_AppCompat_EditText=0x7f090017; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0900a5; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900a6; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900a7; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f090061; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090062; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f090063; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f090064; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090065; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f090066; public static final int Base_Widget_AppCompat_ListView=0x7f090067; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f090068; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f090069; public static final int Base_Widget_AppCompat_PopupMenu=0x7f09006a; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f09006b; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0900a8; public static final int Base_Widget_AppCompat_ProgressBar=0x7f09000d; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f09000e; public static final int Base_Widget_AppCompat_RatingBar=0x7f09006c; public static final int Base_Widget_AppCompat_SearchView=0x7f0900a9; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900aa; public static final int Base_Widget_AppCompat_Spinner=0x7f09006d; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f09006e; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f09006f; public static final int Base_Widget_AppCompat_Toolbar=0x7f0900ab; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f090070; public static final int CalendarDatePickerDialog=0x7f0900ac; public static final int CalendarDatePickerStyle=0x7f0900ad; public static final int ClockTimePickerDialog=0x7f0900ae; public static final int ClockTimePickerStyle=0x7f0900af; public static final int DialogAnimationFade=0x7f0900b0; public static final int DialogAnimationSlide=0x7f0900b1; public static final int Platform_AppCompat=0x7f09000f; public static final int Platform_AppCompat_Light=0x7f090010; public static final int Platform_ThemeOverlay_AppCompat=0x7f090071; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f090072; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f090073; public static final int Platform_V11_AppCompat=0x7f090011; public static final int Platform_V11_AppCompat_Light=0x7f090012; public static final int Platform_V14_AppCompat=0x7f090019; public static final int Platform_V14_AppCompat_Light=0x7f09001a; public static final int Platform_Widget_AppCompat_Spinner=0x7f090013; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f090020; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f090021; public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f090022; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f090023; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f090024; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f090025; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f090026; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f090027; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f090028; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f090029; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f09002a; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f09002b; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f09002c; public static final int SpinnerDatePickerDialog=0x7f0900b2; public static final int SpinnerDatePickerStyle=0x7f0900b3; public static final int SpinnerTimePickerDialog=0x7f0900b4; public static final int SpinnerTimePickerStyle=0x7f0900b5; public static final int TextAppearance_AppCompat=0x7f0900b6; public static final int TextAppearance_AppCompat_Body1=0x7f0900b7; public static final int TextAppearance_AppCompat_Body2=0x7f0900b8; public static final int TextAppearance_AppCompat_Button=0x7f0900b9; public static final int TextAppearance_AppCompat_Caption=0x7f0900ba; public static final int TextAppearance_AppCompat_Display1=0x7f0900bb; public static final int TextAppearance_AppCompat_Display2=0x7f0900bc; public static final int TextAppearance_AppCompat_Display3=0x7f0900bd; public static final int TextAppearance_AppCompat_Display4=0x7f0900be; public static final int TextAppearance_AppCompat_Headline=0x7f0900bf; public static final int TextAppearance_AppCompat_Inverse=0x7f0900c0; public static final int TextAppearance_AppCompat_Large=0x7f0900c1; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0900c2; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900c3; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900c4; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900c5; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900c6; public static final int TextAppearance_AppCompat_Medium=0x7f0900c7; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0900c8; public static final int TextAppearance_AppCompat_Menu=0x7f0900c9; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900ca; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0900cb; public static final int TextAppearance_AppCompat_Small=0x7f0900cc; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0900cd; public static final int TextAppearance_AppCompat_Subhead=0x7f0900ce; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0900cf; public static final int TextAppearance_AppCompat_Title=0x7f0900d0; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0900d1; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900d2; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0900d3; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0900d4; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0900d5; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0900d6; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0900d7; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0900d8; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0900d9; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0900da; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0900db; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0900dc; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900dd; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0900de; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0900df; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0900e0; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0900e1; public static final int TextAppearance_StatusBar_EventContent=0x7f09001b; public static final int TextAppearance_StatusBar_EventContent_Info=0x7f09001c; public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f09001d; public static final int TextAppearance_StatusBar_EventContent_Time=0x7f09001e; public static final int TextAppearance_StatusBar_EventContent_Title=0x7f09001f; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900e2; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0900e3; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0900e4; public static final int Theme=0x7f0900e5; public static final int Theme_AppCompat=0x7f0900e6; public static final int Theme_AppCompat_CompactMenu=0x7f0900e7; public static final int Theme_AppCompat_Dialog=0x7f0900e8; public static final int Theme_AppCompat_Dialog_Alert=0x7f0900e9; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0900ea; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0900eb; public static final int Theme_AppCompat_Light=0x7f0900ec; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0900ed; public static final int Theme_AppCompat_Light_Dialog=0x7f0900ee; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0900ef; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0900f0; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0900f1; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0900f2; public static final int Theme_AppCompat_NoActionBar=0x7f0900f3; public static final int Theme_Catalyst=0x7f0900f4; public static final int Theme_Catalyst_RedBox=0x7f0900f5; public static final int Theme_FullScreenDialog=0x7f0900f6; public static final int Theme_FullScreenDialogAnimatedFade=0x7f0900f7; public static final int Theme_FullScreenDialogAnimatedSlide=0x7f0900f8; public static final int Theme_ReactNative_AppCompat_Light=0x7f0900f9; public static final int Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen=0x7f0900fa; public static final int ThemeOverlay_AppCompat=0x7f0900fb; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0900fc; public static final int ThemeOverlay_AppCompat_Dark=0x7f0900fd; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900fe; public static final int ThemeOverlay_AppCompat_Light=0x7f0900ff; public static final int Widget_AppCompat_ActionBar=0x7f090100; public static final int Widget_AppCompat_ActionBar_Solid=0x7f090101; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f090102; public static final int Widget_AppCompat_ActionBar_TabText=0x7f090103; public static final int Widget_AppCompat_ActionBar_TabView=0x7f090104; public static final int Widget_AppCompat_ActionButton=0x7f090105; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f090106; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f090107; public static final int Widget_AppCompat_ActionMode=0x7f090108; public static final int Widget_AppCompat_ActivityChooserView=0x7f090109; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f09010a; public static final int Widget_AppCompat_Button=0x7f09010b; public static final int Widget_AppCompat_Button_Borderless=0x7f09010c; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f09010d; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f09010e; public static final int Widget_AppCompat_Button_Colored=0x7f09010f; public static final int Widget_AppCompat_Button_Small=0x7f090110; public static final int Widget_AppCompat_ButtonBar=0x7f090111; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f090112; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f090113; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f090114; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f090115; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f090116; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f090117; public static final int Widget_AppCompat_EditText=0x7f090118; public static final int Widget_AppCompat_Light_ActionBar=0x7f090119; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f09011a; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f09011b; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f09011c; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f09011d; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f09011e; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f09011f; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f090120; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f090121; public static final int Widget_AppCompat_Light_ActionButton=0x7f090122; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f090123; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f090124; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f090125; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f090126; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f090127; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f090128; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f090129; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f09012a; public static final int Widget_AppCompat_Light_PopupMenu=0x7f09012b; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f09012c; public static final int Widget_AppCompat_Light_SearchView=0x7f09012d; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f09012e; public static final int Widget_AppCompat_ListPopupWindow=0x7f09012f; public static final int Widget_AppCompat_ListView=0x7f090130; public static final int Widget_AppCompat_ListView_DropDown=0x7f090131; public static final int Widget_AppCompat_ListView_Menu=0x7f090132; public static final int Widget_AppCompat_PopupMenu=0x7f090133; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f090134; public static final int Widget_AppCompat_PopupWindow=0x7f090135; public static final int Widget_AppCompat_ProgressBar=0x7f090136; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f090137; public static final int Widget_AppCompat_RatingBar=0x7f090138; public static final int Widget_AppCompat_SearchView=0x7f090139; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f09013a; public static final int Widget_AppCompat_Spinner=0x7f09013b; public static final int Widget_AppCompat_Spinner_DropDown=0x7f09013c; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f09013d; public static final int Widget_AppCompat_Spinner_Underlined=0x7f09013e; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f09013f; public static final int Widget_AppCompat_Toolbar=0x7f090140; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f090141; } public static final class xml { public static final int preferences=0x7f060000; } public static final class styleable { /** Attributes that can be used with a ActionBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBar_background com.othello:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit com.othello:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked com.othello:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd com.othello:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft com.othello:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight com.othello:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart com.othello:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout com.othello:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions com.othello:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider com.othello:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation com.othello:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height com.othello:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll com.othello:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.othello:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout com.othello:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon com.othello:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.othello:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding com.othello:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo com.othello:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode com.othello:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme com.othello:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding com.othello:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle com.othello:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle com.othello:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle com.othello:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title com.othello:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle com.othello:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionBar_background @see #ActionBar_backgroundSplit @see #ActionBar_backgroundStacked @see #ActionBar_contentInsetEnd @see #ActionBar_contentInsetLeft @see #ActionBar_contentInsetRight @see #ActionBar_contentInsetStart @see #ActionBar_customNavigationLayout @see #ActionBar_displayOptions @see #ActionBar_divider @see #ActionBar_elevation @see #ActionBar_height @see #ActionBar_hideOnContentScroll @see #ActionBar_homeAsUpIndicator @see #ActionBar_homeLayout @see #ActionBar_icon @see #ActionBar_indeterminateProgressStyle @see #ActionBar_itemPadding @see #ActionBar_logo @see #ActionBar_navigationMode @see #ActionBar_popupTheme @see #ActionBar_progressBarPadding @see #ActionBar_progressBarStyle @see #ActionBar_subtitle @see #ActionBar_subtitleTextStyle @see #ActionBar_title @see #ActionBar_titleTextStyle */ public static final int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010096 }; /** <p>This symbol is the offset where the {@link com.othello.R.attr#background} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:background */ public static final int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link com.othello.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.othello:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link com.othello.R.attr#backgroundStacked} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.othello:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link com.othello.R.attr#contentInsetEnd} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link com.othello.R.attr#contentInsetLeft} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link com.othello.R.attr#contentInsetRight} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link com.othello.R.attr#contentInsetStart} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link com.othello.R.attr#customNavigationLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link com.othello.R.attr#displayOptions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> @attr name com.othello:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link com.othello.R.attr#divider} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:divider */ public static final int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link com.othello.R.attr#elevation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:elevation */ public static final int ActionBar_elevation = 24; /** <p>This symbol is the offset where the {@link com.othello.R.attr#height} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:height */ public static final int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link com.othello.R.attr#hideOnContentScroll} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link com.othello.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 26; /** <p>This symbol is the offset where the {@link com.othello.R.attr#homeLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link com.othello.R.attr#icon} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:icon */ public static final int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link com.othello.R.attr#indeterminateProgressStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link com.othello.R.attr#itemPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link com.othello.R.attr#logo} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:logo */ public static final int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link com.othello.R.attr#navigationMode} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> @attr name com.othello:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link com.othello.R.attr#popupTheme} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:popupTheme */ public static final int ActionBar_popupTheme = 25; /** <p>This symbol is the offset where the {@link com.othello.R.attr#progressBarPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link com.othello.R.attr#progressBarStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link com.othello.R.attr#subtitle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:subtitle */ public static final int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link com.othello.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link com.othello.R.attr#title} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:title */ public static final int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link com.othello.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:titleTextStyle */ public static final int ActionBar_titleTextStyle = 5; /** Attributes that can be used with a ActionBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> </table> @see #ActionBarLayout_android_layout_gravity */ public static final int[] ActionBarLayout = { 0x010100b3 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #ActionBarLayout} array. @attr name android:layout_gravity */ public static final int ActionBarLayout_android_layout_gravity = 0; /** Attributes that can be used with a ActionMenuItemView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr> </table> @see #ActionMenuItemView_android_minWidth */ public static final int[] ActionMenuItemView = { 0x0101013f }; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #ActionMenuItemView} array. @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth = 0; /** Attributes that can be used with a ActionMenuView. */ public static final int[] ActionMenuView = { }; /** Attributes that can be used with a ActionMode. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMode_background com.othello:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit com.othello:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout com.othello:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height com.othello:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle com.othello:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle com.othello:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionMode_background @see #ActionMode_backgroundSplit @see #ActionMode_closeItemLayout @see #ActionMode_height @see #ActionMode_subtitleTextStyle @see #ActionMode_titleTextStyle */ public static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }; /** <p>This symbol is the offset where the {@link com.othello.R.attr#background} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:background */ public static final int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link com.othello.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionMode} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.othello:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link com.othello.R.attr#closeItemLayout} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link com.othello.R.attr#height} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:height */ public static final int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link com.othello.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link com.othello.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:titleTextStyle */ public static final int ActionMode_titleTextStyle = 1; /** Attributes that can be used with a ActivityChooserView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.othello:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.othello:initialActivityCount}</code></td><td></td></tr> </table> @see #ActivityChooserView_expandActivityOverflowButtonDrawable @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e }; /** <p>This symbol is the offset where the {@link com.othello.R.attr#expandActivityOverflowButtonDrawable} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link com.othello.R.attr#initialActivityCount} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount = 0; /** Attributes that can be used with a AlertDialog. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.othello:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout com.othello:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout com.othello:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.othello:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.othello:singleChoiceItemLayout}</code></td><td></td></tr> </table> @see #AlertDialog_android_layout @see #AlertDialog_buttonPanelSideLayout @see #AlertDialog_listItemLayout @see #AlertDialog_listLayout @see #AlertDialog_multiChoiceItemLayout @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #AlertDialog} array. @attr name android:layout */ public static final int AlertDialog_android_layout = 0; /** <p>This symbol is the offset where the {@link com.othello.R.attr#buttonPanelSideLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link com.othello.R.attr#listItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:listItemLayout */ public static final int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link com.othello.R.attr#listLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:listLayout */ public static final int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link com.othello.R.attr#multiChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link com.othello.R.attr#singleChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout = 4; /** Attributes that can be used with a AppCompatTextView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_textAllCaps com.othello:textAllCaps}</code></td><td></td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010024 }; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextView} array. @attr name android:textAppearance */ public static final int AppCompatTextView_android_textAppearance = 0; /** <p>This symbol is the offset where the {@link com.othello.R.attr#textAllCaps} attribute's value can be found in the {@link #AppCompatTextView} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name com.othello:textAllCaps */ public static final int AppCompatTextView_textAllCaps = 1; /** Attributes that can be used with a CompoundButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTint com.othello:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode com.othello:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f010025, 0x7f010026 }; /** <p>This symbol is the offset where the {@link android.R.attr#button} attribute's value can be found in the {@link #CompoundButton} array. @attr name android:button */ public static final int CompoundButton_android_button = 0; /** <p>This symbol is the offset where the {@link com.othello.R.attr#buttonTint} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:buttonTint */ public static final int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link com.othello.R.attr#buttonTintMode} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.othello:buttonTintMode */ public static final int CompoundButton_buttonTintMode = 2; /** Attributes that can be used with a DrawerArrowToggle. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.othello:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.othello:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength com.othello:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color com.othello:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.othello:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.othello:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars com.othello:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness com.othello:thickness}</code></td><td></td></tr> </table> @see #DrawerArrowToggle_arrowHeadLength @see #DrawerArrowToggle_arrowShaftLength @see #DrawerArrowToggle_barLength @see #DrawerArrowToggle_color @see #DrawerArrowToggle_drawableSize @see #DrawerArrowToggle_gapBetweenBars @see #DrawerArrowToggle_spinBars @see #DrawerArrowToggle_thickness */ public static final int[] DrawerArrowToggle = { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }; /** <p>This symbol is the offset where the {@link com.othello.R.attr#arrowHeadLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link com.othello.R.attr#arrowShaftLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link com.othello.R.attr#barLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:barLength */ public static final int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link com.othello.R.attr#color} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:color */ public static final int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link com.othello.R.attr#drawableSize} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link com.othello.R.attr#gapBetweenBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link com.othello.R.attr#spinBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link com.othello.R.attr#thickness} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:thickness */ public static final int DrawerArrowToggle_thickness = 7; /** Attributes that can be used with a GenericDraweeHierarchy. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #GenericDraweeHierarchy_actualImageScaleType com.othello:actualImageScaleType}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_backgroundImage com.othello:backgroundImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_fadeDuration com.othello:fadeDuration}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_failureImage com.othello:failureImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_failureImageScaleType com.othello:failureImageScaleType}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_overlayImage com.othello:overlayImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_placeholderImage com.othello:placeholderImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_placeholderImageScaleType com.othello:placeholderImageScaleType}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_pressedStateOverlayImage com.othello:pressedStateOverlayImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_progressBarAutoRotateInterval com.othello:progressBarAutoRotateInterval}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_progressBarImage com.othello:progressBarImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_progressBarImageScaleType com.othello:progressBarImageScaleType}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_retryImage com.othello:retryImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_retryImageScaleType com.othello:retryImageScaleType}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundAsCircle com.othello:roundAsCircle}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundBottomLeft com.othello:roundBottomLeft}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundBottomRight com.othello:roundBottomRight}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundTopLeft com.othello:roundTopLeft}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundTopRight com.othello:roundTopRight}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundWithOverlayColor com.othello:roundWithOverlayColor}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundedCornerRadius com.othello:roundedCornerRadius}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundingBorderColor com.othello:roundingBorderColor}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundingBorderPadding com.othello:roundingBorderPadding}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundingBorderWidth com.othello:roundingBorderWidth}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_viewAspectRatio com.othello:viewAspectRatio}</code></td><td></td></tr> </table> @see #GenericDraweeHierarchy_actualImageScaleType @see #GenericDraweeHierarchy_backgroundImage @see #GenericDraweeHierarchy_fadeDuration @see #GenericDraweeHierarchy_failureImage @see #GenericDraweeHierarchy_failureImageScaleType @see #GenericDraweeHierarchy_overlayImage @see #GenericDraweeHierarchy_placeholderImage @see #GenericDraweeHierarchy_placeholderImageScaleType @see #GenericDraweeHierarchy_pressedStateOverlayImage @see #GenericDraweeHierarchy_progressBarAutoRotateInterval @see #GenericDraweeHierarchy_progressBarImage @see #GenericDraweeHierarchy_progressBarImageScaleType @see #GenericDraweeHierarchy_retryImage @see #GenericDraweeHierarchy_retryImageScaleType @see #GenericDraweeHierarchy_roundAsCircle @see #GenericDraweeHierarchy_roundBottomLeft @see #GenericDraweeHierarchy_roundBottomRight @see #GenericDraweeHierarchy_roundTopLeft @see #GenericDraweeHierarchy_roundTopRight @see #GenericDraweeHierarchy_roundWithOverlayColor @see #GenericDraweeHierarchy_roundedCornerRadius @see #GenericDraweeHierarchy_roundingBorderColor @see #GenericDraweeHierarchy_roundingBorderPadding @see #GenericDraweeHierarchy_roundingBorderWidth @see #GenericDraweeHierarchy_viewAspectRatio */ public static final int[] GenericDraweeHierarchy = { 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047 }; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actualImageScaleType} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> @attr name com.othello:actualImageScaleType */ public static final int GenericDraweeHierarchy_actualImageScaleType = 11; /** <p>This symbol is the offset where the {@link com.othello.R.attr#backgroundImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:backgroundImage */ public static final int GenericDraweeHierarchy_backgroundImage = 12; /** <p>This symbol is the offset where the {@link com.othello.R.attr#fadeDuration} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:fadeDuration */ public static final int GenericDraweeHierarchy_fadeDuration = 0; /** <p>This symbol is the offset where the {@link com.othello.R.attr#failureImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:failureImage */ public static final int GenericDraweeHierarchy_failureImage = 6; /** <p>This symbol is the offset where the {@link com.othello.R.attr#failureImageScaleType} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> @attr name com.othello:failureImageScaleType */ public static final int GenericDraweeHierarchy_failureImageScaleType = 7; /** <p>This symbol is the offset where the {@link com.othello.R.attr#overlayImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:overlayImage */ public static final int GenericDraweeHierarchy_overlayImage = 13; /** <p>This symbol is the offset where the {@link com.othello.R.attr#placeholderImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:placeholderImage */ public static final int GenericDraweeHierarchy_placeholderImage = 2; /** <p>This symbol is the offset where the {@link com.othello.R.attr#placeholderImageScaleType} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> @attr name com.othello:placeholderImageScaleType */ public static final int GenericDraweeHierarchy_placeholderImageScaleType = 3; /** <p>This symbol is the offset where the {@link com.othello.R.attr#pressedStateOverlayImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:pressedStateOverlayImage */ public static final int GenericDraweeHierarchy_pressedStateOverlayImage = 14; /** <p>This symbol is the offset where the {@link com.othello.R.attr#progressBarAutoRotateInterval} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:progressBarAutoRotateInterval */ public static final int GenericDraweeHierarchy_progressBarAutoRotateInterval = 10; /** <p>This symbol is the offset where the {@link com.othello.R.attr#progressBarImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:progressBarImage */ public static final int GenericDraweeHierarchy_progressBarImage = 8; /** <p>This symbol is the offset where the {@link com.othello.R.attr#progressBarImageScaleType} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> @attr name com.othello:progressBarImageScaleType */ public static final int GenericDraweeHierarchy_progressBarImageScaleType = 9; /** <p>This symbol is the offset where the {@link com.othello.R.attr#retryImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:retryImage */ public static final int GenericDraweeHierarchy_retryImage = 4; /** <p>This symbol is the offset where the {@link com.othello.R.attr#retryImageScaleType} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> @attr name com.othello:retryImageScaleType */ public static final int GenericDraweeHierarchy_retryImageScaleType = 5; /** <p>This symbol is the offset where the {@link com.othello.R.attr#roundAsCircle} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:roundAsCircle */ public static final int GenericDraweeHierarchy_roundAsCircle = 15; /** <p>This symbol is the offset where the {@link com.othello.R.attr#roundBottomLeft} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:roundBottomLeft */ public static final int GenericDraweeHierarchy_roundBottomLeft = 20; /** <p>This symbol is the offset where the {@link com.othello.R.attr#roundBottomRight} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:roundBottomRight */ public static final int GenericDraweeHierarchy_roundBottomRight = 19; /** <p>This symbol is the offset where the {@link com.othello.R.attr#roundTopLeft} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:roundTopLeft */ public static final int GenericDraweeHierarchy_roundTopLeft = 17; /** <p>This symbol is the offset where the {@link com.othello.R.attr#roundTopRight} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:roundTopRight */ public static final int GenericDraweeHierarchy_roundTopRight = 18; /** <p>This symbol is the offset where the {@link com.othello.R.attr#roundWithOverlayColor} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:roundWithOverlayColor */ public static final int GenericDraweeHierarchy_roundWithOverlayColor = 21; /** <p>This symbol is the offset where the {@link com.othello.R.attr#roundedCornerRadius} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:roundedCornerRadius */ public static final int GenericDraweeHierarchy_roundedCornerRadius = 16; /** <p>This symbol is the offset where the {@link com.othello.R.attr#roundingBorderColor} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:roundingBorderColor */ public static final int GenericDraweeHierarchy_roundingBorderColor = 23; /** <p>This symbol is the offset where the {@link com.othello.R.attr#roundingBorderPadding} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:roundingBorderPadding */ public static final int GenericDraweeHierarchy_roundingBorderPadding = 24; /** <p>This symbol is the offset where the {@link com.othello.R.attr#roundingBorderWidth} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:roundingBorderWidth */ public static final int GenericDraweeHierarchy_roundingBorderWidth = 22; /** <p>This symbol is the offset where the {@link com.othello.R.attr#viewAspectRatio} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:viewAspectRatio */ public static final int GenericDraweeHierarchy_viewAspectRatio = 1; /** Attributes that can be used with a LinearLayoutCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_divider com.othello:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.othello:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.othello:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers com.othello:showDividers}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_android_baselineAligned @see #LinearLayoutCompat_android_baselineAlignedChildIndex @see #LinearLayoutCompat_android_gravity @see #LinearLayoutCompat_android_orientation @see #LinearLayoutCompat_android_weightSum @see #LinearLayoutCompat_divider @see #LinearLayoutCompat_dividerPadding @see #LinearLayoutCompat_measureWithLargestChild @see #LinearLayoutCompat_showDividers */ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010048, 0x7f010049, 0x7f01004a }; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAligned} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAligned */ public static final int LinearLayoutCompat_android_baselineAligned = 2; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAlignedChildIndex */ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:gravity */ public static final int LinearLayoutCompat_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:orientation */ public static final int LinearLayoutCompat_android_orientation = 1; /** <p>This symbol is the offset where the {@link android.R.attr#weightSum} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum = 4; /** <p>This symbol is the offset where the {@link com.othello.R.attr#divider} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link com.othello.R.attr#dividerPadding} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link com.othello.R.attr#measureWithLargestChild} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link com.othello.R.attr#showDividers} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> @attr name com.othello:showDividers */ public static final int LinearLayoutCompat_showDividers = 7; /** Attributes that can be used with a LinearLayoutCompat_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_Layout_android_layout_gravity @see #LinearLayoutCompat_Layout_android_layout_height @see #LinearLayoutCompat_Layout_android_layout_weight @see #LinearLayoutCompat_Layout_android_layout_width */ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_gravity */ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#layout_height} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_height */ public static final int LinearLayoutCompat_Layout_android_layout_height = 2; /** <p>This symbol is the offset where the {@link android.R.attr#layout_weight} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_weight */ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; /** <p>This symbol is the offset where the {@link android.R.attr#layout_width} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_width */ public static final int LinearLayoutCompat_Layout_android_layout_width = 1; /** Attributes that can be used with a ListPopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr> </table> @see #ListPopupWindow_android_dropDownHorizontalOffset @see #ListPopupWindow_android_dropDownVerticalOffset */ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownHorizontalOffset */ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; /** Attributes that can be used with a MenuGroup. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr> </table> @see #MenuGroup_android_checkableBehavior @see #MenuGroup_android_enabled @see #MenuGroup_android_id @see #MenuGroup_android_menuCategory @see #MenuGroup_android_orderInCategory @see #MenuGroup_android_visible */ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; /** <p>This symbol is the offset where the {@link android.R.attr#checkableBehavior} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior = 5; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:enabled */ public static final int MenuGroup_android_enabled = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:id */ public static final int MenuGroup_android_id = 1; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:menuCategory */ public static final int MenuGroup_android_menuCategory = 3; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory = 4; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:visible */ public static final int MenuGroup_android_visible = 2; /** Attributes that can be used with a MenuItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuItem_actionLayout com.othello:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass com.othello:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass com.othello:actionViewClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_showAsAction com.othello:showAsAction}</code></td><td></td></tr> </table> @see #MenuItem_actionLayout @see #MenuItem_actionProviderClass @see #MenuItem_actionViewClass @see #MenuItem_android_alphabeticShortcut @see #MenuItem_android_checkable @see #MenuItem_android_checked @see #MenuItem_android_enabled @see #MenuItem_android_icon @see #MenuItem_android_id @see #MenuItem_android_menuCategory @see #MenuItem_android_numericShortcut @see #MenuItem_android_onClick @see #MenuItem_android_orderInCategory @see #MenuItem_android_title @see #MenuItem_android_titleCondensed @see #MenuItem_android_visible @see #MenuItem_showAsAction */ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e }; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionLayout} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionLayout */ public static final int MenuItem_actionLayout = 14; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionProviderClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:actionProviderClass */ public static final int MenuItem_actionProviderClass = 16; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionViewClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:actionViewClass */ public static final int MenuItem_actionViewClass = 15; /** <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut = 9; /** <p>This symbol is the offset where the {@link android.R.attr#checkable} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checkable */ public static final int MenuItem_android_checkable = 11; /** <p>This symbol is the offset where the {@link android.R.attr#checked} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checked */ public static final int MenuItem_android_checked = 3; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuItem} array. @attr name android:enabled */ public static final int MenuItem_android_enabled = 1; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #MenuItem} array. @attr name android:icon */ public static final int MenuItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuItem} array. @attr name android:id */ public static final int MenuItem_android_id = 2; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory = 5; /** <p>This symbol is the offset where the {@link android.R.attr#numericShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut = 10; /** <p>This symbol is the offset where the {@link android.R.attr#onClick} attribute's value can be found in the {@link #MenuItem} array. @attr name android:onClick */ public static final int MenuItem_android_onClick = 12; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory = 6; /** <p>This symbol is the offset where the {@link android.R.attr#title} attribute's value can be found in the {@link #MenuItem} array. @attr name android:title */ public static final int MenuItem_android_title = 7; /** <p>This symbol is the offset where the {@link android.R.attr#titleCondensed} attribute's value can be found in the {@link #MenuItem} array. @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed = 8; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuItem} array. @attr name android:visible */ public static final int MenuItem_android_visible = 4; /** <p>This symbol is the offset where the {@link com.othello.R.attr#showAsAction} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> @attr name com.othello:showAsAction */ public static final int MenuItem_showAsAction = 13; /** Attributes that can be used with a MenuView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_preserveIconSpacing com.othello:preserveIconSpacing}</code></td><td></td></tr> </table> @see #MenuView_android_headerBackground @see #MenuView_android_horizontalDivider @see #MenuView_android_itemBackground @see #MenuView_android_itemIconDisabledAlpha @see #MenuView_android_itemTextAppearance @see #MenuView_android_verticalDivider @see #MenuView_android_windowAnimationStyle @see #MenuView_preserveIconSpacing */ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01004f }; /** <p>This symbol is the offset where the {@link android.R.attr#headerBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:headerBackground */ public static final int MenuView_android_headerBackground = 4; /** <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider = 2; /** <p>This symbol is the offset where the {@link android.R.attr#itemBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemBackground */ public static final int MenuView_android_itemBackground = 5; /** <p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha = 6; /** <p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance = 1; /** <p>This symbol is the offset where the {@link android.R.attr#verticalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider = 3; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #MenuView} array. @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle = 0; /** <p>This symbol is the offset where the {@link com.othello.R.attr#preserveIconSpacing} attribute's value can be found in the {@link #MenuView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** Attributes that can be used with a PopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_overlapAnchor com.othello:overlapAnchor}</code></td><td></td></tr> </table> @see #PopupWindow_android_popupBackground @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { 0x01010176, 0x7f010050 }; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupBackground */ public static final int PopupWindow_android_popupBackground = 0; /** <p>This symbol is the offset where the {@link com.othello.R.attr#overlapAnchor} attribute's value can be found in the {@link #PopupWindow} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:overlapAnchor */ public static final int PopupWindow_overlapAnchor = 1; /** Attributes that can be used with a PopupWindowBackgroundState. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.othello:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f010051 }; /** <p>This symbol is the offset where the {@link com.othello.R.attr#state_above_anchor} attribute's value can be found in the {@link #PopupWindowBackgroundState} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor = 0; /** Attributes that can be used with a SearchView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_closeIcon com.othello:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon com.othello:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint com.othello:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon com.othello:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault com.othello:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout com.othello:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground com.othello:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint com.othello:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon com.othello:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon com.othello:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground com.othello:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout com.othello:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon com.othello:voiceIcon}</code></td><td></td></tr> </table> @see #SearchView_android_focusable @see #SearchView_android_imeOptions @see #SearchView_android_inputType @see #SearchView_android_maxWidth @see #SearchView_closeIcon @see #SearchView_commitIcon @see #SearchView_defaultQueryHint @see #SearchView_goIcon @see #SearchView_iconifiedByDefault @see #SearchView_layout @see #SearchView_queryBackground @see #SearchView_queryHint @see #SearchView_searchHintIcon @see #SearchView_searchIcon @see #SearchView_submitBackground @see #SearchView_suggestionRowLayout @see #SearchView_voiceIcon */ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #SearchView} array. @attr name android:focusable */ public static final int SearchView_android_focusable = 0; /** <p>This symbol is the offset where the {@link android.R.attr#imeOptions} attribute's value can be found in the {@link #SearchView} array. @attr name android:imeOptions */ public static final int SearchView_android_imeOptions = 3; /** <p>This symbol is the offset where the {@link android.R.attr#inputType} attribute's value can be found in the {@link #SearchView} array. @attr name android:inputType */ public static final int SearchView_android_inputType = 2; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SearchView} array. @attr name android:maxWidth */ public static final int SearchView_android_maxWidth = 1; /** <p>This symbol is the offset where the {@link com.othello.R.attr#closeIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:closeIcon */ public static final int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link com.othello.R.attr#commitIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:commitIcon */ public static final int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link com.othello.R.attr#defaultQueryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:defaultQueryHint */ public static final int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link com.othello.R.attr#goIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:goIcon */ public static final int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link com.othello.R.attr#iconifiedByDefault} attribute's value can be found in the {@link #SearchView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link com.othello.R.attr#layout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:layout */ public static final int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link com.othello.R.attr#queryBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:queryBackground */ public static final int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link com.othello.R.attr#queryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:queryHint */ public static final int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link com.othello.R.attr#searchHintIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:searchHintIcon */ public static final int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link com.othello.R.attr#searchIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:searchIcon */ public static final int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link com.othello.R.attr#submitBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:submitBackground */ public static final int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link com.othello.R.attr#suggestionRowLayout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link com.othello.R.attr#voiceIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:voiceIcon */ public static final int SearchView_voiceIcon = 12; /** Attributes that can be used with a SimpleDraweeView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SimpleDraweeView_actualImageResource com.othello:actualImageResource}</code></td><td></td></tr> <tr><td><code>{@link #SimpleDraweeView_actualImageUri com.othello:actualImageUri}</code></td><td></td></tr> </table> @see #SimpleDraweeView_actualImageResource @see #SimpleDraweeView_actualImageUri */ public static final int[] SimpleDraweeView = { 0x7f01005f, 0x7f010060 }; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actualImageResource} attribute's value can be found in the {@link #SimpleDraweeView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actualImageResource */ public static final int SimpleDraweeView_actualImageResource = 1; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actualImageUri} attribute's value can be found in the {@link #SimpleDraweeView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:actualImageUri */ public static final int SimpleDraweeView_actualImageUri = 0; /** Attributes that can be used with a Spinner. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_popupTheme com.othello:popupTheme}</code></td><td></td></tr> </table> @see #Spinner_android_dropDownWidth @see #Spinner_android_popupBackground @see #Spinner_android_prompt @see #Spinner_popupTheme */ public static final int[] Spinner = { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth} attribute's value can be found in the {@link #Spinner} array. @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth = 2; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #Spinner} array. @attr name android:popupBackground */ public static final int Spinner_android_popupBackground = 0; /** <p>This symbol is the offset where the {@link android.R.attr#prompt} attribute's value can be found in the {@link #Spinner} array. @attr name android:prompt */ public static final int Spinner_android_prompt = 1; /** <p>This symbol is the offset where the {@link com.othello.R.attr#popupTheme} attribute's value can be found in the {@link #Spinner} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:popupTheme */ public static final int Spinner_popupTheme = 3; /** Attributes that can be used with a SwitchCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_showText com.othello:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack com.othello:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth com.othello:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding com.othello:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.othello:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.othello:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track com.othello:track}</code></td><td></td></tr> </table> @see #SwitchCompat_android_textOff @see #SwitchCompat_android_textOn @see #SwitchCompat_android_thumb @see #SwitchCompat_showText @see #SwitchCompat_splitTrack @see #SwitchCompat_switchMinWidth @see #SwitchCompat_switchPadding @see #SwitchCompat_switchTextAppearance @see #SwitchCompat_thumbTextPadding @see #SwitchCompat_track */ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067 }; /** <p>This symbol is the offset where the {@link android.R.attr#textOff} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOff */ public static final int SwitchCompat_android_textOff = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textOn} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOn */ public static final int SwitchCompat_android_textOn = 0; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:thumb */ public static final int SwitchCompat_android_thumb = 2; /** <p>This symbol is the offset where the {@link com.othello.R.attr#showText} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:showText */ public static final int SwitchCompat_showText = 9; /** <p>This symbol is the offset where the {@link com.othello.R.attr#splitTrack} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:splitTrack */ public static final int SwitchCompat_splitTrack = 8; /** <p>This symbol is the offset where the {@link com.othello.R.attr#switchMinWidth} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 6; /** <p>This symbol is the offset where the {@link com.othello.R.attr#switchPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:switchPadding */ public static final int SwitchCompat_switchPadding = 7; /** <p>This symbol is the offset where the {@link com.othello.R.attr#switchTextAppearance} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 5; /** <p>This symbol is the offset where the {@link com.othello.R.attr#thumbTextPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 4; /** <p>This symbol is the offset where the {@link com.othello.R.attr#track} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:track */ public static final int SwitchCompat_track = 3; /** Attributes that can be used with a TextAppearance. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_textAllCaps com.othello:textAllCaps}</code></td><td></td></tr> </table> @see #TextAppearance_android_shadowColor @see #TextAppearance_android_shadowDx @see #TextAppearance_android_shadowDy @see #TextAppearance_android_shadowRadius @see #TextAppearance_android_textColor @see #TextAppearance_android_textSize @see #TextAppearance_android_textStyle @see #TextAppearance_android_typeface @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010024 }; /** <p>This symbol is the offset where the {@link android.R.attr#shadowColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowColor */ public static final int TextAppearance_android_shadowColor = 4; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDx} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDx */ public static final int TextAppearance_android_shadowDx = 5; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDy} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDy */ public static final int TextAppearance_android_shadowDy = 6; /** <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowRadius */ public static final int TextAppearance_android_shadowRadius = 7; /** <p>This symbol is the offset where the {@link android.R.attr#textColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColor */ public static final int TextAppearance_android_textColor = 3; /** <p>This symbol is the offset where the {@link android.R.attr#textSize} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textSize */ public static final int TextAppearance_android_textSize = 0; /** <p>This symbol is the offset where the {@link android.R.attr#textStyle} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textStyle */ public static final int TextAppearance_android_textStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#typeface} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:typeface */ public static final int TextAppearance_android_typeface = 1; /** <p>This symbol is the offset where the {@link com.othello.R.attr#textAllCaps} attribute's value can be found in the {@link #TextAppearance} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name com.othello:textAllCaps */ public static final int TextAppearance_textAllCaps = 8; /** Attributes that can be used with a TextStyle. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextStyle_android_ellipsize android:ellipsize}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_maxLines android:maxLines}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_shadowColor android:shadowColor}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_shadowDx android:shadowDx}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_shadowDy android:shadowDy}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_singleLine android:singleLine}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_textAppearance android:textAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_textColor android:textColor}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_textSize android:textSize}</code></td><td></td></tr> <tr><td><code>{@link #TextStyle_android_textStyle android:textStyle}</code></td><td></td></tr> </table> @see #TextStyle_android_ellipsize @see #TextStyle_android_maxLines @see #TextStyle_android_shadowColor @see #TextStyle_android_shadowDx @see #TextStyle_android_shadowDy @see #TextStyle_android_shadowRadius @see #TextStyle_android_singleLine @see #TextStyle_android_textAppearance @see #TextStyle_android_textColor @see #TextStyle_android_textSize @see #TextStyle_android_textStyle */ public static final int[] TextStyle = { 0x01010034, 0x01010095, 0x01010097, 0x01010098, 0x010100ab, 0x01010153, 0x0101015d, 0x01010161, 0x01010162, 0x01010163, 0x01010164 }; /** <p>This symbol is the offset where the {@link android.R.attr#ellipsize} attribute's value can be found in the {@link #TextStyle} array. @attr name android:ellipsize */ public static final int TextStyle_android_ellipsize = 4; /** <p>This symbol is the offset where the {@link android.R.attr#maxLines} attribute's value can be found in the {@link #TextStyle} array. @attr name android:maxLines */ public static final int TextStyle_android_maxLines = 5; /** <p>This symbol is the offset where the {@link android.R.attr#shadowColor} attribute's value can be found in the {@link #TextStyle} array. @attr name android:shadowColor */ public static final int TextStyle_android_shadowColor = 7; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDx} attribute's value can be found in the {@link #TextStyle} array. @attr name android:shadowDx */ public static final int TextStyle_android_shadowDx = 8; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDy} attribute's value can be found in the {@link #TextStyle} array. @attr name android:shadowDy */ public static final int TextStyle_android_shadowDy = 9; /** <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} attribute's value can be found in the {@link #TextStyle} array. @attr name android:shadowRadius */ public static final int TextStyle_android_shadowRadius = 10; /** <p>This symbol is the offset where the {@link android.R.attr#singleLine} attribute's value can be found in the {@link #TextStyle} array. @attr name android:singleLine */ public static final int TextStyle_android_singleLine = 6; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #TextStyle} array. @attr name android:textAppearance */ public static final int TextStyle_android_textAppearance = 0; /** <p>This symbol is the offset where the {@link android.R.attr#textColor} attribute's value can be found in the {@link #TextStyle} array. @attr name android:textColor */ public static final int TextStyle_android_textColor = 3; /** <p>This symbol is the offset where the {@link android.R.attr#textSize} attribute's value can be found in the {@link #TextStyle} array. @attr name android:textSize */ public static final int TextStyle_android_textSize = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textStyle} attribute's value can be found in the {@link #TextStyle} array. @attr name android:textStyle */ public static final int TextStyle_android_textStyle = 2; /** Attributes that can be used with a Theme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Theme_actionBarDivider com.othello:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarItemBackground com.othello:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarPopupTheme com.othello:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarSize com.othello:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarSplitStyle com.othello:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarStyle com.othello:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTabBarStyle com.othello:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTabStyle com.othello:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTabTextStyle com.othello:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTheme com.othello:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarWidgetTheme com.othello:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionButtonStyle com.othello:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionDropDownStyle com.othello:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionMenuTextAppearance com.othello:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionMenuTextColor com.othello:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeBackground com.othello:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCloseButtonStyle com.othello:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCloseDrawable com.othello:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCopyDrawable com.othello:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCutDrawable com.othello:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeFindDrawable com.othello:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModePasteDrawable com.othello:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModePopupWindowStyle com.othello:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeSelectAllDrawable com.othello:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeShareDrawable com.othello:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeSplitBackground com.othello:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeStyle com.othello:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeWebSearchDrawable com.othello:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionOverflowButtonStyle com.othello:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionOverflowMenuStyle com.othello:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_activityChooserViewStyle com.othello:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogButtonGroupStyle com.othello:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogCenterButtons com.othello:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogStyle com.othello:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogTheme com.othello:alertDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> <tr><td><code>{@link #Theme_autoCompleteTextViewStyle com.othello:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_borderlessButtonStyle com.othello:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarButtonStyle com.othello:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarNegativeButtonStyle com.othello:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarNeutralButtonStyle com.othello:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarPositiveButtonStyle com.othello:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarStyle com.othello:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonStyle com.othello:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonStyleSmall com.othello:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #Theme_checkboxStyle com.othello:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_checkedTextViewStyle com.othello:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorAccent com.othello:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorButtonNormal com.othello:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorControlActivated com.othello:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorControlHighlight com.othello:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorControlNormal com.othello:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorPrimary com.othello:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorPrimaryDark com.othello:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorSwitchThumbNormal com.othello:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_controlBackground com.othello:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dialogPreferredPadding com.othello:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dialogTheme com.othello:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dividerHorizontal com.othello:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dividerVertical com.othello:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dropDownListViewStyle com.othello:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dropdownListPreferredItemHeight com.othello:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_editTextBackground com.othello:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_editTextColor com.othello:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_editTextStyle com.othello:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_homeAsUpIndicator com.othello:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listChoiceBackgroundIndicator com.othello:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listDividerAlertDialog com.othello:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPopupWindowStyle com.othello:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemHeight com.othello:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemHeightLarge com.othello:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemHeightSmall com.othello:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemPaddingLeft com.othello:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemPaddingRight com.othello:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_panelBackground com.othello:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_panelMenuListTheme com.othello:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_panelMenuListWidth com.othello:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #Theme_popupMenuStyle com.othello:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_popupWindowStyle com.othello:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_radioButtonStyle com.othello:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_ratingBarStyle com.othello:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_searchViewStyle com.othello:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_selectableItemBackground com.othello:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_selectableItemBackgroundBorderless com.othello:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #Theme_spinnerDropDownItemStyle com.othello:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_spinnerStyle com.othello:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_switchStyle com.othello:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceLargePopupMenu com.othello:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceListItem com.othello:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceListItemSmall com.othello:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceSearchResultSubtitle com.othello:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceSearchResultTitle com.othello:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceSmallPopupMenu com.othello:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textColorAlertDialogListItem com.othello:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textColorSearchUrl com.othello:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #Theme_toolbarNavigationButtonStyle com.othello:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_toolbarStyle com.othello:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowActionBar com.othello:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowActionBarOverlay com.othello:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowActionModeOverlay com.othello:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedHeightMajor com.othello:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedHeightMinor com.othello:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedWidthMajor com.othello:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedWidthMinor com.othello:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowMinWidthMajor com.othello:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowMinWidthMinor com.othello:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowNoTitle com.othello:windowNoTitle}</code></td><td></td></tr> </table> @see #Theme_actionBarDivider @see #Theme_actionBarItemBackground @see #Theme_actionBarPopupTheme @see #Theme_actionBarSize @see #Theme_actionBarSplitStyle @see #Theme_actionBarStyle @see #Theme_actionBarTabBarStyle @see #Theme_actionBarTabStyle @see #Theme_actionBarTabTextStyle @see #Theme_actionBarTheme @see #Theme_actionBarWidgetTheme @see #Theme_actionButtonStyle @see #Theme_actionDropDownStyle @see #Theme_actionMenuTextAppearance @see #Theme_actionMenuTextColor @see #Theme_actionModeBackground @see #Theme_actionModeCloseButtonStyle @see #Theme_actionModeCloseDrawable @see #Theme_actionModeCopyDrawable @see #Theme_actionModeCutDrawable @see #Theme_actionModeFindDrawable @see #Theme_actionModePasteDrawable @see #Theme_actionModePopupWindowStyle @see #Theme_actionModeSelectAllDrawable @see #Theme_actionModeShareDrawable @see #Theme_actionModeSplitBackground @see #Theme_actionModeStyle @see #Theme_actionModeWebSearchDrawable @see #Theme_actionOverflowButtonStyle @see #Theme_actionOverflowMenuStyle @see #Theme_activityChooserViewStyle @see #Theme_alertDialogButtonGroupStyle @see #Theme_alertDialogCenterButtons @see #Theme_alertDialogStyle @see #Theme_alertDialogTheme @see #Theme_android_windowAnimationStyle @see #Theme_android_windowIsFloating @see #Theme_autoCompleteTextViewStyle @see #Theme_borderlessButtonStyle @see #Theme_buttonBarButtonStyle @see #Theme_buttonBarNegativeButtonStyle @see #Theme_buttonBarNeutralButtonStyle @see #Theme_buttonBarPositiveButtonStyle @see #Theme_buttonBarStyle @see #Theme_buttonStyle @see #Theme_buttonStyleSmall @see #Theme_checkboxStyle @see #Theme_checkedTextViewStyle @see #Theme_colorAccent @see #Theme_colorButtonNormal @see #Theme_colorControlActivated @see #Theme_colorControlHighlight @see #Theme_colorControlNormal @see #Theme_colorPrimary @see #Theme_colorPrimaryDark @see #Theme_colorSwitchThumbNormal @see #Theme_controlBackground @see #Theme_dialogPreferredPadding @see #Theme_dialogTheme @see #Theme_dividerHorizontal @see #Theme_dividerVertical @see #Theme_dropDownListViewStyle @see #Theme_dropdownListPreferredItemHeight @see #Theme_editTextBackground @see #Theme_editTextColor @see #Theme_editTextStyle @see #Theme_homeAsUpIndicator @see #Theme_listChoiceBackgroundIndicator @see #Theme_listDividerAlertDialog @see #Theme_listPopupWindowStyle @see #Theme_listPreferredItemHeight @see #Theme_listPreferredItemHeightLarge @see #Theme_listPreferredItemHeightSmall @see #Theme_listPreferredItemPaddingLeft @see #Theme_listPreferredItemPaddingRight @see #Theme_panelBackground @see #Theme_panelMenuListTheme @see #Theme_panelMenuListWidth @see #Theme_popupMenuStyle @see #Theme_popupWindowStyle @see #Theme_radioButtonStyle @see #Theme_ratingBarStyle @see #Theme_searchViewStyle @see #Theme_selectableItemBackground @see #Theme_selectableItemBackgroundBorderless @see #Theme_spinnerDropDownItemStyle @see #Theme_spinnerStyle @see #Theme_switchStyle @see #Theme_textAppearanceLargePopupMenu @see #Theme_textAppearanceListItem @see #Theme_textAppearanceListItemSmall @see #Theme_textAppearanceSearchResultSubtitle @see #Theme_textAppearanceSearchResultTitle @see #Theme_textAppearanceSmallPopupMenu @see #Theme_textColorAlertDialogListItem @see #Theme_textColorSearchUrl @see #Theme_toolbarNavigationButtonStyle @see #Theme_toolbarStyle @see #Theme_windowActionBar @see #Theme_windowActionBarOverlay @see #Theme_windowActionModeOverlay @see #Theme_windowFixedHeightMajor @see #Theme_windowFixedHeightMinor @see #Theme_windowFixedWidthMajor @see #Theme_windowFixedWidthMinor @see #Theme_windowMinWidthMajor @see #Theme_windowMinWidthMinor @see #Theme_windowNoTitle */ public static final int[] Theme = { 0x01010057, 0x010100ae, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1 }; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionBarDivider} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionBarDivider */ public static final int Theme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionBarItemBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionBarItemBackground */ public static final int Theme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionBarPopupTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionBarPopupTheme */ public static final int Theme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionBarSize} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> @attr name com.othello:actionBarSize */ public static final int Theme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionBarSplitStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionBarSplitStyle */ public static final int Theme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionBarStyle */ public static final int Theme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionBarTabBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionBarTabBarStyle */ public static final int Theme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionBarTabStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionBarTabStyle */ public static final int Theme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionBarTabTextStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionBarTabTextStyle */ public static final int Theme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionBarTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionBarTheme */ public static final int Theme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionBarWidgetTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionBarWidgetTheme */ public static final int Theme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionButtonStyle */ public static final int Theme_actionButtonStyle = 49; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionDropDownStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionDropDownStyle */ public static final int Theme_actionDropDownStyle = 45; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionMenuTextAppearance} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionMenuTextAppearance */ public static final int Theme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionMenuTextColor} attribute's value can be found in the {@link #Theme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.othello:actionMenuTextColor */ public static final int Theme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionModeBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionModeBackground */ public static final int Theme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionModeCloseButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionModeCloseButtonStyle */ public static final int Theme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionModeCloseDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionModeCloseDrawable */ public static final int Theme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionModeCopyDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionModeCopyDrawable */ public static final int Theme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionModeCutDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionModeCutDrawable */ public static final int Theme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionModeFindDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionModeFindDrawable */ public static final int Theme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionModePasteDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionModePasteDrawable */ public static final int Theme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionModePopupWindowStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionModePopupWindowStyle */ public static final int Theme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionModeSelectAllDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionModeSelectAllDrawable */ public static final int Theme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionModeShareDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionModeShareDrawable */ public static final int Theme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionModeSplitBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionModeSplitBackground */ public static final int Theme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionModeStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionModeStyle */ public static final int Theme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionModeWebSearchDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionModeWebSearchDrawable */ public static final int Theme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionOverflowButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionOverflowButtonStyle */ public static final int Theme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link com.othello.R.attr#actionOverflowMenuStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:actionOverflowMenuStyle */ public static final int Theme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link com.othello.R.attr#activityChooserViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:activityChooserViewStyle */ public static final int Theme_activityChooserViewStyle = 57; /** <p>This symbol is the offset where the {@link com.othello.R.attr#alertDialogButtonGroupStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:alertDialogButtonGroupStyle */ public static final int Theme_alertDialogButtonGroupStyle = 91; /** <p>This symbol is the offset where the {@link com.othello.R.attr#alertDialogCenterButtons} attribute's value can be found in the {@link #Theme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:alertDialogCenterButtons */ public static final int Theme_alertDialogCenterButtons = 92; /** <p>This symbol is the offset where the {@link com.othello.R.attr#alertDialogStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:alertDialogStyle */ public static final int Theme_alertDialogStyle = 90; /** <p>This symbol is the offset where the {@link com.othello.R.attr#alertDialogTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:alertDialogTheme */ public static final int Theme_alertDialogTheme = 93; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #Theme} array. @attr name android:windowAnimationStyle */ public static final int Theme_android_windowAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} attribute's value can be found in the {@link #Theme} array. @attr name android:windowIsFloating */ public static final int Theme_android_windowIsFloating = 0; /** <p>This symbol is the offset where the {@link com.othello.R.attr#autoCompleteTextViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:autoCompleteTextViewStyle */ public static final int Theme_autoCompleteTextViewStyle = 98; /** <p>This symbol is the offset where the {@link com.othello.R.attr#borderlessButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:borderlessButtonStyle */ public static final int Theme_borderlessButtonStyle = 54; /** <p>This symbol is the offset where the {@link com.othello.R.attr#buttonBarButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:buttonBarButtonStyle */ public static final int Theme_buttonBarButtonStyle = 51; /** <p>This symbol is the offset where the {@link com.othello.R.attr#buttonBarNegativeButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:buttonBarNegativeButtonStyle */ public static final int Theme_buttonBarNegativeButtonStyle = 96; /** <p>This symbol is the offset where the {@link com.othello.R.attr#buttonBarNeutralButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:buttonBarNeutralButtonStyle */ public static final int Theme_buttonBarNeutralButtonStyle = 97; /** <p>This symbol is the offset where the {@link com.othello.R.attr#buttonBarPositiveButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:buttonBarPositiveButtonStyle */ public static final int Theme_buttonBarPositiveButtonStyle = 95; /** <p>This symbol is the offset where the {@link com.othello.R.attr#buttonBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:buttonBarStyle */ public static final int Theme_buttonBarStyle = 50; /** <p>This symbol is the offset where the {@link com.othello.R.attr#buttonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:buttonStyle */ public static final int Theme_buttonStyle = 99; /** <p>This symbol is the offset where the {@link com.othello.R.attr#buttonStyleSmall} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:buttonStyleSmall */ public static final int Theme_buttonStyleSmall = 100; /** <p>This symbol is the offset where the {@link com.othello.R.attr#checkboxStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:checkboxStyle */ public static final int Theme_checkboxStyle = 101; /** <p>This symbol is the offset where the {@link com.othello.R.attr#checkedTextViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:checkedTextViewStyle */ public static final int Theme_checkedTextViewStyle = 102; /** <p>This symbol is the offset where the {@link com.othello.R.attr#colorAccent} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:colorAccent */ public static final int Theme_colorAccent = 83; /** <p>This symbol is the offset where the {@link com.othello.R.attr#colorButtonNormal} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:colorButtonNormal */ public static final int Theme_colorButtonNormal = 87; /** <p>This symbol is the offset where the {@link com.othello.R.attr#colorControlActivated} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:colorControlActivated */ public static final int Theme_colorControlActivated = 85; /** <p>This symbol is the offset where the {@link com.othello.R.attr#colorControlHighlight} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:colorControlHighlight */ public static final int Theme_colorControlHighlight = 86; /** <p>This symbol is the offset where the {@link com.othello.R.attr#colorControlNormal} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:colorControlNormal */ public static final int Theme_colorControlNormal = 84; /** <p>This symbol is the offset where the {@link com.othello.R.attr#colorPrimary} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:colorPrimary */ public static final int Theme_colorPrimary = 81; /** <p>This symbol is the offset where the {@link com.othello.R.attr#colorPrimaryDark} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:colorPrimaryDark */ public static final int Theme_colorPrimaryDark = 82; /** <p>This symbol is the offset where the {@link com.othello.R.attr#colorSwitchThumbNormal} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:colorSwitchThumbNormal */ public static final int Theme_colorSwitchThumbNormal = 88; /** <p>This symbol is the offset where the {@link com.othello.R.attr#controlBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:controlBackground */ public static final int Theme_controlBackground = 89; /** <p>This symbol is the offset where the {@link com.othello.R.attr#dialogPreferredPadding} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:dialogPreferredPadding */ public static final int Theme_dialogPreferredPadding = 43; /** <p>This symbol is the offset where the {@link com.othello.R.attr#dialogTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:dialogTheme */ public static final int Theme_dialogTheme = 42; /** <p>This symbol is the offset where the {@link com.othello.R.attr#dividerHorizontal} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:dividerHorizontal */ public static final int Theme_dividerHorizontal = 56; /** <p>This symbol is the offset where the {@link com.othello.R.attr#dividerVertical} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:dividerVertical */ public static final int Theme_dividerVertical = 55; /** <p>This symbol is the offset where the {@link com.othello.R.attr#dropDownListViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:dropDownListViewStyle */ public static final int Theme_dropDownListViewStyle = 73; /** <p>This symbol is the offset where the {@link com.othello.R.attr#dropdownListPreferredItemHeight} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:dropdownListPreferredItemHeight */ public static final int Theme_dropdownListPreferredItemHeight = 46; /** <p>This symbol is the offset where the {@link com.othello.R.attr#editTextBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:editTextBackground */ public static final int Theme_editTextBackground = 63; /** <p>This symbol is the offset where the {@link com.othello.R.attr#editTextColor} attribute's value can be found in the {@link #Theme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.othello:editTextColor */ public static final int Theme_editTextColor = 62; /** <p>This symbol is the offset where the {@link com.othello.R.attr#editTextStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:editTextStyle */ public static final int Theme_editTextStyle = 103; /** <p>This symbol is the offset where the {@link com.othello.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:homeAsUpIndicator */ public static final int Theme_homeAsUpIndicator = 48; /** <p>This symbol is the offset where the {@link com.othello.R.attr#listChoiceBackgroundIndicator} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:listChoiceBackgroundIndicator */ public static final int Theme_listChoiceBackgroundIndicator = 80; /** <p>This symbol is the offset where the {@link com.othello.R.attr#listDividerAlertDialog} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:listDividerAlertDialog */ public static final int Theme_listDividerAlertDialog = 44; /** <p>This symbol is the offset where the {@link com.othello.R.attr#listPopupWindowStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:listPopupWindowStyle */ public static final int Theme_listPopupWindowStyle = 74; /** <p>This symbol is the offset where the {@link com.othello.R.attr#listPreferredItemHeight} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:listPreferredItemHeight */ public static final int Theme_listPreferredItemHeight = 68; /** <p>This symbol is the offset where the {@link com.othello.R.attr#listPreferredItemHeightLarge} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:listPreferredItemHeightLarge */ public static final int Theme_listPreferredItemHeightLarge = 70; /** <p>This symbol is the offset where the {@link com.othello.R.attr#listPreferredItemHeightSmall} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:listPreferredItemHeightSmall */ public static final int Theme_listPreferredItemHeightSmall = 69; /** <p>This symbol is the offset where the {@link com.othello.R.attr#listPreferredItemPaddingLeft} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:listPreferredItemPaddingLeft */ public static final int Theme_listPreferredItemPaddingLeft = 71; /** <p>This symbol is the offset where the {@link com.othello.R.attr#listPreferredItemPaddingRight} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:listPreferredItemPaddingRight */ public static final int Theme_listPreferredItemPaddingRight = 72; /** <p>This symbol is the offset where the {@link com.othello.R.attr#panelBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:panelBackground */ public static final int Theme_panelBackground = 77; /** <p>This symbol is the offset where the {@link com.othello.R.attr#panelMenuListTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:panelMenuListTheme */ public static final int Theme_panelMenuListTheme = 79; /** <p>This symbol is the offset where the {@link com.othello.R.attr#panelMenuListWidth} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:panelMenuListWidth */ public static final int Theme_panelMenuListWidth = 78; /** <p>This symbol is the offset where the {@link com.othello.R.attr#popupMenuStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:popupMenuStyle */ public static final int Theme_popupMenuStyle = 60; /** <p>This symbol is the offset where the {@link com.othello.R.attr#popupWindowStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:popupWindowStyle */ public static final int Theme_popupWindowStyle = 61; /** <p>This symbol is the offset where the {@link com.othello.R.attr#radioButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:radioButtonStyle */ public static final int Theme_radioButtonStyle = 104; /** <p>This symbol is the offset where the {@link com.othello.R.attr#ratingBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:ratingBarStyle */ public static final int Theme_ratingBarStyle = 105; /** <p>This symbol is the offset where the {@link com.othello.R.attr#searchViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:searchViewStyle */ public static final int Theme_searchViewStyle = 67; /** <p>This symbol is the offset where the {@link com.othello.R.attr#selectableItemBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:selectableItemBackground */ public static final int Theme_selectableItemBackground = 52; /** <p>This symbol is the offset where the {@link com.othello.R.attr#selectableItemBackgroundBorderless} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:selectableItemBackgroundBorderless */ public static final int Theme_selectableItemBackgroundBorderless = 53; /** <p>This symbol is the offset where the {@link com.othello.R.attr#spinnerDropDownItemStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:spinnerDropDownItemStyle */ public static final int Theme_spinnerDropDownItemStyle = 47; /** <p>This symbol is the offset where the {@link com.othello.R.attr#spinnerStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:spinnerStyle */ public static final int Theme_spinnerStyle = 106; /** <p>This symbol is the offset where the {@link com.othello.R.attr#switchStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:switchStyle */ public static final int Theme_switchStyle = 107; /** <p>This symbol is the offset where the {@link com.othello.R.attr#textAppearanceLargePopupMenu} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:textAppearanceLargePopupMenu */ public static final int Theme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link com.othello.R.attr#textAppearanceListItem} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:textAppearanceListItem */ public static final int Theme_textAppearanceListItem = 75; /** <p>This symbol is the offset where the {@link com.othello.R.attr#textAppearanceListItemSmall} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:textAppearanceListItemSmall */ public static final int Theme_textAppearanceListItemSmall = 76; /** <p>This symbol is the offset where the {@link com.othello.R.attr#textAppearanceSearchResultSubtitle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:textAppearanceSearchResultSubtitle */ public static final int Theme_textAppearanceSearchResultSubtitle = 65; /** <p>This symbol is the offset where the {@link com.othello.R.attr#textAppearanceSearchResultTitle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:textAppearanceSearchResultTitle */ public static final int Theme_textAppearanceSearchResultTitle = 64; /** <p>This symbol is the offset where the {@link com.othello.R.attr#textAppearanceSmallPopupMenu} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:textAppearanceSmallPopupMenu */ public static final int Theme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link com.othello.R.attr#textColorAlertDialogListItem} attribute's value can be found in the {@link #Theme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.othello:textColorAlertDialogListItem */ public static final int Theme_textColorAlertDialogListItem = 94; /** <p>This symbol is the offset where the {@link com.othello.R.attr#textColorSearchUrl} attribute's value can be found in the {@link #Theme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.othello:textColorSearchUrl */ public static final int Theme_textColorSearchUrl = 66; /** <p>This symbol is the offset where the {@link com.othello.R.attr#toolbarNavigationButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:toolbarNavigationButtonStyle */ public static final int Theme_toolbarNavigationButtonStyle = 59; /** <p>This symbol is the offset where the {@link com.othello.R.attr#toolbarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:toolbarStyle */ public static final int Theme_toolbarStyle = 58; /** <p>This symbol is the offset where the {@link com.othello.R.attr#windowActionBar} attribute's value can be found in the {@link #Theme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:windowActionBar */ public static final int Theme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link com.othello.R.attr#windowActionBarOverlay} attribute's value can be found in the {@link #Theme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:windowActionBarOverlay */ public static final int Theme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link com.othello.R.attr#windowActionModeOverlay} attribute's value can be found in the {@link #Theme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:windowActionModeOverlay */ public static final int Theme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link com.othello.R.attr#windowFixedHeightMajor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:windowFixedHeightMajor */ public static final int Theme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link com.othello.R.attr#windowFixedHeightMinor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:windowFixedHeightMinor */ public static final int Theme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link com.othello.R.attr#windowFixedWidthMajor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:windowFixedWidthMajor */ public static final int Theme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link com.othello.R.attr#windowFixedWidthMinor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:windowFixedWidthMinor */ public static final int Theme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link com.othello.R.attr#windowMinWidthMajor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:windowMinWidthMajor */ public static final int Theme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link com.othello.R.attr#windowMinWidthMinor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:windowMinWidthMinor */ public static final int Theme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link com.othello.R.attr#windowNoTitle} attribute's value can be found in the {@link #Theme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:windowNoTitle */ public static final int Theme_windowNoTitle = 3; /** Attributes that can be used with a Toolbar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseContentDescription com.othello:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon com.othello:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd com.othello:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft com.othello:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight com.othello:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart com.othello:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo com.othello:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription com.othello:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight com.othello:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription com.othello:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon com.othello:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme com.othello:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle com.othello:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.othello:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor com.othello:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title com.othello:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom com.othello:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd com.othello:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart com.othello:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop com.othello:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins com.othello:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance com.othello:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor com.othello:titleTextColor}</code></td><td></td></tr> </table> @see #Toolbar_android_gravity @see #Toolbar_android_minHeight @see #Toolbar_collapseContentDescription @see #Toolbar_collapseIcon @see #Toolbar_contentInsetEnd @see #Toolbar_contentInsetLeft @see #Toolbar_contentInsetRight @see #Toolbar_contentInsetStart @see #Toolbar_logo @see #Toolbar_logoDescription @see #Toolbar_maxButtonHeight @see #Toolbar_navigationContentDescription @see #Toolbar_navigationIcon @see #Toolbar_popupTheme @see #Toolbar_subtitle @see #Toolbar_subtitleTextAppearance @see #Toolbar_subtitleTextColor @see #Toolbar_title @see #Toolbar_titleMarginBottom @see #Toolbar_titleMarginEnd @see #Toolbar_titleMarginStart @see #Toolbar_titleMarginTop @see #Toolbar_titleMargins @see #Toolbar_titleTextAppearance @see #Toolbar_titleTextColor */ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0 }; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #Toolbar} array. @attr name android:gravity */ public static final int Toolbar_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #Toolbar} array. @attr name android:minHeight */ public static final int Toolbar_android_minHeight = 1; /** <p>This symbol is the offset where the {@link com.othello.R.attr#collapseContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 19; /** <p>This symbol is the offset where the {@link com.othello.R.attr#collapseIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:collapseIcon */ public static final int Toolbar_collapseIcon = 18; /** <p>This symbol is the offset where the {@link com.othello.R.attr#contentInsetEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link com.othello.R.attr#contentInsetLeft} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link com.othello.R.attr#contentInsetRight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:contentInsetRight */ public static final int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link com.othello.R.attr#contentInsetStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:contentInsetStart */ public static final int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link com.othello.R.attr#logo} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:logo */ public static final int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link com.othello.R.attr#logoDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:logoDescription */ public static final int Toolbar_logoDescription = 22; /** <p>This symbol is the offset where the {@link com.othello.R.attr#maxButtonHeight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 17; /** <p>This symbol is the offset where the {@link com.othello.R.attr#navigationContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 21; /** <p>This symbol is the offset where the {@link com.othello.R.attr#navigationIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:navigationIcon */ public static final int Toolbar_navigationIcon = 20; /** <p>This symbol is the offset where the {@link com.othello.R.attr#popupTheme} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:popupTheme */ public static final int Toolbar_popupTheme = 9; /** <p>This symbol is the offset where the {@link com.othello.R.attr#subtitle} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link com.othello.R.attr#subtitleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 11; /** <p>This symbol is the offset where the {@link com.othello.R.attr#subtitleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:subtitleTextColor */ public static final int Toolbar_subtitleTextColor = 24; /** <p>This symbol is the offset where the {@link com.othello.R.attr#title} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:title */ public static final int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link com.othello.R.attr#titleMarginBottom} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 16; /** <p>This symbol is the offset where the {@link com.othello.R.attr#titleMarginEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 14; /** <p>This symbol is the offset where the {@link com.othello.R.attr#titleMarginStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:titleMarginStart */ public static final int Toolbar_titleMarginStart = 13; /** <p>This symbol is the offset where the {@link com.othello.R.attr#titleMarginTop} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:titleMarginTop */ public static final int Toolbar_titleMarginTop = 15; /** <p>This symbol is the offset where the {@link com.othello.R.attr#titleMargins} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:titleMargins */ public static final int Toolbar_titleMargins = 12; /** <p>This symbol is the offset where the {@link com.othello.R.attr#titleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 10; /** <p>This symbol is the offset where the {@link com.othello.R.attr#titleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:titleTextColor */ public static final int Toolbar_titleTextColor = 23; /** Attributes that can be used with a View. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingEnd com.othello:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart com.othello:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme com.othello:theme}</code></td><td></td></tr> </table> @see #View_android_focusable @see #View_android_theme @see #View_paddingEnd @see #View_paddingStart @see #View_theme */ public static final int[] View = { 0x01010000, 0x010100da, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3 }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #View} array. @attr name android:focusable */ public static final int View_android_focusable = 1; /** <p>This symbol is the offset where the {@link android.R.attr#theme} attribute's value can be found in the {@link #View} array. @attr name android:theme */ public static final int View_android_theme = 0; /** <p>This symbol is the offset where the {@link com.othello.R.attr#paddingEnd} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:paddingEnd */ public static final int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link com.othello.R.attr#paddingStart} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:paddingStart */ public static final int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link com.othello.R.attr#theme} attribute's value can be found in the {@link #View} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.othello:theme */ public static final int View_theme = 4; /** Attributes that can be used with a ViewBackgroundHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.othello:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.othello:backgroundTintMode}</code></td><td></td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f0100e4, 0x7f0100e5 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #ViewBackgroundHelper} array. @attr name android:background */ public static final int ViewBackgroundHelper_android_background = 0; /** <p>This symbol is the offset where the {@link com.othello.R.attr#backgroundTint} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.othello:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link com.othello.R.attr#backgroundTintMode} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.othello: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; }; }
[ "mariojosuexz@gmail.com" ]
mariojosuexz@gmail.com
48d923a3fcbb86da586e65b02beda93f811ab0b1
340b8893a737ccbaac741469c3f9d8b85890668e
/src/main/java/main/gui/notepane/content/ClipPane.java
533203873caa192e9b32c3d7db922d3ada88b65b
[]
no_license
wishAI/sticknotetoolbox
a3533a5365ab1f4ef9e5e38e2fb085dc54d7af8d
05dc7eb2defa9a1738c02d24056b3473b07d6e91
refs/heads/master
2020-04-09T01:38:11.004596
2018-12-01T05:21:22
2018-12-01T05:21:22
159,911,787
4
1
null
null
null
null
UTF-8
Java
false
false
2,834
java
package main.gui.notepane.content; import javafx.fxml.FXML; import javafx.scene.Node; import javafx.scene.control.Button; import javafx.scene.input.Clipboard; import javafx.scene.layout.HBox; import javafx.scene.layout.Pane; import javafx.scene.layout.VBox; import javafx.scene.paint.Color; import main.gui.ClipboardManager; import main.gui.ColorManager; import main.gui.Injector; import main.gui.handlers.ContentPushTarget; import main.model.notes.ClipNote; import java.awt.*; import java.io.File; import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; import java.net.URL; import java.util.Map; import java.util.ResourceBundle; public class ClipPane extends ListContentPane<ClipNote, Pane, VBox> implements ContentPushTarget { @FXML private Button btn_clip; public ClipPane(ClipNote note) { super(note); Injector.inject(this, "Clip"); } @Override public void initialize(URL location, ResourceBundle resources) { super.initialize(location, resources); showListPane(); // setup clip button btn_clip.setPrefSize(50, 50); btn_clip.setLayoutX(190); btn_clip.setLayoutY(160); btn_clip.toFront(); } @Override protected void onItemClick(Map<String, Object> item) { Object o = item.get("clip"); if (o instanceof File) { // open file try { Desktop.getDesktop().open((File) o); } catch (IOException e) { showNotification("Open failed. "); } } else if (ClipNote.isUrl(o.toString())) { // open link try { Desktop.getDesktop().browse(new URI((String) o)); } catch (IOException | URISyntaxException e) { showNotification("Open failed. "); } } else { copyStringToClipBoard(o.toString()); } } @Override public void changeColor() { super.changeColor(); ColorManager.setColorToNode(btn_clip, note.getColor()); ColorManager.setHoverColorToNode(btn_clip, note.getColor(), new Color(0, 0, 0, 0.1)); } @Override protected Node makeItemBox(Map<String, Object> item) { var box = makeItemBox(HBox.class, 50); var clip = makeItemLabel(item, "clip"); box.getChildren().add(clip); return box; } @FXML public void handleClip() { if (ClipboardManager.pushContentTo(this)) showListPane(); else showNotification("Clipboard is empty. "); } @Override public void onTextPush(String text) { note.addClip(text); showListPane(); } @Override public void onFilePush(File file) { note.addClip(file); showListPane(); } }
[ "climax0@qq.com" ]
climax0@qq.com
50d460b3624b4ead009f62183c5a797042500c5f
e78325594090f7891ec9246ae0a99c139f1bd151
/timesheet/src/main/java/com/fastcode/timesheetapp1/addons/scheduler/application/job/dto/UpdateJobInput.java
125929a36fbb4309a781b01f1a1785da665e1e59
[]
no_license
fastcode-inc/timesheet-old
a3eb3359ce4dd34bed326e7f54ad0e788787d810
0fb28c98b7b3f702c364e09884384c465f215794
refs/heads/master
2023-03-23T22:06:26.319991
2021-03-25T19:08:34
2021-03-25T19:08:34
351,547,054
0
0
null
null
null
null
UTF-8
Java
false
false
1,100
java
package com.fastcode.timesheetapp1.addons.scheduler.application.job.dto; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import lombok.Getter; import lombok.Setter; @Getter @Setter public class UpdateJobInput { private String jobName; private String jobGroup; private String jobClass; private String jobDescription; private Boolean isDurable =false; private Map<String, String> jobMapData = new HashMap<String, String>(); private List<FindByTriggerOutput> triggerDetails = new ArrayList<FindByTriggerOutput>(); private String jobStatus; public UpdateJobInput() { } public UpdateJobInput(String jName, String jGroup, String jClass, String jobDescription, Map<String, String> jMapData, List<FindByTriggerOutput> triggerDetails, boolean isDurable, String jobStatus) { super(); this.jobName = jName; this.jobGroup = jGroup; this.jobClass = jClass; this.jobDescription = jobDescription; this.jobMapData = jMapData; this.isDurable = isDurable; this.jobStatus = jobStatus; this.setTriggerDetails(triggerDetails); } }
[ "info@nfinityllc.com" ]
info@nfinityllc.com
3836e147b6095823a8dc9db6ebde489994b744d9
cb8b4f91c893355227345b95393456536a516541
/src/main/java/com/authine/cloudpivot/web/api/entity/ScaleTestResult.java
6cd701d499e4de75fb6fd5cf863f3fb0137743e2
[]
no_license
sengeiou/whxf
fbfcdacd24829a81b971b7aa6271475ab74cfb8d
ff715afbf2af35fe9b81435f1a0a5441d6923605
refs/heads/master
2023-04-05T11:57:03.691897
2021-04-16T03:35:44
2021-04-16T03:35:44
null
0
0
null
null
null
null
UTF-8
Java
false
false
659
java
package com.authine.cloudpivot.web.api.entity; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; /** * 子表量表测评结果 * @Author Ke LongHai * @Date 2020/7/30 15:32 * @Version 1.0 */ @Data @AllArgsConstructor @NoArgsConstructor public class ScaleTestResult extends BaseEntity{ /** * id */ private String id; /** * 排序字段 */ private Double sortKey; /** * 子表数据的父id */ private String parentId; //最低分 private String min_score; //最高分 private String max_score; //结果 private String result; }
[ "2386409261@qq.com" ]
2386409261@qq.com
1e66fea3e06509be23a574fb2ae877f216945c70
4f291b3effe39bcfca6f84141ee9c4289166881b
/jwt/src/main/java/ec/edu/espe/jwt/models/audit/UserDateAudit.java
4b34b9b96b140bdf724bbd97e09f12643d39630b
[]
no_license
dflasso/TutorialJWT
b0e2bff5caaaacce481b1f486afcd912515896b3
8316837513d76854d59f178ed50b8ca436beb6f6
refs/heads/master
2020-12-05T08:06:50.482297
2020-04-04T16:31:43
2020-04-04T16:31:43
232,054,272
0
0
null
null
null
null
UTF-8
Java
false
false
899
java
package ec.edu.espe.jwt.models.audit; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.springframework.data.annotation.CreatedBy; import org.springframework.data.annotation.LastModifiedBy; import javax.persistence.Column; import javax.persistence.MappedSuperclass; @MappedSuperclass @JsonIgnoreProperties( value = {"createdBy", "updatedBy"}, allowGetters = true ) public abstract class UserDateAudit extends DateAudit { @CreatedBy @Column(updatable = false) private Long createdBy; @LastModifiedBy private Long updatedBy; public Long getCreatedBy() { return createdBy; } public void setCreatedBy(Long createdBy) { this.createdBy = createdBy; } public Long getUpdatedBy() { return updatedBy; } public void setUpdatedBy(Long updatedBy) { this.updatedBy = updatedBy; } }
[ "dflasso1@espe.edu.ec" ]
dflasso1@espe.edu.ec
c9d84bec53ac240051138488cc5155e5e2556501
c8705eb0df74ff16ae8ad9a6c2fe39697de2a78c
/spring-boot-web/elasticsearch-demo/src/main/java/com/ynthm/elasticsearch/config/ElasticsearchConfig.java
01ba5eaee5f5b6132b04fe557e90a1af7116a4bd
[]
no_license
ynthm/spring-boot-demo
4140992d3a513bffe83660c3c624e21b8971b41c
d471bf0dd047d1249e1addb75fa26b4bcdddaa8e
refs/heads/master
2023-07-09T15:56:48.610656
2023-06-27T05:47:06
2023-06-27T05:47:06
222,863,011
0
0
null
2023-07-07T21:52:10
2019-11-20T06:04:27
Java
UTF-8
Java
false
false
2,735
java
package com.ynthm.elasticsearch.config; import co.elastic.clients.elasticsearch.ElasticsearchAsyncClient; import co.elastic.clients.elasticsearch.ElasticsearchClient; import co.elastic.clients.json.jackson.JacksonJsonpMapper; import co.elastic.clients.transport.ElasticsearchTransport; import co.elastic.clients.transport.rest_client.RestClientTransport; import lombok.extern.slf4j.Slf4j; import org.apache.http.HttpHost; import org.elasticsearch.client.RestClient; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.convert.converter.Converter; import org.springframework.data.convert.ReadingConverter; import org.springframework.data.convert.WritingConverter; import org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate; import org.springframework.data.elasticsearch.config.ElasticsearchConfigurationSupport; import org.springframework.data.elasticsearch.core.convert.ElasticsearchConverter; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; /** * @author Ethan Wang */ @Slf4j @Configuration public class ElasticsearchConfig extends ElasticsearchConfigurationSupport { @Bean public ElasticsearchTransport elasticsearchTransport(RestClientProperties restClientProperties) { RestClient restClient = RestClient.builder( restClientProperties.getUris().stream() .map(HttpHost::create) .toArray(HttpHost[]::new)) .build(); // Create the transport with a Jackson mapper return new RestClientTransport(restClient, new JacksonJsonpMapper()); } @Bean public ElasticsearchClient elasticsearchClient(ElasticsearchTransport transport) { return new ElasticsearchClient(transport); } @Bean public ElasticsearchAsyncClient elasticsearchAsyncClient(ElasticsearchTransport transport) { return new ElasticsearchAsyncClient(transport); } @Bean public ElasticsearchTemplate elasticsearchTemplate( ElasticsearchClient elasticsearchClient, ElasticsearchConverter elasticsearchConverter) { return new ElasticsearchTemplate(elasticsearchClient, elasticsearchConverter); } @WritingConverter static class LocalDateTimeToString implements Converter<LocalDateTime, String> { @Override public String convert(LocalDateTime source) { return source.format(DateTimeFormatter.ISO_LOCAL_DATE_TIME); } } @ReadingConverter static class StringToLocalDateTime implements Converter<String, LocalDateTime> { @Override public LocalDateTime convert(String source) { return LocalDateTime.parse(source, DateTimeFormatter.ISO_LOCAL_DATE_TIME); } } }
[ "ynthm.w@gmail.com" ]
ynthm.w@gmail.com
40f4b95a9cde657adfeb73e6084c605f778e4880
22e506ee8e3620ee039e50de447def1e1b9a8fb3
/java_src/android/support/p007v4/view/ViewPropertyAnimatorCompatKK.java
e03ad9bdd9871457a9ea2a361a966ceb1dcbf6e2
[]
no_license
Qiangong2/GraffitiAllianceSource
477152471c02aa2382814719021ce22d762b1d87
5a32de16987709c4e38594823cbfdf1bd37119c5
refs/heads/master
2023-07-04T23:09:23.004755
2021-08-11T18:10:17
2021-08-11T18:10:17
395,075,728
0
0
null
null
null
null
UTF-8
Java
false
false
856
java
package android.support.p007v4.view; import android.animation.ValueAnimator; import android.view.View; /* renamed from: android.support.v4.view.ViewPropertyAnimatorCompatKK */ class ViewPropertyAnimatorCompatKK { ViewPropertyAnimatorCompatKK() { } public static void setUpdateListener(final View view, final ViewPropertyAnimatorUpdateListener listener) { ValueAnimator.AnimatorUpdateListener wrapped = null; if (listener != null) { wrapped = new ValueAnimator.AnimatorUpdateListener() { /* class android.support.p007v4.view.ViewPropertyAnimatorCompatKK.C01751 */ public void onAnimationUpdate(ValueAnimator valueAnimator) { listener.onAnimationUpdate(view); } }; } view.animate().setUpdateListener(wrapped); } }
[ "sassafrass@fasizzle.com" ]
sassafrass@fasizzle.com
1960c020b687b1e6d4c526503afc6d2397bb60f3
34b84ce78ed024db2aed08f768957ec8f047cc6d
/WebEventos_IN5BV2014297-ejb/src/main/java/com/joshuaoliva/entities/Detallecotizacion.java
e568be260a554c7bf8d9bd85b5c920f795de57a0
[]
no_license
JoshuaC11/WebEventos_IN5BV2014297
ac673371dbacb124187ecbc09545d94cdd6d240a
927229bf1780d68497d76565c1f32654bb08bc1c
refs/heads/master
2021-06-18T07:56:22.622282
2019-09-20T22:39:48
2019-09-20T22:39:48
209,891,905
0
0
null
2021-06-03T19:43:06
2019-09-20T22:36:21
HTML
UTF-8
Java
false
false
5,652
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.joshuaoliva.entities; import java.io.Serializable; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.NamedQueries; import javax.persistence.NamedQuery; import javax.persistence.Table; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; import javax.xml.bind.annotation.XmlRootElement; /** * * @author programacion */ @Entity @Table(name = "detallecotizacion") @XmlRootElement @NamedQueries({ @NamedQuery(name = "Detallecotizacion.findAll", query = "SELECT d FROM Detallecotizacion d") , @NamedQuery(name = "Detallecotizacion.findByIddetallecotizacion", query = "SELECT d FROM Detallecotizacion d WHERE d.iddetallecotizacion = :iddetallecotizacion") , @NamedQuery(name = "Detallecotizacion.findByDescripcion", query = "SELECT d FROM Detallecotizacion d WHERE d.descripcion = :descripcion") , @NamedQuery(name = "Detallecotizacion.findByCantidad", query = "SELECT d FROM Detallecotizacion d WHERE d.cantidad = :cantidad") , @NamedQuery(name = "Detallecotizacion.findByPrecioventa", query = "SELECT d FROM Detallecotizacion d WHERE d.precioventa = :precioventa") , @NamedQuery(name = "Detallecotizacion.findByProductosIdproductos", query = "SELECT d FROM Detallecotizacion d WHERE d.productosIdproductos = :productosIdproductos") , @NamedQuery(name = "Detallecotizacion.findByCotizacionIdcotizacion", query = "SELECT d FROM Detallecotizacion d WHERE d.cotizacionIdcotizacion = :cotizacionIdcotizacion")}) public class Detallecotizacion implements Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Basic(optional = false) @Column(name = "iddetallecotizacion") private Integer iddetallecotizacion; @Basic(optional = false) @NotNull @Size(min = 1, max = 45) @Column(name = "descripcion") private String descripcion; @Basic(optional = false) @NotNull @Size(min = 1, max = 45) @Column(name = "cantidad") private String cantidad; @Basic(optional = false) @NotNull @Size(min = 1, max = 45) @Column(name = "precioventa") private String precioventa; @Basic(optional = false) @NotNull @Column(name = "productos_idproductos") private int productosIdproductos; @Basic(optional = false) @NotNull @Column(name = "cotizacion_idcotizacion") private int cotizacionIdcotizacion; public Detallecotizacion() { } public Detallecotizacion(Integer iddetallecotizacion) { this.iddetallecotizacion = iddetallecotizacion; } public Detallecotizacion(Integer iddetallecotizacion, String descripcion, String cantidad, String precioventa, int productosIdproductos, int cotizacionIdcotizacion) { this.iddetallecotizacion = iddetallecotizacion; this.descripcion = descripcion; this.cantidad = cantidad; this.precioventa = precioventa; this.productosIdproductos = productosIdproductos; this.cotizacionIdcotizacion = cotizacionIdcotizacion; } public Integer getIddetallecotizacion() { return iddetallecotizacion; } public void setIddetallecotizacion(Integer iddetallecotizacion) { this.iddetallecotizacion = iddetallecotizacion; } public String getDescripcion() { return descripcion; } public void setDescripcion(String descripcion) { this.descripcion = descripcion; } public String getCantidad() { return cantidad; } public void setCantidad(String cantidad) { this.cantidad = cantidad; } public String getPrecioventa() { return precioventa; } public void setPrecioventa(String precioventa) { this.precioventa = precioventa; } public int getProductosIdproductos() { return productosIdproductos; } public void setProductosIdproductos(int productosIdproductos) { this.productosIdproductos = productosIdproductos; } public int getCotizacionIdcotizacion() { return cotizacionIdcotizacion; } public void setCotizacionIdcotizacion(int cotizacionIdcotizacion) { this.cotizacionIdcotizacion = cotizacionIdcotizacion; } @Override public int hashCode() { int hash = 0; hash += (iddetallecotizacion != null ? iddetallecotizacion.hashCode() : 0); return hash; } @Override public boolean equals(Object object) { // TODO: Warning - this method won't work in the case the id fields are not set if (!(object instanceof Detallecotizacion)) { return false; } Detallecotizacion other = (Detallecotizacion) object; if ((this.iddetallecotizacion == null && other.iddetallecotizacion != null) || (this.iddetallecotizacion != null && !this.iddetallecotizacion.equals(other.iddetallecotizacion))) { return false; } return true; } @Override public String toString() { return "com.joshuaoliva.entities.Detallecotizacion[ iddetallecotizacion=" + iddetallecotizacion + " ]"; } }
[ "jaguilar-2015554@kinal.edu.gt" ]
jaguilar-2015554@kinal.edu.gt
230229807f4f6354a72b93cbeaf2751422526a59
a84481bf48914ba9a90e24cc61f547db41623f37
/src/phd/Old_Ones.java
7209277cb374523e974ed2b1afa8b63286c0de73
[]
no_license
denvas2000/isaa2018
7fe8d87e3217d0e043e26f722f422e7e7ab4daf4
fa3dfc5f2f119e286dc64b8df5580d94e0e25d5b
refs/heads/master
2021-04-15T16:02:43.087108
2018-03-21T17:42:57
2018-03-21T17:42:57
126,219,342
0
0
null
null
null
null
UTF-8
Java
false
false
8,198
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 phd; import java.util.ArrayList; import java.util.List; /** * * @author Administrator */ public class Old_Ones { /** * * Negative_Average_Similarity: Method to compute negative similarities among all neighbors based on the "Average Method". * Accepts as imput the following variables * * @param totalUsers * @param totalMovies * @param userSim * @param similaritySign */ public static void Negative_Average_Similarity ( int totalUsers, int totalMovies, List<UserSimilarity>[] userSim, User[] users, UserMovie[][] userMovies, double simBase, int commonMovies, int absMinTimeStamp, int absMaxTimeStamp) { int i, j, k; double tempWeight, negWeight; int tempMovies; double averageUI, averageUJ; //Hold average rating of user i and j, respectively double numeratorSimij; //Numerator and Denominator of Similarity (Pearson) function. double denominatorPartA, denominatorPartB, denominatorSimij; //Denominator consists of two parts double similarity; double maxSimValue=Integer.MIN_VALUE, MinSimValue=Integer.MAX_VALUE; //System.out.println("Similarity"+simBase); for (i=0;i<=totalUsers;i++) userSim[i]=new ArrayList<>(); for (i=0;i<=totalUsers-1;i++) { averageUI=users[i].UserAverageRate(); if ((users[i].getMaxTimeStamp()-users[i].getMinTimeStamp())>FN_100K_OLD.MIN_TIMESPACE) for (j=i+1;j<=totalUsers;j++) { numeratorSimij=0.0; //Initializing variables used in computing similarity denominatorPartA=0.0;denominatorPartB=0.0; averageUJ=users[j].UserAverageRate(); tempMovies=0; for (k=0;k<=totalMovies;k++) { if (!(userMovies[i][k]==null) && !(userMovies[j][k]==null)) { //The WEIGHT assigned to negative similarities if (FN_100K_OLD.NEG_WEIGHT_TYPE==0) negWeight=1; else negWeight=Phd_Utils.Neg_Weight(userMovies[i][k].getRating(), userMovies[j][k].getRating()); tempMovies++; if (FN_100K_OLD.WEIGHT_TYPE==1) { tempWeight=(double)(userMovies[i][k].Time_Stamp-users[i].getMinTimeStamp())/(double)(users[i].getMaxTimeStamp()-users[i].getMinTimeStamp()); userMovies[i][k].setWeight(tempWeight); tempWeight=(double)(userMovies[j][k].Time_Stamp-users[j].getMinTimeStamp())/(double)(users[j].getMaxTimeStamp()-users[j].getMinTimeStamp()); userMovies[j][k].setWeight(tempWeight); } else if (FN_100K_OLD.WEIGHT_TYPE==2) { // It seems of no use. // Weight based on overall timespan tempWeight=(double)(userMovies[i][k].Time_Stamp-absMinTimeStamp)/(absMaxTimeStamp-absMinTimeStamp); userMovies[i][k].setWeight(tempWeight); tempWeight=(double)(userMovies[j][k].Time_Stamp-absMinTimeStamp)/(absMaxTimeStamp-absMinTimeStamp); userMovies[j][k].setWeight(tempWeight); //System.out.println(tempWeight); } else { userMovies[i][k].setWeight(1); userMovies[j][k].setWeight(1); } if (((userMovies[i][k].getRating()<averageUI) && (userMovies[j][k].getRating()>averageUJ)) || ((userMovies[i][k].getRating()>averageUI) && (userMovies[j][k].getRating()<averageUJ))) { tempMovies++; numeratorSimij += (userMovies[i][k].getRating()-averageUI)*(userMovies[j][k].getRating()-averageUJ)*userMovies[i][k].getWeight()*userMovies[j][k].getWeight()*negWeight; denominatorPartA += (userMovies[i][k].getRating()-averageUI)*(userMovies[i][k].getRating()-averageUI); denominatorPartB += (userMovies[j][k].getRating()-averageUJ)*(userMovies[j][k].getRating()-averageUJ); } } }//for k denominatorSimij= denominatorPartA * denominatorPartB; similarity=(double)(numeratorSimij/Math.sqrt(denominatorSimij)); //find min/max similarity values if (MinSimValue>similarity) MinSimValue=similarity; else if (maxSimValue<similarity) maxSimValue=similarity; //At least "commonMovies" common ratings if (tempMovies>commonMovies) { //Reverse Similarity if (similarity<=simBase) { userSim[i].add(new UserSimilarity(i,j,similarity)); userSim[j].add(new UserSimilarity(j,i,similarity)); } } }//for j }//for i //System.out.println("max:"+absMaxTimeStamp+" min:"+absMinTimeStamp); }//END OF METHOD Negative_Average_Similarity public static double[] Negative_Average_Prediction ( int totalUsers, int totalMovies, List<UserSimilarity>[] userSim, User[] Users, UserMovie[][] userMovies, int minSimNeigh, int bestNeigh) { int i, k, l; int simNeighbors=0; List<UserSimilarity> UserList = new ArrayList<>(); double Numerator_Pred, Denominator_Pred; //Numerator and Denominator of Prediction function. int predictedValues=0; //The total number of actually predicted values double MAE=0.0; //Mean Absolute Error of Prediction. for (i=0;i<=totalUsers;i++) { UserList=userSim[i]; Numerator_Pred=0;Denominator_Pred=0; k=Users[i].lastMovieId; //if (!UserList.isEmpty()) if (UserList.size()>minSimNeigh) { if (bestNeigh<userSim[i].size()) UserList=userSim[i].subList(0, bestNeigh-1); simNeighbors++; for (UserSimilarity io: UserList) { if (userMovies[io.SUser_Id][k]!=null) { Denominator_Pred += Math.abs((io.Similarity)); Numerator_Pred += io.Similarity*(userMovies[io.SUser_Id][k].getRating()-Users[io.SUser_Id].UserAverageRate()); } } } if (Denominator_Pred==0) //Special Condition. When there are no NN that rated LastMovie or Users[i].negAverPrediction=FN_100K_OLD.NO_PREDICTION; else //Maybe the check "!=NO_PREDICTION" is unnecessary { Users[i].negAverPrediction=((int)Math.round(Users[i].UserAverageRate()+Numerator_Pred/Denominator_Pred)); //Normal Condition. When there are FN that rated LastMovie if (Users[i].negAverPrediction>5) Users[i].negAverPrediction=5; else if ((Users[i].negAverPrediction<1) && (Users[i].negAverPrediction!=FN_100K_OLD.NO_PREDICTION)) Users[i].negAverPrediction=1; MAE += Math.abs(Users[i].negAverPrediction-userMovies[i][k].getRating()); predictedValues++; } UserList=new ArrayList<>(); } return new double[] {simNeighbors, predictedValues, MAE}; } //END OF METHOD Negative_Average_Prediction }
[ "Administrator@Super" ]
Administrator@Super
9f9607e33f85465bf0e432bbcdae5a401e04dc0a
ca95555a6ce6410807699face40f070f92d41d20
/LQian-change-param/src/main/java/com/zl/github/translate/TransformerSettings.java
6dbab207b37ecb2d7a6ca9a8cd9a99159443e583
[]
no_license
SaberSola/LQian
0000adef39a0940c2771f76e69790643acc6c892
b8a42ffe46d37968ecdbf70b402f7b1b09549f55
refs/heads/master
2022-12-20T23:43:19.657158
2021-12-27T13:18:45
2021-12-27T13:18:45
144,002,792
9
3
null
2022-12-16T04:33:33
2018-08-08T11:15:53
Java
UTF-8
Java
false
false
1,098
java
package com.zl.github.translate; import com.zl.github.model.FieldTransformer; import lombok.Getter; import lombok.Setter; import java.util.HashSet; import java.util.Map; import java.util.Set; import java.util.concurrent.ConcurrentHashMap; /** * @Author zl * @Date 2019-09-13 * @Des ${todo} */ @Getter public class TransformerSettings { /** * Contains the mapping between fields's name in the source object and the destination one. */ private final Map<String, String> fieldsNameMapping = new ConcurrentHashMap<>(); /** * Contains the lambda functions to be applied on a given fields. */ private final Map<String, FieldTransformer> fieldsTransformers = new ConcurrentHashMap<>(); private final Set<String> fieldsToSkip = new HashSet<>(); @Setter private boolean setDefaultValueForMissingField; @Setter private boolean flatFieldNameTransformation; @Setter private boolean validationEnabled; @Setter private boolean defaultValueSetEnabled = true; @Setter private boolean primitiveTypeConversionEnabled; }
[ "1198902364@qq.com" ]
1198902364@qq.com
1eaeff2faf3ca58f5ba664ee2c88e41237110ecc
f5f2af1b9f3d21926aec9905cb65878e1be4d69e
/FunWithObjects/src/Objects1/Cow.java
fc7094f724d9fa416630706beaec5bad7e9edde9
[]
no_license
rayli27/Projects
8e574d68da553a96ddd72ccf79ffb3ca878c9b41
f1993a88ba3f42c7e1f77a31402738bf8cef2749
refs/heads/master
2022-12-05T03:25:39.888918
2020-08-05T19:02:53
2020-08-05T19:02:53
285,376,209
0
0
null
null
null
null
UTF-8
Java
false
false
215
java
package Objects1; public class Cow extends Animal{ int tail = 8; public Cow() { super(Type.COW, ((int)(Math.random()*9) + 11), 4); } @Override public void makeNoise() { System.out.println("moo"); } }
[ "raynli@outlook.com" ]
raynli@outlook.com
8c8cae6ee29753727bc26d88ea79ca23c086afb8
0bf5c8a42ecbdd8ba2bebff09d14e0a8c09bf869
/DeBasis/src/h05GekleurdeRechthoeken/KleurenstrookBediening.java
8943f92fea579828c3492363abb7a759caea736b
[]
no_license
reshadf/Java
8b92e22c877ae0cb4bda5873e2971f6ca9e63819
9de57a32fdf3b7ed689ab954cf90c830e1397079
refs/heads/master
2016-09-06T19:21:01.645495
2013-09-04T08:54:03
2013-09-04T08:54:03
null
0
0
null
null
null
null
UTF-8
Java
false
false
533
java
package h05GekleurdeRechthoeken; import java.awt.event.*; import javax.swing.*; public class KleurenstrookBediening extends JPanel implements ActionListener { private JButton tekenknop; KleurenstrookTeken tekenpaneel; public KleurenstrookBediening(KleurenstrookTeken tekenpaneel) { this.tekenpaneel = tekenpaneel; tekenknop = new JButton("Teken kleurvlakken"); tekenknop.addActionListener(this); add(tekenknop); } @Override public void actionPerformed(ActionEvent e) { tekenpaneel.repaint(); } }
[ "reshadfar@gmail.com" ]
reshadfar@gmail.com
b848e7940b51a492c0a111ca67f9c3d7fd09ce6b
2d1ef095cf47b0068c9fa117cbbf7acf837cda03
/Arbol/src/Fuentes/Arbol.java
34c4740c1c9a061bc711cbfd958375e20e535555
[]
no_license
Reno956/Estructura
91f1325da311f4e34719d68c070ef03bc40eaf42
032da07a6b95d0f9c3cc436365e2c6b611f9047d
refs/heads/master
2023-04-16T01:36:55.285327
2021-04-25T01:41:38
2021-04-25T01:41:38
314,382,152
0
0
null
null
null
null
UTF-8
Java
false
false
1,077
java
package Fuentes; public class Arbol { NodoArbol raiz; public Arbol() { this.raiz=null; } public boolean arbolVacio(){ return this.raiz==null; } public void insertar(int dato){ if(arbolVacio()){ this.raiz = new NodoArbol(dato); } else{ this.raiz.insertar(dato); } } public void preOrden(NodoArbol recorre){ if(recorre!=null){ System.out.print(recorre.getDato()+" "); preOrden(recorre.getIzquierda()); preOrden(recorre.getDerecha()); } } public void inOrden(NodoArbol recorre){ if(recorre!=null){ inOrden(recorre.getIzquierda()); System.out.print(recorre.getDato()+" "); inOrden(recorre.getDerecha()); } } public void posOrden(NodoArbol recorre){ if(recorre!=null){ posOrden(recorre.getIzquierda()); posOrden(recorre.getDerecha()); System.out.print(recorre.getDato()+" "); } } }
[ "renato.padilla@epn.edu.ec" ]
renato.padilla@epn.edu.ec
b6f57ecbb0464b361800067c001684ccb849106b
f9fcc76ff68cbe2aa75d01e83e4c0db1cf9eb170
/MemberPj/src/kr/or/ddit/member/service/MemberService.java
13b74b20a656c15a772728572e40e5e755781e83
[]
no_license
Jung-Young-In/HelloWebPro
c3c6ac45fd902e11eddb8fe0b4fb4112c4e40b50
642c6962ac1273614b00927e1494fafeb203fbc7
refs/heads/main
2023-04-06T04:44:53.093720
2021-04-20T08:25:54
2021-04-20T08:25:54
353,519,420
0
0
null
null
null
null
UTF-8
Java
false
false
602
java
package kr.or.ddit.member.service; import java.sql.SQLException; import java.util.List; import kr.or.ddit.member.dao.MemberDao; import kr.or.ddit.member.vo.MemberVO; public class MemberService { // singleton 패턴 적용 private MemberDao dao; public MemberService() { if(dao == null) dao = new MemberDao(); } public List<MemberVO> retrieveMemberList(MemberVO memberVo) throws SQLException { List<MemberVO> list = dao.retrieveMemberList(memberVo); return list; } public Integer checkMemberId(MemberVO memberVo) throws SQLException { return dao.checkMemberId(memberVo); } }
[ "81631456+Jung-Young-In@users.noreply.github.com" ]
81631456+Jung-Young-In@users.noreply.github.com
ea9f1a5f5fff3f708d18c2b5e4d6179841a74348
403ab00e824015c94aed2f8d83478ced9e6db4f2
/java/basics/Pattern2.java
097bb4be06d83b9addaeb2b18f63c7e4bb181fb7
[]
no_license
ayanagarwal2000/JAVA-Ayan
c220fba32c8358076b24ed065ec95a8a65976499
faa9246951539d9e3bd988e7167a13fd19fed120
refs/heads/main
2023-03-22T08:19:01.164973
2021-03-04T06:47:41
2021-03-04T06:47:41
306,571,626
2
1
null
2020-10-23T10:01:38
2020-10-23T08:14:56
Java
UTF-8
Java
false
false
736
java
import java.util.Scanner; public class Pattern2 { public static void main(String[] args) { Scanner scn = new Scanner (System.in); int n = scn.nextInt() ; for (int a =1; a <=n; a++) { for (int i =n; i >=a; i--) { System.out.print(" "); } for (int row =1; row <=a; row++) { System.out.print("*"); } for (int row =1; row <=(a-1); row++) { System.out.print("*"); } System.out.println(); } for (int a =1; a <=n+1; a++) { for (int i =1; i <=a; i++) { System.out.print(" "); } for (int row =n-1; row >=a; row--) { System.out.print("*"); } for (int row =(n); row >=(a); row--) { System.out.print("*"); } System.out.println(); } } }
[ "56232928+ayanagarwal2000@users.noreply.github.com" ]
56232928+ayanagarwal2000@users.noreply.github.com
30792024b8098a059355969406da54b2bf06228c
d835fdb3e718878aeb362b59e2acaf889197e930
/src/main/java/com/courses/jdbcdao_11/factory/mysql/DbCustomerDao.java
4a7c146418d96cf6375d35d488b400ed9ffb406a
[]
no_license
sulevsky/Education_1
67f480c32744eb2c8cd87c940aaec0fd393f8c4e
c9b18bcab43284ee96cc32968801be63cc5c4c69
refs/heads/master
2021-01-23T21:39:10.864484
2017-03-13T22:21:45
2017-03-13T22:21:45
35,055,920
2
6
null
null
null
null
UTF-8
Java
false
false
757
java
package com.courses.jdbcdao_11.factory.mysql; import com.courses.jdbcdao_11.businessobjects.Customer; import com.courses.jdbcdao_11.factory.CustomerDao; import java.util.Collection; /** * Created by VSulevskiy on 14.09.2015. */ public class DbCustomerDao implements CustomerDao { @Override public boolean insertCustomer(Customer customer) { return false; } @Override public boolean deleteCustomer(Customer customer) { return false; } @Override public Customer findCustomer(long id) { return null; } @Override public boolean updateCustomer(Customer customer) { return false; } @Override public Collection<Customer> getCustomers() { return null; } }
[ "sulevsky@gmail.com" ]
sulevsky@gmail.com
805a1bffd0ed79f82ade62a95ae95823cf02f3a9
ca11dc0e704c8b926bbf775dceaea4b82f80cfad
/src/main/java/com/gt/SpringMVC/Demo/Repositories/Entities/Class.java
965c03ab05442df2c4d6baecb68c0ea6a9d9d15a
[]
no_license
xuruiqian/SpringMvcDemo
1fbab8c4c8417e68b657a0478c53b069217b95e5
4c3219c9e21530d55e46313428710ffe65619215
refs/heads/master
2020-03-31T11:42:10.229413
2018-10-09T04:29:08
2018-10-09T04:29:08
152,187,624
0
0
null
null
null
null
UTF-8
Java
false
false
81
java
package com.gt.SpringMVC.Demo.Repositories.Entities; public class Class { }
[ "ruiqian_xu@sina.com" ]
ruiqian_xu@sina.com
bb990bf81e1fb85ad853f4099995c4883c5c2dd9
f0febc7834c2c54f0d1ebf82ef805bb840e42932
/source/SalReport1.java
901d90e1dac5bf845f80e5c4ad330ddd07845a46
[]
no_license
enggsudarshan/Distributed-Management-System
89a1df876ab6c517580b507c76b8d4b967f3a09d
897956f45f25640747a65afe3079dc9e9178144a
refs/heads/master
2020-12-13T21:51:59.563494
2017-06-26T19:52:15
2017-06-26T19:52:15
95,483,974
0
0
null
null
null
null
UTF-8
Java
false
false
3,427
java
import java.io.*; import java.sql.*; import javax.servlet.*; import javax.servlet.http.*; import java.util.*; public class SalReport1 extends HttpServlet { public void doPost(HttpServletRequest req,HttpServletResponse res)throws ServletException,IOException { res.setContentType("text/html"); PrintWriter out=res.getWriter(); HttpSession hs=req.getSession(true); String code=(String)hs.getValue("code"); String report=req.getParameter("report"); ResultSet rs=null; try{ Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection con=DriverManager.getConnection("jdbc:odbc:dis"); Statement st=con.createStatement(); out.println("<html><title>Representative Sales Report Page</title> <style>"); out.println("input{font-size:12pt;color:blue;}table{font-size:12pt;color:maroon;font-weight:bold}"); out.println("</style>"); out.println("<body bgcolor='#eeeee3' text='maroon'>"); out.println("<center><h2><font color='blue'>Sales Rep Sale's Report Details </font></h2>"); out.println("<img src='http://localhost:8080/dms/images/flashing_line.gif'>"); if(report.equals("1")) rs=st.executeQuery("select rscode,rsdate,quantity,reason from rsales where rsdate between #"+req.getParameter("fdate")+"# and #"+req.getParameter("tdate")+"# and pcode='"+req.getParameter("pcode")+"' and rcode='"+code+"'"); else { rs=st.executeQuery("select dcode from rep where scode='"+code+"'"); rs.next(); code=rs.getString(1); rs.close(); rs=st.executeQuery("select rscode,rsdate,quantity,reason from rsales where rsdate between #"+req.getParameter("fdate")+"# and #"+req.getParameter("tdate")+"# and pcode='"+req.getParameter("pcode")+"' and dcode='"+code+"'"); } if(!rs.next()) { out.println("<font size=5>Sorry No data found <br><br> Please try again "); } else { rs.close(); if(report.equals("1")) rs=st.executeQuery("select rscode,rsdate,quantity,reason from rsales where rsdate between #"+req.getParameter("fdate")+"# and #"+req.getParameter("tdate")+"# and pcode='"+req.getParameter("pcode")+"' and rcode='"+code+"'"); else { rs=st.executeQuery("select rscode,rsdate,quantity,reason from rsales where rsdate between #"+req.getParameter("fdate")+"# and #"+req.getParameter("tdate")+"# and pcode='"+req.getParameter("pcode")+"' and dcode='"+code+"'"); out.println("<h4>Area Wise Report </h4>"); } out.println("<table border=1><tr align=center><th>Inv. No.</th><th>Date</th><th>Quantity</th><th>Reason</th></tr>"); //out.println("<table border=1><th><td>Inv. No.</td><td>Date</td><td>Quantity</td><td>Reason</td></th>"); while(rs.next()) { out.println("<tr align=center><td>"+rs.getString(1)+"</td><td>"); String t=rs.getString(2); String d=t.substring(8,10)+"/"+t.substring(5,7)+"/"+t.substring(0,4); out.println(d+"</td><td>"+rs.getInt(3)+"</td><td>"+rs.getString(4)+"</td></tr>"); } out.println("</table><br>"); } out.println("<table><tr><td><input type=image src='http://localhost:8080/dms/images//back_1.gif' onClick='javaScript:history.back()'>"); out.println("</td><td>&nbsp;&nbsp;&nbsp;&nbsp;</td><td><a href='http://localhost:8080/dms/home.html' target=_top>"); out.println("<image src='http://localhost:8080//dms//images//home1.gif' width='40'></a></td></tr></table></center>"); out.println("</table></center></body></html>"); st.close(); con.close(); } catch(Exception e){out.println(e);} } }
[ "enggsudarshan@gmail.com" ]
enggsudarshan@gmail.com
056022331e359e51eb5e36b5ee3665d5fb61d239
4de8b5a4946ffc567166860c5a13d07d863b7f3f
/src/main/java/com/macbook/profile/profile/firstPart/ProfileXmlConfigExample.java
606eb67a1dc6d012f0dd21ae2c57480363fd198d
[]
no_license
BitterPepper/SpringSituationExamples
31dc56d062d1a7786fb94826cd1af70d663c2b91
6ed011309c438038561ce71bdd4ee5bb2df14888
refs/heads/master
2021-06-21T05:26:59.964454
2017-08-14T14:06:37
2017-08-14T14:06:37
100,273,988
0
0
null
null
null
null
UTF-8
Java
false
false
833
java
package com.macbook.profile.profile.firstPart; import java.util.List; import org.springframework.context.support.GenericXmlApplicationContext; //VM arguments: -Dspring.profiles.active="highschool" // -Dspring.profiles.active="kindergarten" public class ProfileXmlConfigExample { public static void main(String[] args) { GenericXmlApplicationContext ctx = new GenericXmlApplicationContext(); ctx.load("classpath:META-INF/spring/*ProfilePart.xml"); ctx.refresh(); //or ctx.getEnvironment().setActiveProfiles("kindergarten"); //and use annotation @profile FoodProviderService foodProviderService = ctx.getBean("foodProviderService", FoodProviderService.class); List<Food> lunchSet = foodProviderService.provideLunchSet(); for(Food food : lunchSet){ System.out.println("Food: "+ food.getName()); } } }
[ "developer_sa@ukr.net" ]
developer_sa@ukr.net
5f3303cdf8e73f0b199badba2d3e2d8b03b601a0
6b569375c1fdecaa8b73aaccc64b95b54901800b
/PresentationPav/src/main/java/sn/uva/pav/commun/TablePagineePav.java
1de3c7a8b631b1d580e902bd87d46205eb0cbd8b
[]
no_license
bafall/avicole
03d467821e656cb2782645f97b4d0468b63f4c60
a242e203b6d76fd610a421e92289003a3e3ba286
refs/heads/master
2021-01-02T08:40:10.445428
2014-02-19T13:57:26
2014-02-19T13:57:26
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,519
java
package sn.uva.pav.commun; import com.jensjansson.pagedtable.PagedTable; import com.vaadin.data.util.IndexedContainer; import com.vaadin.ui.CustomComponent; import com.vaadin.ui.Panel; import com.vaadin.ui.Table.ColumnHeaderMode; import com.vaadin.ui.themes.Reindeer; import com.vaadin.ui.VerticalLayout; public class TablePagineePav extends CustomComponent { private static final long serialVersionUID = 1L; private PagedTable tablepaginee; private Panel root; public TablePagineePav(IndexedContainer conteneur) { root = new Panel(); setCompositionRoot(root); root.setStyleName(Reindeer.PANEL_LIGHT); tablepaginee = new PagedTable(); tablepaginee.setContainerDataSource(conteneur); root.setWidth("98%"); VerticalLayout cadre = new VerticalLayout(); cadre.addComponent(tablepaginee.createControls()); cadre.addComponent(tablepaginee); cadre.addComponent(tablepaginee.createControls()); root.setContent(cadre); cadre.setWidth("99%"); tablepaginee.setWidth("100%"); tablepaginee.setColumnHeaderMode(ColumnHeaderMode.HIDDEN); tablepaginee.setPageLength(5); } /** * Met à jour le contenu de la table * @param conteneur le nouveau contenu */ public void setConteneur(IndexedContainer conteneur) { tablepaginee.setContainerDataSource(conteneur); } /** * Met à jour la taille par page. * @param pageLength la nouvelle taille */ public void setTaillePage(int pageLength){ tablepaginee.setPageLength(pageLength); } }
[ "bafal@MacBook-Pro-de-Babacar.local" ]
bafal@MacBook-Pro-de-Babacar.local
fb79d318dbd4593daae8c5a4d82c9a889dd8b5e4
55b195ef3ab3f3bc4a650e5116ba6ab9f08cb396
/src/bytedance/LowestCommonAncestor236.java
4cf83dbc84de936311c5ea84747a48774b0dd393
[]
no_license
xiafei571/leetcode
970315ba1fe01400ab8991791f774bd35a110717
d3b00fba11172fd9135f415a4893e044b91a8ff3
refs/heads/master
2022-11-20T13:46:58.284167
2022-11-05T06:54:49
2022-11-05T06:54:49
276,824,757
2
0
null
null
null
null
UTF-8
Java
false
false
463
java
package bytedance; import common.TreeNode; public class LowestCommonAncestor236 { public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) { if (root == null || root == p || root == q) { return root; } TreeNode left = lowestCommonAncestor(root.left, p, q); TreeNode right = lowestCommonAncestor(root.right, p, q); if (left != null && right != null) { return root; } else { return left == null ? right : left; } } }
[ "xiafei571@gmail.com" ]
xiafei571@gmail.com
f54004f8557230bf35df87a45b654185b44431b1
ca7d41ff7b2a52de9393274ce8f54be8cb34958b
/src/main/java/cn/xpbootcamp/refactoring/Order.java
a88db6897a6e47ba6333d8f67aec587f02298857
[]
no_license
xpbootcamp/refactoring-cashier-baseline
173b6a9b3aa2dcd0f42c858650d56ff07faa726b
b7c5502ba477053e6dbdfb10d124741d61d78dac
refs/heads/master
2022-07-15T10:07:08.469364
2020-05-18T10:29:51
2020-05-18T10:29:51
264,900,703
0
11
null
null
null
null
UTF-8
Java
false
false
479
java
package cn.xpbootcamp.refactoring; import java.util.List; public class Order { String nm; String addr; List<LineItem> li; public Order(String nm, String addr, List<LineItem> li) { this.nm = nm; this.addr = addr; this.li = li; } public String getCustomerName() { return nm; } public String getCustomerAddress() { return addr; } public List<LineItem> getLineItems() { return li; } }
[ "sjyuan@thoughtworks.com" ]
sjyuan@thoughtworks.com
a3a97d9c5a35ec5d27a4910904e417e4242c00ea
d001000626f1c4279663f0070b5cd32391b661fe
/src/main/java/com/imaginea/javapractise/OCJP/StaticFrog.java
6d3b59753947eebbb6ec3cc7628cdef3c2c41524
[]
no_license
scharanjit/JavaPractise
26e5de6e285ed489239bc025cfec9941096006d5
de07f66274fe97fce7697a2b3057cb00fa5d39f1
refs/heads/master
2016-09-12T09:00:52.967466
2016-05-20T07:07:28
2016-05-20T07:07:28
59,269,704
0
0
null
null
null
null
UTF-8
Java
false
false
350
java
package OCJP; public class StaticFrog { int frogSize = 0; public int getFrogSize() { return frogSize; } public StaticFrog(int s) { frogSize = s; } public static void main (String [] args) { StaticFrog f = new StaticFrog(25); System.out.println(f.getFrogSize()); // Access instance // method using f } }
[ "charanjit.singh@imaginea.com" ]
charanjit.singh@imaginea.com
703faa31a01169e6b4e507230eacc7d12232f94f
64e3f2b8d6abff582d8dff2f200e0dfc708a5f4b
/2017/Isis/DemoApp/src/main/java/domainapp/dom/impl/HelloWorldObject.java
c7cdb6ca1bca6e74c9f993797bee23690edf07ce
[]
no_license
tedneward/Demos
a65df9d5a0390e3fdfd100c33bbc756c83d4899e
28fff1c224e1f6e28feb807a05383d7dc1361cc5
refs/heads/master
2023-01-11T02:36:24.465319
2019-11-30T09:03:45
2019-11-30T09:03:45
239,251,479
0
0
null
2023-01-07T14:38:21
2020-02-09T05:21:15
Java
UTF-8
Java
false
false
4,434
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 domainapp.dom.impl; import javax.jdo.annotations.IdGeneratorStrategy; import javax.jdo.annotations.IdentityType; import javax.jdo.annotations.VersionStrategy; import com.google.common.collect.Ordering; import org.apache.isis.applib.annotation.Action; import org.apache.isis.applib.annotation.Auditing; import org.apache.isis.applib.annotation.CommandReification; import org.apache.isis.applib.annotation.DomainObject; import org.apache.isis.applib.annotation.DomainObjectLayout; import org.apache.isis.applib.annotation.Editing; import org.apache.isis.applib.annotation.Parameter; import org.apache.isis.applib.annotation.ParameterLayout; import org.apache.isis.applib.annotation.Property; import org.apache.isis.applib.annotation.Publishing; import org.apache.isis.applib.annotation.SemanticsOf; import org.apache.isis.applib.annotation.Title; import org.apache.isis.applib.services.message.MessageService; import org.apache.isis.applib.services.repository.RepositoryService; import org.apache.isis.applib.services.title.TitleService; import lombok.AccessLevel; @javax.jdo.annotations.PersistenceCapable(identityType = IdentityType.DATASTORE, schema = "DemoApp" ) @javax.jdo.annotations.DatastoreIdentity(strategy = IdGeneratorStrategy.IDENTITY, column = "id") @javax.jdo.annotations.Version(strategy= VersionStrategy.DATE_TIME, column ="version") @javax.jdo.annotations.Queries({ @javax.jdo.annotations.Query( name = "findByName", value = "SELECT " + "FROM domainapp.dom.impl.HelloWorldObject " + "WHERE name.indexOf(:name) >= 0 ") }) @javax.jdo.annotations.Unique(name="HelloWorldObject_name_UNQ", members = {"name"}) @DomainObject(auditing = Auditing.ENABLED) @DomainObjectLayout() // trigger events etc. @lombok.RequiredArgsConstructor(staticName = "create") @lombok.Getter @lombok.Setter public class HelloWorldObject implements Comparable<HelloWorldObject> { @javax.jdo.annotations.Column(allowsNull = "false", length = 40) @lombok.NonNull @Property(editing = Editing.DISABLED) @Title(prepend = "Object: ") private String name; @javax.jdo.annotations.Column(allowsNull = "true", length = 4000) @Property(editing = Editing.ENABLED) private String notes; @Action(semantics = SemanticsOf.IDEMPOTENT, command = CommandReification.ENABLED, publishing = Publishing.ENABLED) public HelloWorldObject updateName( @Parameter(maxLength = 40) @ParameterLayout(named = "Name of Object") final String name) { setName(name); return this; } public String default0UpdateName() { return getName(); } @Action(semantics = SemanticsOf.NON_IDEMPOTENT_ARE_YOU_SURE) public void delete() { final String title = titleService.titleOf(this); messageService.informUser(String.format("'%s' deleted", title)); repositoryService.removeAndFlush(this); } @Override public int compareTo(final HelloWorldObject other) { return Ordering.natural().onResultOf(HelloWorldObject::getName).compare(this, other); } //region > injected services @javax.inject.Inject @lombok.Getter(AccessLevel.NONE) @lombok.Setter(AccessLevel.NONE) RepositoryService repositoryService; @javax.inject.Inject @lombok.Getter(AccessLevel.NONE) @lombok.Setter(AccessLevel.NONE) TitleService titleService; @javax.inject.Inject @lombok.Getter(AccessLevel.NONE) @lombok.Setter(AccessLevel.NONE) MessageService messageService; //endregion }
[ "ted@tedneward.com" ]
ted@tedneward.com
f708e934eab53deb2986c902310d4c485620bd5c
983c06a35671116b5f1d977032b5b069b214861f
/GomokuPlayer.java
5a1d1d9afab27218b49bc9928aaf71d90044e1cc
[]
no_license
Prads-/GGP_SourceCode
7ff5f21b3d8796cde46b8522497b2a96cbf83bb1
064a5362c1f906aa53caff7021b05b736014241a
refs/heads/master
2020-04-04T00:27:34.988267
2014-12-10T08:40:22
2014-12-10T08:40:22
null
0
0
null
null
null
null
UTF-8
Java
false
false
9,852
java
package org.ggp.base.player.gamer.statemachine.sample; import java.util.List; import org.ggp.base.player.gamer.event.GamerSelectedMoveEvent; import org.ggp.base.util.gdl.grammar.GdlPool; import org.ggp.base.util.statemachine.Move; import org.ggp.base.util.statemachine.StateMachine; import org.ggp.base.util.statemachine.exceptions.GoalDefinitionException; import org.ggp.base.util.statemachine.exceptions.MoveDefinitionException; import org.ggp.base.util.statemachine.exceptions.TransitionDefinitionException; public class GomokuPlayer extends SampleGamer { private char [][] board; private int width, height, k; private char empty1 = 'b', empty2 = 'c'; private String actionStr; private boolean boardInitialised; @Override public void stateMachineMetaGame(long timeout) throws TransitionDefinitionException, MoveDefinitionException, GoalDefinitionException { super.stateMachineMetaGame(timeout); empty1 = 'b'; empty2 = 'c'; boardInitialised = false; } @Override public Move stateMachineSelectMove(long timeout) throws TransitionDefinitionException, MoveDefinitionException, GoalDefinitionException { long start = System.currentTimeMillis(); StateMachine stateMachine = getStateMachine(); List<Move> availableMoves = stateMachine.getLegalMoves(getCurrentState(), getRole()); Move retMove = new Move(GdlPool.getConstant("NOOP")); if (availableMoves.size() > 1) { if (!boardInitialised) { boardInitialised = true; initialiseBoard(availableMoves); } String moveStr = availableMoves.get(0).toString(); int index = moveStr.indexOf(" ", 2); actionStr = moveStr.substring(2, index); findOpponentInput(availableMoves); if (board[width / 2][height / 2] == empty1) { board[width / 2][height / 2] = 'x'; String moveString = makeMoveStr(width / 2, height / 2); retMove = getMoveFromStr(availableMoves, moveString); } else { int [] x = new int[1], y = new int[1]; if (!checkWin(x, y, 'x')) { if (!checkWin(x, y, 'o')) { int [] myX = new int[1], myY = new int[1], oppX = new int[1], oppY = new int[1]; int myThreat = getHighestThreatMove(myX, myY, 'x'); int oppThreat = getHighestThreatMove(oppX, oppY, 'o'); System.out.println("My threat: " + myThreat); System.out.println("Opponent threat: " + oppThreat); if (oppThreat > myThreat || oppThreat == k - 1) { System.out.println("Blocking opponent"); x = oppX; y = oppY; } else { x = myX; y = myY; System.out.println("Offensive move"); } } } board[x[0]][y[0]] = 'x'; String moveString = makeMoveStr(x[0], y[0]); retMove = getMoveFromStr(availableMoves, moveString); } printBoard(); } long stop = System.currentTimeMillis(); notifyObservers(new GamerSelectedMoveEvent(availableMoves, retMove, stop - start)); return retMove; } private void initialiseBoard(List<Move> availableMoves) { int [] x = new int[1], y = new int[1]; x[0] = 0; y[0] = 0; for (Move move : availableMoves) { int [] tempX = new int[1], tempY = new int[1]; parseMoveStr(tempX, tempY, move.toString()); if (tempX[0] > x[0]) { x[0] = tempX[0]; } if (tempY[0] > y[0]) { y[0] = tempY[0]; } } width = x[0] + 1; height = y[0] + 1; System.out.println("Width: " + width); System.out.println("Height: " + height); board = new char[width][height]; for (int i = 0; i < width; ++i) { for (int j = 0; j < height; ++j) { board[i][j] = empty1; } } if (width == 3 && height == 3) { //tic-tac-toe k = 3; } else { //gomoku k = 5; } } private String makeMoveStr(int x, int y) { return ("( " + actionStr + " " + (y + 1) + " " + (x + 1) + " )"); } private void swapEmptyVar() { empty1 ^= empty2; empty2 ^= empty1; empty1 ^= empty2; } private void findOpponentInput(List<Move> legalMoves) { swapEmptyVar(); for (Move move : legalMoves) { String moveStr = move.toString(); int [] x = new int[1], y = new int[1]; parseMoveStr(x, y, moveStr); board[x[0]][y[0]] = empty1; } for (int i = 0; i < width; ++i) { for (int j = 0; j < height; ++j) { if (board[i][j] == empty2) { board[i][j] = 'o'; return; } } } } private Move getMoveFromStr(List<Move> legalMoves, String moveStr) { for (Move move : legalMoves) { if (move.toString().equals(moveStr)) { return move; } } return new Move(GdlPool.getConstant("NOOP")); } private void parseMoveStr(int [] x, int [] y, String moveStr) { int index1 = moveStr.indexOf(" ", 2); ++index1; int index2 = moveStr.indexOf(" ", index1); y[0] = Integer.parseInt(moveStr.substring(index1, index2)) - 1; ++index2; index1 = moveStr.indexOf(" ", index2); x[0] = Integer.parseInt(moveStr.substring(index2, index1)) - 1; } private boolean checkWin(int [] x, int [] y, char mark) { for (int i = 0; i < width; ++i) { for (int j = 0; j < height; ++j) { if (board[i][j] == empty1) { board[i][j] = mark; if (checkWinStatus(mark)) { x[0] = i; y[0] = j; return true; } board[i][j] = empty1; } } } return false; } private boolean checkWinStatus(char mark) { for (int i = 0; i < width; ++i) { for (int j = 0; j <= height - k; ++j) { boolean win = true; for (int k = 0; k < this.k && win; ++k) { win = (board[i][j + k] == mark); } if (win) { return true; } } } for (int i = 0; i <= width - k; ++i) { for (int j = 0; j < height; ++j) { boolean win = true; for (int k = 0; k < this.k && win; ++k) { win = (board[i + k][j] == mark); } if (win) { return true; } } } for (int i = 0; i <= width - k; ++i) { for (int j = k - 1; j < height; ++j) { boolean win = true; for(int k = 0; k < this.k && win; ++k) { win = (board[i + k][j - k] == mark); } if(win) { return true; } } } for (int i = 0; i <= width - k; ++i) { for (int j = height - k; j >= 0; --j) { boolean win = true; for (int k = 0; k < this.k && win; ++k) { win = (board[i + k][j + k] == mark); } if (win) { return true; } } } return false; } private int getHighestThreatMove(int [] x, int [] y, char mark) { int highestThreat = -1; x[0] = 0; y[0] = 0; for (int i = 0; i < width; ++i) { for (int j = 0; j < height; ++j) { if (board[i][j] == empty1) { int currentThreat = 0; boolean wasThreat = false; for (int k = i + 1; k < width; ++k) { if (board[k][j] == mark) { ++currentThreat; wasThreat = true; } else if (board[k][j] == empty1 && wasThreat) { ++currentThreat; break; } else { break; } } wasThreat = false; for (int k = i - 1; k >= 0; --k) { if (board[k][j] == mark) { ++currentThreat; wasThreat = true; } else if (board[k][j] == empty1 && wasThreat) { ++currentThreat; break; } else { break; } } highestThreat = compareThreat(x, y, i, j, currentThreat, highestThreat); currentThreat = 0; wasThreat = false; for (int k = j + 1; k < height; ++k) { if (board[i][k] == mark) { ++currentThreat; wasThreat = true; } else if (board[i][k] == empty1 && wasThreat) { ++currentThreat; break; } else { break; } } wasThreat = false; for (int k = j - 1; k >= 0; --k) { if (board[i][k] == mark) { ++currentThreat; wasThreat = true; } else if (board[i][k] == empty1 && wasThreat) { ++currentThreat; break; } else { break; } } highestThreat = compareThreat(x, y, i, j, currentThreat, highestThreat); currentThreat = 0; wasThreat = false; for (int k = 1; i + k < width && j + k < height; ++k) { if (board[i + k][j + k] == mark) { ++currentThreat; wasThreat = true; } else if (board[i + k][j + k] == empty1 && wasThreat) { ++currentThreat; break; } else { break; } } wasThreat = false; for (int k = 1; i - k >= 0 && j - k >= 0; ++k) { if (board[i - k][j - k] == mark) { ++currentThreat; wasThreat = true; } else if (board[i - k][j - k] == empty1 && wasThreat) { ++currentThreat; break; } else { break; } } highestThreat = compareThreat(x, y, i, j, currentThreat, highestThreat); currentThreat = 0; wasThreat = false; for (int k = 1; i - k >= 0 && j + k < height; ++k) { if (board[i - k][j + k] == mark) { ++currentThreat; wasThreat = true; } else if (board[i - k][j + k] == empty1 && wasThreat) { ++currentThreat; break; } else { break; } } wasThreat = false; for (int k = 1; i + k < width && j - k >= 0; ++k) { if (board[i + k][j - k] == mark) { ++currentThreat; wasThreat = true; } else if (board[i + k][j - k] == empty1 && wasThreat) { ++currentThreat; break; } else { break; } } highestThreat = compareThreat(x, y, i, j, currentThreat, highestThreat); } } } return highestThreat; } private int compareThreat(int [] x, int [] y, int i, int j, int currentThreat, int highestThreat) { if (currentThreat >= highestThreat) { x[0] = i; y[0] = j; return currentThreat; } return highestThreat; } private void printBoard() { for (int i = 0; i < width; ++i) { for (int j = 0; j < height; ++j) { if (board[i][j] != 'x' && board[i][j] != 'o') { System.out.print("."); } else { System.out.print(board[i][j]); } } System.out.println(""); } System.out.println(""); } }
[ "i.am.prads@gmail.com" ]
i.am.prads@gmail.com
982972cc9bc0d93ea983fd405bda0325a460d46b
3ad03f230873dacaadec323483cf22106354e7c4
/src/main/java/com/dbmsproject/EcommerceWebApp/PaymentsType.java
08f8a6d661da7fb51990546674ef09811b37f540
[]
no_license
darkstorm01/EcommerceWebApp
134b2840c3c8786af71b551a70c802d0aec7ca81
661f8c9daef34b70584cdaae5894bc5097a00fb8
refs/heads/master
2023-04-12T14:28:54.931222
2021-04-30T17:58:35
2021-04-30T17:58:35
null
0
0
null
null
null
null
UTF-8
Java
false
false
624
java
package com.dbmsproject.EcommerceWebApp; public class PaymentsType { private int cID; private String transtype; public PaymentsType() { super(); } public PaymentsType(int cID, String transtype) { super(); this.cID = cID; this.transtype = transtype; } public int getcID() { return cID; } public void setcID(int cID) { this.cID = cID; } public String getTranstype() { return transtype; } public void setTranstype(String transtype) { this.transtype = transtype; } @Override public String toString() { return "PaymentsType [cID=" + cID + ", transtype=" + transtype + "]"; } }
[ "khr10@iitbbs.ac.in" ]
khr10@iitbbs.ac.in
ef0b8eb9a16e80449b82409d63c4e3b5b5c34b23
5c9f8ea230fa08c679abb64289f135197e048480
/latest/JavaApplication17/src/javaapplication17/JavaApplication17.java
c71a73b9fc3db71dce5c99c3df0c9c761f30242a
[ "MIT" ]
permissive
abhimanbhau/C-Compiler_Dummy
e5d6b221ce0d3af39a0972c5c36b820411cd07e2
a615b51ddf5ff40e890e29fed665996fbd452d50
refs/heads/master
2021-01-10T14:47:51.377812
2016-04-29T15:02:31
2016-04-29T15:02:31
49,572,984
0
0
null
null
null
null
UTF-8
Java
false
false
12,007
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 javaapplication17; import java.util.Stack; import java.io.*; import java.util.logging.Level; import java.util.logging.Logger; /** * * @author Deshpande * Code Gen * value stack * token passed */ public class JavaApplication17 { /** * @param args the command line arguments */ String[] keywords = {"auto", "break", "case", "char", "const", "continue", "default", "do", "double", "else", "enum", "extern", "float", "for", "goto", "if", "int", "include", "long", "main", "register", "return", "short", "signed", "sizeof", "static", "struct", "switch", "typedef", "union", "unsigned", "void", "volatile", "while"}; String[] relop1 = {"<=", ">=", ">", "<", "=="}; int flg = 0; int count = 0; Stack stack = new Stack(); Stack symstack = new Stack(); Stack valstack = new Stack(); String[][] table = new String[37][22]; public void CreateParseTable() { BufferedReader br = null; try { br = new BufferedReader(new FileReader("Parse.csv")); for (int row = 0; row <= 36; row++) { String line = br.readLine(); if (line == null) { break; } String[] val = line.split(","); for (int col = 0; col < 22; col++) { table[row][col] = val[col]; //System.out.println("row="+row+"col="+col); //System.out.println(""+table[row][col]); } } } catch (Exception e) { System.out.println("ERROR: " + e); } } public void Run_lex() { stack.push("$"); stack.push("0"); try { BufferedReader br = new BufferedReader(new FileReader("parsefile.c")); String line; while ((line = br.readLine()) != null) { line = line.replaceAll("while", "while "); line = line.replaceAll("[(]", "( "); line = line.replaceAll("[)]", " ) "); line = line.replaceAll("[{]", "{ "); line = line.replaceAll("[}]", "} "); line = line.replaceAll("[;]", " ; "); line = line.replaceAll("[+]", " + "); line = line.replaceAll("[-]", " - "); line = line.replaceAll("[*]", " * "); line = line.replaceAll("[/]", " / "); line = line.replaceAll("\n", ""); String[] word = line.split(" "); String lexeme; for (int i = 0; i < word.length; i++) { if (checkIdentifier(word[i]) && !(word[i].equals("while"))) { lexeme = word[i]; word[i] = "id"; Run_Parser(word[i].trim(), lexeme); //System.out.println("token passed: " + word[i]); continue; } if (checkReloperator(word[i])) { lexeme = word[i]; word[i] = "relop"; //System.out.println("token passed: " + word[i]); Run_Parser(word[i].trim(), lexeme); continue; } //System.out.println("token passed: " + word[i]); Run_Parser(word[i].trim(), word[i].trim()); } } //System.out.println("token passed: $"); Run_Parser("$", "$"); } catch (Exception e) { System.out.println("ERROR: " + e); } } public boolean checkIdentifier(String str) { boolean res = false; if ((str.charAt(0) >= 'a' && str.charAt(0) <= 'z') || (str.charAt(0) >= 'A' && str.charAt(0) <= 'Z') || (str.charAt(0) == '_')) { res = true; for (int k = 0; k < str.length(); k++) { if ((str.charAt(k) >= '0' && str.charAt(k) <= '9') || (str.charAt(k) >= 'a' && str.charAt(k) <= 'z') || (str.charAt(k) >= 'A' && str.charAt(k) <= 'Z') || (str.charAt(k) == '_')) { res = true; continue; } else { res = false; break; } } } return res; } public boolean checkReloperator(String str) { boolean res = false; for (int k = 0; k < relop1.length; k++) { if (str.equals(relop1[k])) { res = true; break; } } return res; } public void Run_Parser(String input, String lexeme) { int cnt = 0; String[] production = {"S->AS", "S->IS", "S->A", "S->I", "A->id=E;", "I->while(C){S}", "C->id relop id", "E->E+T", "E->E-T", "E->T", "T->T*F", "T->T/F", "T->F", "F->(E)", "F->id"}; int[] prodcnt = {2, 2, 1, 1, 4, 7, 3, 3, 3, 1, 3, 3, 1, 3, 1}; String[] sem_rule = {"n", "n", "n", "n", "=", "n", "r", "+", "-", "n", "*", "/", "n", "n", "n"}; while (true) { String top = "" + stack.peek(); //String inp = input[cnt]; String inp = input; //System.out.print("stack: "+stack.subList(0, stack.size())); //System.out.print(" symbol stack: "+symstack.subList(0, symstack.size())); // this is it System.out.print("value stack content: " + valstack.subList(0, valstack.size())); System.out.println(" input: " + inp); // and now it's over int rowno = 0, colno = 0; for (int row = 0; row <= 36; row++) { if (table[row][0].equals(top)) { rowno = row; break; } } for (int col = 0; col < 22; col++) { if (table[0][col].equals(inp)) { colno = col; break; } } String val = table[rowno][colno]; if (val.equals("0")) { //System.out.println("error"); break; } if (val.equals("ACCEPT")) { System.out.println("Aaaaaaaand it's done!! :D"); break; } if (val.charAt(0) == 'S') { //System.out.println("***************************"); if (input.equals("id") || input.equals("relop")) { //System.out.println("****** lexeme entered"); valstack.push(lexeme); } String v = val.substring(1, val.length()); stack.push(v); symstack.push(input); return; } if (val.charAt(0) == 'R') { String v = val.substring(1, val.length()); int t = Integer.parseInt(v) - 1; String prod = production[t]; prod = prod.substring(0, prod.indexOf("-")); int pc = prodcnt[t]; String sem = sem_rule[t]; String var1 = null, var2 = null, var3 = null; switch (sem) { case "n": break; case "+": var2 = "" + valstack.pop(); var1 = "" + valstack.pop(); //System.out.println("\nIntermediate Code\n"); System.out.println("t" + (count++) + ":= " + var1 + " + " + var2 + "\n"); //System.out.println(var1 + sem + var2); //System.out.println("\nCode Gen***\n"); valstack.push("t" + (count - 1)); break; case "-": var2 = "" + valstack.pop(); var1 = "" + valstack.pop(); //System.out.println("\nIntermediate Code\n"); System.out.println("t" + (count++) + ":= " + var1 + " - " + var2 + "\n"); //System.out.println(var1 + sem + var2); //System.out.println("\nCode Gen***\n"); valstack.push("t" + (count - 1)); break; case "*": var2 = "" + valstack.pop(); var1 = "" + valstack.pop(); //System.out.println("\nIntermediate Code\n"); System.out.println("t" + (count++) + ":= " + var1 + " * " + var2 + "\n"); //System.out.println(var1 + sem + var2); //System.out.println("\nCode Gen***\n"); valstack.push("t" + (count - 1)); break; case "/": var2 = "" + valstack.pop(); var1 = "" + valstack.pop(); //System.out.println("\nIntermediate Code\n"); System.out.println("t" + (count++) + ":= " + var1 + " / " + var2 + "\n"); //System.out.println(var1 + sem + var2); //System.out.println("\nCode Gen***\n"); valstack.push("t" + (count - 1)); break; case "r": var3 = "" + valstack.pop(); var2 = "" + valstack.pop(); var1 = "" + valstack.pop(); //System.out.println("\nIntermediate Code\n"); System.out.println("t" + (count++) + ":= " + var1 + var2 + var3 + "\n"); //System.out.println(var1 + sem + var2); //System.out.println("\nCode Gen***\n"); valstack.push("t" + (count)); break; case "=": var2 = "" + valstack.pop(); var1 = "" + valstack.pop(); //System.out.println("\nIntermediate Code\n"); System.out.println("t" + (count++) + ":= " + var1 + " = " + var2 + "\n"); //System.out.println(var1 + sem + var2); //System.out.println("\nCode Gen***\n"); valstack.push("t" + (count - 1)); break; } int d = 0; while (d < pc) { // valstack.push(symstack.peek()); symstack.pop(); stack.pop(); d++; } symstack.push(prod); for (int row = 1; row < 36; row++) { if (table[row][0].equals("" + stack.peek())) { rowno = row; break; } } for (int col = 0; col < 22; col++) { if (table[0][col].equals(symstack.peek())) { colno = col; break; } } val = table[rowno][colno]; stack.push(val); } } } public static void main(String[] args) { // TODO code application logic here JavaApplication17 ja17 = new JavaApplication17(); ja17.CreateParseTable(); ja17.Run_lex(); } }
[ "abhimanbhau@gmail.com" ]
abhimanbhau@gmail.com
59876b872f95ac8196aacb19c2296c0a284b8a70
384cbaf539b5ec92d59c719b05ac8a781b5f4e82
/src/com/javarush/test/level09/lesson11/home02/Solution.java
59150226cefcc023235372f61cebde503e01d780
[]
no_license
chernyak-andrew/JavaRushHomeWork
6acfc08d614dfb4b0d46898b635379a07a3d0424
02214ff752ad9b556617389a2514f379ecc864df
refs/heads/master
2021-01-19T01:04:28.797660
2016-06-27T16:58:42
2016-06-27T16:58:42
25,467,474
0
1
null
null
null
null
UTF-8
Java
false
false
594
java
package com.javarush.test.level09.lesson11.home02; /* Обратный отсчёт от 10 до 0 Написать в цикле обратный отсчёт от 10 до 0. Для задержки иcпользовать Thread.sleep(100); Обернуть вызов sleep в try..catch. */ public class Solution { public static void main(String[] args) { for (int i = 10; i >= 0; i--) { System.out.println(i); try { Thread.sleep(100); } catch (InterruptedException ex){} } } }
[ "chernyak.andrew@gmail.com" ]
chernyak.andrew@gmail.com
56886e4070b696edbd2c2ef1b5edf85803da507d
5c4d2c14f1bf1c89bdd4a223f94f467d7daf78f4
/src/test/java/pages/resources/Currency.java
42958e6b166d3db7897390cadd497f10ff193b41
[]
no_license
DecodeSaty/CodeDA
03fa5136ba5cdc70e2ef48b07717f32feda8e7c7
14f4400aec0edcfe42080f9135430bba4b848a9f
refs/heads/main
2023-07-31T20:41:50.841988
2021-10-04T20:50:17
2021-10-04T20:50:17
413,577,729
0
0
null
null
null
null
UTF-8
Java
false
false
783
java
package pages.resources; import java.io.IOException; public class Currency { private String id ; private String currency; public void setId(String id) { this.id = id; } public void setCurrency(String currency) { this.currency = currency; } public String getId() { return id; } public String getCurrency() { return currency; } public Currency(){} public Currency(String id) throws IOException { Currency[] currencies = JacksonUtils.deserializeJson("currency.json", Currency[].class); for(Currency currency: currencies){ if(currency.getId().equals(id)){ this.id = id; this.currency= currency.getCurrency(); } } } }
[ "dxb.stripathi@gmail.com" ]
dxb.stripathi@gmail.com
041d2f2154e41b6742d761eab72d4aa48a8d32f3
ed5159d056e98d6715357d0d14a9b3f20b764f89
/test/irvine/oeis/a167/A167978Test.java
634773ebceca71f8c0c077e9c1ef63125bff1166
[]
no_license
flywind2/joeis
c5753169cf562939b04dd246f8a2958e97f74558
e5efd6971a0062ac99f4fae21a7c78c9f9e74fea
refs/heads/master
2020-09-13T18:34:35.080552
2019-11-19T05:40:55
2019-11-19T05:40:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
195
java
package irvine.oeis.a167; import irvine.oeis.AbstractSequenceTest; /** * Tests the corresponding class. * @author Sean A. Irvine */ public class A167978Test extends AbstractSequenceTest { }
[ "sean.irvine@realtimegenomics.com" ]
sean.irvine@realtimegenomics.com
1a2b0b0d07967821e59a97359330a1e0873cd306
d2494743f09d6b753b55f3c29b727bba3ffbbc84
/src/info/vannier/gotha/JFrToolsMemory.java
792a26655a5ce110c83595207dd8c4e3e4917232
[]
no_license
pheek/gotha
3e7473ac7b9352fc1b4d0f0f8934d2ad1ddc7f4d
ae838b9dd7dd6e02d7f6abc487decb6bc366d5fc
refs/heads/master
2021-07-23T11:12:16.477828
2014-11-10T20:29:43
2014-11-10T20:29:43
108,654,581
0
0
null
2017-10-28T14:10:58
2017-10-28T14:10:57
null
UTF-8
Java
false
false
5,000
java
/* * JFrToolsMemory.java * * Created on 9 mars 2012, 17:28:27 */ package info.vannier.gotha; import java.awt.Color; import java.awt.Dimension; import java.awt.Toolkit; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; /** * * @author Luc */ public class JFrToolsMemory extends javax.swing.JFrame { private static final long REFRESH_DELAY = 500; /** Creates new form JFrToolsMemory */ public JFrToolsMemory() { initComponents(); customInitComponents(); setupRefreshTimer(); } private void setupRefreshTimer() { ActionListener taskPerformer = new ActionListener() { @Override public void actionPerformed(ActionEvent evt) { updateComponents(); } }; new javax.swing.Timer((int) REFRESH_DELAY, taskPerformer).start(); } private void customInitComponents(){ int w = JFrGotha.MEDIUM_FRAME_WIDTH; int h = JFrGotha.MEDIUM_FRAME_HEIGHT; Dimension dim = Toolkit.getDefaultToolkit().getScreenSize(); setBounds((dim.width - w)/2, (dim.height -h)/2, w, h); setIconImage(Gotha.getIconImage()); updateComponents(); } private void updateComponents(){ long maxM = Runtime.getRuntime().maxMemory(); long freeM = Runtime.getRuntime().freeMemory(); long totalM = Runtime.getRuntime().totalMemory(); long usedM = totalM - freeM; this.txfMaxMem.setText("" + maxM/1024/1024 + " GiB"); this.txfUsedMem.setText("" + usedM/1024/1024 + " GiB"); if (usedM * 100 /maxM > 80) this.txfUsedMem.setBackground(Color.red); else this.txfUsedMem.setBackground(Color.white); } /** 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(); txfMaxMem = new javax.swing.JTextField(); txfUsedMem = new javax.swing.JTextField(); btnRunGB = new javax.swing.JButton(); btnClose = new javax.swing.JButton(); setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); setTitle("Memory Manager"); getContentPane().setLayout(null); jLabel1.setText("Max Memory : "); getContentPane().add(jLabel1); jLabel1.setBounds(70, 30, 120, 14); jLabel2.setText("Used Memory : "); getContentPane().add(jLabel2); jLabel2.setBounds(70, 60, 120, 14); txfMaxMem.setHorizontalAlignment(javax.swing.JTextField.TRAILING); getContentPane().add(txfMaxMem); txfMaxMem.setBounds(210, 30, 90, 20); txfUsedMem.setHorizontalAlignment(javax.swing.JTextField.TRAILING); getContentPane().add(txfUsedMem); txfUsedMem.setBounds(210, 60, 90, 20); btnRunGB.setText("Run Garbage Collector"); btnRunGB.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { btnRunGBActionPerformed(evt); } }); getContentPane().add(btnRunGB); btnRunGB.setBounds(70, 110, 240, 23); btnClose.setText("Close"); btnClose.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { btnCloseActionPerformed(evt); } }); getContentPane().add(btnClose); btnClose.setBounds(20, 160, 330, 23); pack(); }// </editor-fold>//GEN-END:initComponents private void btnCloseActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnCloseActionPerformed dispose(); }//GEN-LAST:event_btnCloseActionPerformed private void btnRunGBActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnRunGBActionPerformed Runtime.getRuntime().gc(); this.updateComponents(); }//GEN-LAST:event_btnRunGBActionPerformed /** * @param args the command line arguments */ public static void main(String args[]) { java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new JFrToolsMemory().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton btnClose; private javax.swing.JButton btnRunGB; private javax.swing.JLabel jLabel1; private javax.swing.JLabel jLabel2; private javax.swing.JTextField txfMaxMem; private javax.swing.JTextField txfUsedMem; // End of variables declaration//GEN-END:variables }
[ "Luc@Asus" ]
Luc@Asus
2d6633c6d376c930bc927a409083ffc831df0fdc
105f9143c67ff682df7369cfde7c0b297ddcc951
/Portal-Green-House-master/greenhouse/src/java/br/udesc/greenhouse/bean/LoginBean.java
81e2fc8a173e31f087d1e41ffb96831c219379e0
[]
no_license
wagnners/web-java-green-house-project
39c09e7502bd94e508cc0e55c1233caaf4066d37
571ae4d2cb4a6a98304eeb03503b77f7afddf869
refs/heads/master
2021-09-04T22:33:07.224418
2018-01-22T18:44:02
2018-01-22T18:44:02
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,344
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 br.udesc.greenhouse.bean; import br.udesc.greenhouse.modelo.entidade.Usuario; import br.udesc.greenhouse.uc.LoginUC; import java.io.IOException; import java.util.logging.Level; import java.util.logging.Logger; import javax.annotation.PostConstruct; import javax.faces.application.FacesMessage; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; import javax.faces.context.FacesContext; import javax.servlet.http.HttpServletResponse; /** * * @author ignoi */ @ManagedBean @SessionScoped public class LoginBean { private String usuario; private String senha; private Usuario user; private LoginUC uc; @PostConstruct public void init() { user = new Usuario(); uc = new LoginUC(); usuario = ""; senha = ""; } public String login() { user = uc.getUser(usuario, senha); if (user != null) { System.out.println(user); SessionUtil.setParam("usuario", user); return "home.jsf"; } else { saveMessage("Problemas ao efetuar login", "Confira seus dados e tente novamente!"); return null; } } public void logout() { System.out.println("saindo"); SessionUtil.invalidate(); HttpServletResponse response = (HttpServletResponse) FacesContext.getCurrentInstance().getExternalContext().getResponse(); try { response.sendRedirect("../index.jsf"); } catch (IOException ex) { } } public String getUsuario() { return usuario; } public void setUsuario(String usuario) { this.usuario = usuario; } public String getSenha() { return senha; } public void setSenha(String senha) { this.senha = senha; } public static void saveMessage(String title, String msg) { FacesContext context = FacesContext.getCurrentInstance(); context.addMessage(null, new FacesMessage(title, msg)); } public Usuario getUser() { return user; } public void setUser(Usuario user) { this.user = user; } }
[ "wagnnersousa@hotmail.com" ]
wagnnersousa@hotmail.com
08ea793e1b7288f8f23ec6754a579d9398b3680a
712550d99dc530b231ee78ae4750cbe3697eb594
/org/injustice/powerchopper/util/Variables.java
d413142af3fcee1c0976b035f62cc2938a68dd01
[]
no_license
Injustice/RSBot4Scripts
b59fd607c8753961d5c58520f66903a8b081907f
361eab2b5bb702db6faa165a3476301e664ea273
refs/heads/master
2020-04-09T02:01:50.258327
2014-04-09T18:11:46
2014-04-09T18:11:46
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,230
java
package org.injustice.powerchopper.util; import org.powerbot.game.api.util.Timer; public class Variables { public static String status, chopping; public static boolean guiDone = false, hidePaint = false, actionBarDrop = true; public static int startExp, startLevel, logsCut, logsBurned, startInventCount; public static int startFMexp, startFMlevel; public static Timer runTime = new Timer(0); public static int log; // Inventory ID public static int tree[]; // Tree ID public static int nestsPicked = 0; public static int antibanCount = 0; // Bonfires public static final int[] BONFIRES_ID = { 70755, 70757, 70758, 70761, 70764, 70765 }; // Inventory IDs public static final int NORMAL = 1511; public static final int MAGIC = 1513; public static final int YEW = 1515; public static final int MAPLE = 1517; public static final int WILLOW = 1519; public static final int OAK = 1521; public static final int ACHEY = 2862; public static final int ARCTIC_PINE = 10810; public static final int EUCALYPTUS = 12581; // Tree IDs public static final int[] NORMAL_ID = { 38760, 38782, 38783, 38785, 38787, 38788 }; public static final int[] ACHEY_ID = { 2023, 29088, 29089, 29090 }; public static final int[] EUCALYPTUS_ID = { 28951, 28952, 28953 }; public static final int[] ARCTIC_PINE_ID = { 70057 }; public static final int[] OAK_ID = {1281, 3037, 8462, 8463, 8464, 8465, 8466, 8467, 10083, 11999, 13413, 13420, 37479, 38381, 38731, 38732, 38736, 38739, 38754, 51675 }; public static final int[] WILLOW_ID = {139, 142, 2210, 2372, 8481, 8482, 8483, 8484, 8485, 8486, 8487, 8488, 13414, 13421, 37480, 38616, 38627, 38717, 38718, 51682, 58006 }; public static final int[] MAPLE_ID = {1307, 4674, 8435, 8436, 8437, 8438, 8439, 8440, 8441, 8442, 8443, 8444, 13415, 13423, 46277, 51843 }; public static final int[] YEW_ID = {1309, 8503, 8504, 8506, 8507, 8508, 8509, 8510, 8511, 8512, 8513, 12000, 13416, 13422, 38755, 38758, 38759, 46278, 51645}; public static final int[] MAGIC_ID = {1306, 8396, 8397, 8398, 8399, 8400, 8401, 8402, 8403, 8404, 8405, 8406, 8407, 8408, 8409, 13417, 13424, 37823, 51833 }; public static final int[] IVY_ID = { 11686, 46322, 46320, 46318, 40320, 46324, 675, 470, 670, 673, 46324, 46421 }; // Bools public static boolean actionDrop = true; public static boolean noPaint = false; public static boolean simplePaint = true; public static boolean sexyPaint = false; public static boolean normalDrop = false; public static boolean pickNests = false; public static boolean nestExists = false; public static boolean doBonfires = false; public static boolean noMouse = true; public static boolean doAntiban = false; public static boolean doScreenshots = false; public static boolean normalChop = false; public static boolean showWCexp = true; public static boolean showFMexp = false; public static boolean currentlyDoingBonfires = false; // Other public static final int[] NESTS = {5070, 5071, 5072, 5073, 5074, 5075, 7413, 11966 }; public static int antibanPercent = 0; public static final int FIRE_SPIRIT = 15451; }
[ "therealinjustice@gmail.com" ]
therealinjustice@gmail.com
da971dc363884c1d55d41b5ab70f7108ec38589d
3aab93c00ce7ca7bdcac1019880a6407a6234736
/NetBeansProjects/HardCluster/src/hardcluster/HardCluster.java
6f871745dba75edd2ac59500baa2d1d9136674af
[ "MIT" ]
permissive
pwn493/homework
928437a62b04255ccb4216cd13f1d55d081137a0
3352f173dfb62277d24c0d77eeca2d30d734af74
refs/heads/master
2021-03-31T01:11:10.201486
2018-03-13T22:39:17
2018-03-13T22:39:17
125,122,656
0
0
null
null
null
null
UTF-8
Java
false
false
2,629
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package hardcluster; import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.PriorityQueue; /** * * @author Kon */ public class HardCluster { private static int numNodes; /** * @param args the command line arguments */ public static void main(String[] args) throws IOException { HashSet<Integer> bits = readLines("/tmp/test23.txt"); int n = bits.size(); List<Integer> bitList = new ArrayList<Integer>(bits); for (int i = 0; i < bits.size(); i++) { int item = bitList.get(i); n -= numberSingleBitDifference(item, bits); n -= numberDoubleBitDifference(item, bits); bits.remove(item); } System.out.println(n); System.in.read(); } public static int numberSingleBitDifference(Integer item, HashSet<Integer> bits) { int singleBitMatches = 0; for (int i=0; i<24; i++) { //change that bit int xorThing = ((Double)Math.pow(2, i)).intValue(); int temp = item ^ xorThing; //search if (bits.contains(temp)) { singleBitMatches++; } } return singleBitMatches; } public static int numberDoubleBitDifference(Integer item, HashSet<Integer> bits) { int doubleBitMatches = 0; for (int i=0; i<24; i++) { for (int j=i+1; j<24; j++) { //change that bit int xorThing = ((Double)Math.pow(2, i)).intValue() + ((Double)Math.pow(2,j)).intValue(); int temp = item ^ xorThing; //search if (bits.contains(temp)) { doubleBitMatches++; } } } return doubleBitMatches; } public static HashSet<Integer> readLines(String filename) throws IOException { FileReader fileReader = new FileReader(filename); BufferedReader bufferedReader = new BufferedReader(fileReader); HashSet<Integer> bits = new HashSet<Integer>(); String line = null; while ((line = bufferedReader.readLine()) != null) { String formattedLine = line.replaceAll(" ", ""); Integer i = Integer.parseInt(formattedLine, 2); bits.add(i); } bufferedReader.close(); return bits; } }
[ "Kon@Dannys-MacBook-Air.local" ]
Kon@Dannys-MacBook-Air.local
e47390b9be7a1082ee5b1444d51d7b457d77d46a
edca724194a94d94d3726685e0483b3039f170da
/src/main/java/com/vi/tmall/pojo/ReviewExample.java
d00206a891c93cd3a320619a52435b3d7f0b611c
[]
no_license
coVdiing/vi_tmall_ssm
8d7b0e942a1d6a7c714bbec1bea0a3e93353a28f
dd2eae42a0b3a6e55bd642256164b17e70c8830b
refs/heads/master
2022-12-23T14:00:48.485444
2019-10-17T04:29:26
2019-10-17T04:29:26
210,323,172
0
0
null
2022-12-16T00:40:12
2019-09-23T10:04:06
Java
UTF-8
Java
false
false
15,241
java
package com.vi.tmall.pojo; import java.util.ArrayList; import java.util.Date; import java.util.List; public class ReviewExample { protected String orderByClause; protected boolean distinct; protected List<Criteria> oredCriteria; public ReviewExample() { oredCriteria = new ArrayList<Criteria>(); } public void setOrderByClause(String orderByClause) { this.orderByClause = orderByClause; } public String getOrderByClause() { return orderByClause; } public void setDistinct(boolean distinct) { this.distinct = distinct; } public boolean isDistinct() { return distinct; } public List<Criteria> getOredCriteria() { return oredCriteria; } public void or(Criteria criteria) { oredCriteria.add(criteria); } public Criteria or() { Criteria criteria = createCriteriaInternal(); oredCriteria.add(criteria); return criteria; } public Criteria createCriteria() { Criteria criteria = createCriteriaInternal(); if (oredCriteria.size() == 0) { oredCriteria.add(criteria); } return criteria; } protected Criteria createCriteriaInternal() { Criteria criteria = new Criteria(); return criteria; } public void clear() { oredCriteria.clear(); orderByClause = null; distinct = false; } protected abstract static class GeneratedCriteria { protected List<Criterion> criteria; protected GeneratedCriteria() { super(); criteria = new ArrayList<Criterion>(); } public boolean isValid() { return criteria.size() > 0; } public List<Criterion> getAllCriteria() { return criteria; } public List<Criterion> getCriteria() { return criteria; } protected void addCriterion(String condition) { if (condition == null) { throw new RuntimeException("Value for condition cannot be null"); } criteria.add(new Criterion(condition)); } protected void addCriterion(String condition, Object value, String property) { if (value == null) { throw new RuntimeException("Value for " + property + " cannot be null"); } criteria.add(new Criterion(condition, value)); } protected void addCriterion(String condition, Object value1, Object value2, String property) { if (value1 == null || value2 == null) { throw new RuntimeException("Between values for " + property + " cannot be null"); } criteria.add(new Criterion(condition, value1, value2)); } public Criteria andIdIsNull() { addCriterion("id is null"); return (Criteria) this; } public Criteria andIdIsNotNull() { addCriterion("id is not null"); return (Criteria) this; } public Criteria andIdEqualTo(Integer value) { addCriterion("id =", value, "id"); return (Criteria) this; } public Criteria andIdNotEqualTo(Integer value) { addCriterion("id <>", value, "id"); return (Criteria) this; } public Criteria andIdGreaterThan(Integer value) { addCriterion("id >", value, "id"); return (Criteria) this; } public Criteria andIdGreaterThanOrEqualTo(Integer value) { addCriterion("id >=", value, "id"); return (Criteria) this; } public Criteria andIdLessThan(Integer value) { addCriterion("id <", value, "id"); return (Criteria) this; } public Criteria andIdLessThanOrEqualTo(Integer value) { addCriterion("id <=", value, "id"); return (Criteria) this; } public Criteria andIdIn(List<Integer> values) { addCriterion("id in", values, "id"); return (Criteria) this; } public Criteria andIdNotIn(List<Integer> values) { addCriterion("id not in", values, "id"); return (Criteria) this; } public Criteria andIdBetween(Integer value1, Integer value2) { addCriterion("id between", value1, value2, "id"); return (Criteria) this; } public Criteria andIdNotBetween(Integer value1, Integer value2) { addCriterion("id not between", value1, value2, "id"); return (Criteria) this; } public Criteria andContentIsNull() { addCriterion("content is null"); return (Criteria) this; } public Criteria andContentIsNotNull() { addCriterion("content is not null"); return (Criteria) this; } public Criteria andContentEqualTo(String value) { addCriterion("content =", value, "content"); return (Criteria) this; } public Criteria andContentNotEqualTo(String value) { addCriterion("content <>", value, "content"); return (Criteria) this; } public Criteria andContentGreaterThan(String value) { addCriterion("content >", value, "content"); return (Criteria) this; } public Criteria andContentGreaterThanOrEqualTo(String value) { addCriterion("content >=", value, "content"); return (Criteria) this; } public Criteria andContentLessThan(String value) { addCriterion("content <", value, "content"); return (Criteria) this; } public Criteria andContentLessThanOrEqualTo(String value) { addCriterion("content <=", value, "content"); return (Criteria) this; } public Criteria andContentLike(String value) { addCriterion("content like", value, "content"); return (Criteria) this; } public Criteria andContentNotLike(String value) { addCriterion("content not like", value, "content"); return (Criteria) this; } public Criteria andContentIn(List<String> values) { addCriterion("content in", values, "content"); return (Criteria) this; } public Criteria andContentNotIn(List<String> values) { addCriterion("content not in", values, "content"); return (Criteria) this; } public Criteria andContentBetween(String value1, String value2) { addCriterion("content between", value1, value2, "content"); return (Criteria) this; } public Criteria andContentNotBetween(String value1, String value2) { addCriterion("content not between", value1, value2, "content"); return (Criteria) this; } public Criteria andUidIsNull() { addCriterion("uid is null"); return (Criteria) this; } public Criteria andUidIsNotNull() { addCriterion("uid is not null"); return (Criteria) this; } public Criteria andUidEqualTo(Integer value) { addCriterion("uid =", value, "uid"); return (Criteria) this; } public Criteria andUidNotEqualTo(Integer value) { addCriterion("uid <>", value, "uid"); return (Criteria) this; } public Criteria andUidGreaterThan(Integer value) { addCriterion("uid >", value, "uid"); return (Criteria) this; } public Criteria andUidGreaterThanOrEqualTo(Integer value) { addCriterion("uid >=", value, "uid"); return (Criteria) this; } public Criteria andUidLessThan(Integer value) { addCriterion("uid <", value, "uid"); return (Criteria) this; } public Criteria andUidLessThanOrEqualTo(Integer value) { addCriterion("uid <=", value, "uid"); return (Criteria) this; } public Criteria andUidIn(List<Integer> values) { addCriterion("uid in", values, "uid"); return (Criteria) this; } public Criteria andUidNotIn(List<Integer> values) { addCriterion("uid not in", values, "uid"); return (Criteria) this; } public Criteria andUidBetween(Integer value1, Integer value2) { addCriterion("uid between", value1, value2, "uid"); return (Criteria) this; } public Criteria andUidNotBetween(Integer value1, Integer value2) { addCriterion("uid not between", value1, value2, "uid"); return (Criteria) this; } public Criteria andPidIsNull() { addCriterion("pid is null"); return (Criteria) this; } public Criteria andPidIsNotNull() { addCriterion("pid is not null"); return (Criteria) this; } public Criteria andPidEqualTo(Integer value) { addCriterion("pid =", value, "pid"); return (Criteria) this; } public Criteria andPidNotEqualTo(Integer value) { addCriterion("pid <>", value, "pid"); return (Criteria) this; } public Criteria andPidGreaterThan(Integer value) { addCriterion("pid >", value, "pid"); return (Criteria) this; } public Criteria andPidGreaterThanOrEqualTo(Integer value) { addCriterion("pid >=", value, "pid"); return (Criteria) this; } public Criteria andPidLessThan(Integer value) { addCriterion("pid <", value, "pid"); return (Criteria) this; } public Criteria andPidLessThanOrEqualTo(Integer value) { addCriterion("pid <=", value, "pid"); return (Criteria) this; } public Criteria andPidIn(List<Integer> values) { addCriterion("pid in", values, "pid"); return (Criteria) this; } public Criteria andPidNotIn(List<Integer> values) { addCriterion("pid not in", values, "pid"); return (Criteria) this; } public Criteria andPidBetween(Integer value1, Integer value2) { addCriterion("pid between", value1, value2, "pid"); return (Criteria) this; } public Criteria andPidNotBetween(Integer value1, Integer value2) { addCriterion("pid not between", value1, value2, "pid"); return (Criteria) this; } public Criteria andCreaeteDateIsNull() { addCriterion("creaeteDate is null"); return (Criteria) this; } public Criteria andCreaeteDateIsNotNull() { addCriterion("creaeteDate is not null"); return (Criteria) this; } public Criteria andCreaeteDateEqualTo(Date value) { addCriterion("creaeteDate =", value, "creaeteDate"); return (Criteria) this; } public Criteria andCreaeteDateNotEqualTo(Date value) { addCriterion("creaeteDate <>", value, "creaeteDate"); return (Criteria) this; } public Criteria andCreaeteDateGreaterThan(Date value) { addCriterion("creaeteDate >", value, "creaeteDate"); return (Criteria) this; } public Criteria andCreaeteDateGreaterThanOrEqualTo(Date value) { addCriterion("creaeteDate >=", value, "creaeteDate"); return (Criteria) this; } public Criteria andCreaeteDateLessThan(Date value) { addCriterion("creaeteDate <", value, "creaeteDate"); return (Criteria) this; } public Criteria andCreaeteDateLessThanOrEqualTo(Date value) { addCriterion("creaeteDate <=", value, "creaeteDate"); return (Criteria) this; } public Criteria andCreaeteDateIn(List<Date> values) { addCriterion("creaeteDate in", values, "creaeteDate"); return (Criteria) this; } public Criteria andCreaeteDateNotIn(List<Date> values) { addCriterion("creaeteDate not in", values, "creaeteDate"); return (Criteria) this; } public Criteria andCreaeteDateBetween(Date value1, Date value2) { addCriterion("creaeteDate between", value1, value2, "creaeteDate"); return (Criteria) this; } public Criteria andCreaeteDateNotBetween(Date value1, Date value2) { addCriterion("creaeteDate not between", value1, value2, "creaeteDate"); return (Criteria) this; } } public static class Criteria extends GeneratedCriteria { protected Criteria() { super(); } } public static class Criterion { private String condition; private Object value; private Object secondValue; private boolean noValue; private boolean singleValue; private boolean betweenValue; private boolean listValue; private String typeHandler; public String getCondition() { return condition; } public Object getValue() { return value; } public Object getSecondValue() { return secondValue; } public boolean isNoValue() { return noValue; } public boolean isSingleValue() { return singleValue; } public boolean isBetweenValue() { return betweenValue; } public boolean isListValue() { return listValue; } public String getTypeHandler() { return typeHandler; } protected Criterion(String condition) { super(); this.condition = condition; this.typeHandler = null; this.noValue = true; } protected Criterion(String condition, Object value, String typeHandler) { super(); this.condition = condition; this.value = value; this.typeHandler = typeHandler; if (value instanceof List<?>) { this.listValue = true; } else { this.singleValue = true; } } protected Criterion(String condition, Object value) { this(condition, value, null); } protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { super(); this.condition = condition; this.value = value; this.secondValue = secondValue; this.typeHandler = typeHandler; this.betweenValue = true; } protected Criterion(String condition, Object value, Object secondValue) { this(condition, value, secondValue, null); } } }
[ "113714806@qq.com" ]
113714806@qq.com
5cfa66139e62d6c2ae50f132052e995ac246addb
a65566eb267de708fd7918838dd6010973dc0992
/uiproject/ui/ui1_2_5/app/src/main/java/com/zc/canvas/bezier/MainActivity.java
c23581d6376205b31426460df81db64eddef1e8b
[]
no_license
superzhangchao/micro-specialty
5e0fafd4016695882754c3b20836ee299b3791eb
30cfd8381931a4f0ea6d4154e5304decf758baba
refs/heads/master
2020-05-22T21:03:47.231150
2019-09-04T09:31:05
2019-09-04T09:31:05
186,520,338
0
0
null
null
null
null
UTF-8
Java
false
false
342
java
package com.zc.canvas.bezier; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(new PathView(this)); } }
[ "823211140@qq.com" ]
823211140@qq.com
50ad0e1dc866360f995bf744f347dd09ba47cd8b
cbb46a87afffde3964b0f952c9555a7e2966bf62
/modules/learning/src/test/java/deepboof/impl/backward/standard/TestBackwards_DFunctionDropOut_F64.java
7089351f613f1b539009a43606ae89b535c02d71
[ "Apache-2.0" ]
permissive
caomw/DeepBoof
973179c5274908b267cb5cbdcb15a466d803afaf
df8a901ce554d95a88feac197c767aaeb27bbd86
refs/heads/master
2020-05-23T08:15:53.463486
2016-09-15T16:10:01
2016-09-15T16:10:01
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,921
java
/* * Copyright (c) 2016, Peter Abeles. All Rights Reserved. * * This file is part of DeepBoof * * 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 deepboof.impl.backward.standard; import deepboof.DeepBoofConstants; import deepboof.misc.TensorFactory; import deepboof.tensors.Tensor_F64; import org.junit.Test; import java.util.ArrayList; import java.util.Random; import static org.junit.Assert.assertEquals; /** * @author Peter Abeles */ public class TestBackwards_DFunctionDropOut_F64 { Random rand = new Random(234); TensorFactory<Tensor_F64> factory = new TensorFactory<>(Tensor_F64.class); /** * Check to see if there are zeros in the gradient at the expected location */ @Test public void checkZeros() { double drop = 0.3; DFunctionDropOut_F64 alg = new DFunctionDropOut_F64(1234,drop); Tensor_F64 input = factory.random(rand,false,5.0,6.0,3,4); Tensor_F64 output = input.createLike(); alg.initialize(4); alg.learning(); alg.forward(input,output); Tensor_F64 dout = factory.random(rand,false,5.0,6.0,3,4); Tensor_F64 gradientInput = input.createLike(); alg.backwards(input,dout,gradientInput, new ArrayList<>()); for (int i = 0; i < 12; i++) { if( output.d[i] == 0 ) { assertEquals(0,gradientInput.d[i], DeepBoofConstants.TEST_TOL_F64); } else { assertEquals(dout.d[i],gradientInput.d[i], DeepBoofConstants.TEST_TOL_F64); } } } }
[ "peter.abeles@gmail.com" ]
peter.abeles@gmail.com
d0f3a12b85a4639f46636df6b91a0d4e43d2c5ee
6259a830a3d9e735e6779e41a678a71b4c27feb2
/anchor-plugin-image/src/main/java/org/anchoranalysis/plugin/image/bean/thumbnail/object/ThumbnailColorIndex.java
1e0ad8a2d1a5c89ba0e5bcd7139f848a6d853a06
[ "MIT", "Apache-2.0" ]
permissive
anchoranalysis/anchor-plugins
103168052419b1072d0f8cd0201dabfb7dc84f15
5817d595d171b8598ab9c0195586c5d1f83ad92e
refs/heads/master
2023-07-24T02:38:11.667846
2023-07-18T07:51:10
2023-07-18T07:51:10
240,064,307
2
0
MIT
2023-07-18T07:51:12
2020-02-12T16:48:04
Java
UTF-8
Java
false
false
3,145
java
/*- * #%L * anchor-plugin-image * %% * Copyright (C) 2010 - 2020 Owen Feehan, ETH Zurich, University of Zurich, Hoffmann-La Roche * %% * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * #L% */ package org.anchoranalysis.plugin.image.bean.thumbnail.object; import java.awt.Color; import lombok.RequiredArgsConstructor; import org.anchoranalysis.core.color.ColorIndex; import org.anchoranalysis.core.color.RGBColor; /** * Creates a suitable color index for distinguishing between the different types of objects that * appear * * <p>The order of the objects is presented is important. First are the objects associated with the * input (one for single, two for pair). And the remainder of the objects are assumed to be other * objects shown in blue only for context. * * @author Owen Feehan */ @RequiredArgsConstructor class ThumbnailColorIndex implements ColorIndex { /** The color GREEN is used for the outline of object in the input (always) */ private static final Color OUTLINE_FIRST_OBJECT = Color.GREEN; /** * The color RED is used for the outline of object of the second object in the input (if its * pairs) */ private static final Color OUTLINE_SECOND_OBJECT = Color.RED; // START REQUIRED ARGUMENTS /** * Whether pairs are being used or not (in which case the second object is not treated as a * context object) */ private final boolean pairs; /** * Color for outline of context objects (objects that aren't part of the input but which are * outlined as context) */ private final Color colorContextObject; // END REQUIRED ARGUMENTS @Override public RGBColor get(int index) { return new RGBColor(colorForIndex(index)); } @Override public int numberUniqueColors() { return 3; } private Color colorForIndex(int index) { if (index == 0) { return OUTLINE_FIRST_OBJECT; } else if (index == 1) { return pairs ? OUTLINE_SECOND_OBJECT : colorContextObject; } else { return colorContextObject; } } }
[ "owenfeehan@users.noreply.github.com" ]
owenfeehan@users.noreply.github.com
83e6acdc7e47a99590322a4aed5ec15d8ed8bed7
252b328578c291d7bfc5a8aab6c6c36d7bdbaa4a
/src/main/java/org/sharewi/opt/util/PathDwrWrapper.java
7008ec1611e294fd55ea42e65190651e318c75ec
[]
no_license
codenpk/sharewi
5d7b8d3d5294942d135e60106ac5da060ae47000
57823b457d2fc02328d12aa7ccb2c1cb9f240f55
refs/heads/master
2016-09-02T03:57:45.276081
2015-08-07T14:26:11
2015-08-07T14:26:11
40,363,792
0
0
null
null
null
null
UTF-8
Java
false
false
2,553
java
package org.sharewi.opt.util; import org.sharewi.opt.model.location.Geocode; import org.apache.commons.lang.builder.ToStringBuilder; import org.apache.commons.lang.builder.ToStringStyle; import java.io.Serializable; /** * Class Creation info: * User: pkatsev * Date: Jun 10, 2007 * Time: 3:30:58 PM */ public class PathDwrWrapper implements Serializable { private static final long serialVersionUID = -7269588423989373568L; private Long id; private Long srcId; private Long dstId; private Geocode srcGeocode; private Geocode dstGeocode; private Double dist; private Double time; //Constructors public PathDwrWrapper() {} public PathDwrWrapper(Long id, Long srcId, Long dstId, Geocode srcGeocode, Geocode dstGeocode, Double dist, Double time) { this.id = id; this.srcId = srcId; this.dstId = dstId; this.srcGeocode = srcGeocode; this.dstGeocode = dstGeocode; this.dist = dist; this.time = time; } //Getters public Long getId() { return id; } public Long getSrcId() { return srcId; } public Long getDstId() { return dstId; } public Geocode getSrcGeocode() { return srcGeocode; } public Geocode getDstGeocode() { return dstGeocode; } public Double getDist() { return dist; } public Double getTime() { return time; } //Setters public void setId(Long id) { this.id = id; } public void setSrcId(Long srcId) { this.srcId = srcId; } public void setDstId(Long dstId) { this.dstId = dstId; } public void setSrcGeocode(Geocode srcGeocode) { this.srcGeocode = srcGeocode; } public void setDstGeocode(Geocode dstGeocode) { this.dstGeocode = dstGeocode; } public void setDist(Double dist) { this.dist = dist; } public void setTime(Double time) { this.time = time; } //Common public String toString() { return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) .append("id", this.id) .append("srcId", this.srcId) .append("dstId", this.dstId) .append("srcGeocode", this.srcGeocode) .append("dstGeocode", this.dstGeocode) .append("dist", this.dist) .append("time", this.time) .toString(); } }
[ "pkatsev@3f58c12e-012f-0410-a2b7-0ff36d3cc959" ]
pkatsev@3f58c12e-012f-0410-a2b7-0ff36d3cc959
1f7c5d1ce0177809eed6a00aa8d21b7512ccbbb9
f96d1862418f2f2d3825dc467c6aaa546ed58cf7
/src/Task3/EventList.java
54a3a6c836d950ea6eba85313d782da7c88c6b90
[]
no_license
adrian-hansson/ETS061Assignment1
f6424a47a2c0cb58ee613ad1d06890f6577c529a
7c207e10ecf89499ad66ae598ef715f6b5a93576
refs/heads/master
2022-08-12T02:03:38.594913
2017-05-05T17:07:32
2017-05-05T17:07:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
780
java
package Task3; public class EventList { public static Event list, last; EventList() { init(); } public static void init(){ EventList.list = new Event(); EventList.last = new Event(); EventList.list.next = EventList.last; } public static void InsertEvent(int type, double TimeOfEvent) { Event dummy, predummy; Event newEvent = new Event(); newEvent.eventType = type; newEvent.eventTime = TimeOfEvent; predummy = list; dummy = list.next; while ((dummy.eventTime < newEvent.eventTime) & (dummy != last)) { predummy = dummy; dummy = dummy.next; } predummy.next = newEvent; newEvent.next = dummy; } public static Event FetchEvent() { Event dummy; dummy = list.next; list.next = dummy.next; dummy.next = null; return dummy; } }
[ "adense13@gmail.com" ]
adense13@gmail.com
0dd05c42f6d9df8b88dcf7c1c9d5e371a819aaa1
95ada6f73b5ff273e541a8c235432daebe457c07
/NiuMainActivity/src/classes.jar.src/android/support/v4/view/accessibility/AccessibilityRecordCompatJellyBean.java
b9e8d54123176ee35bdc5bc7aa757467851f1484
[]
no_license
Sapphirine/Decentralized-Indoor-Positioning-Based-on-WLAN-Fingerprints
f722d853a4db7565eb46d286bafca766d0189a6a
491574466d7af39234186b18762522f3f452217f
refs/heads/master
2021-01-10T15:34:13.538235
2015-12-23T17:16:59
2015-12-23T17:16:59
48,498,135
0
0
null
null
null
null
UTF-8
Java
false
false
555
java
package android.support.v4.view.accessibility; import android.view.View; import android.view.accessibility.AccessibilityRecord; class AccessibilityRecordCompatJellyBean { public static void setSource(Object paramObject, View paramView, int paramInt) { ((AccessibilityRecord)paramObject).setSource(paramView, paramInt); } } /* Location: /Users/changliu/Downloads/big data project/android/support/v4/view/accessibility/AccessibilityRecordCompatJellyBean.class * Java compiler version: 6 (50.0) * JD-Core Version: 0.7.1 */
[ "381242448@qq.com" ]
381242448@qq.com
9dce6fe07dbbe7a83995ccf3a28922d55957fea3
741c51c4481dafb9d7701be1c24ffa6e984ab444
/de.jabc.cinco.meta.core.ge.style.generator.runtime/src/de/jabc/cinco/meta/core/ge/style/generator/runtime/editor/CincoSelectEditPartTracker.java
3959bf1b745aacd6b3019a0710c34ffde8e78753
[]
no_license
arturl1810/cinco_ltl_as_dsl_for_views
fc50640bf57ec5e177947fcf4e3d3f61a3884c56
50444b24906b7ec86a79a4f62d253c897a47d3d5
refs/heads/master
2022-11-17T15:00:14.994539
2020-05-24T11:36:48
2020-05-24T11:36:48
252,552,725
0
0
null
null
null
null
UTF-8
Java
false
false
994
java
package de.jabc.cinco.meta.core.ge.style.generator.runtime.editor; import org.eclipse.gef.EditPart; import org.eclipse.gef.EditPartViewer; import org.eclipse.gef.tools.SelectEditPartTracker; import org.eclipse.swt.events.MouseEvent; class CincoSelectEditPartTracker extends SelectEditPartTracker { public CincoSelectEditPartTracker(EditPart owner) { super(owner); } @Override public void mouseDrag(MouseEvent me, EditPartViewer viewer) { if (!isViewerImportant(viewer)) return; setViewer(viewer); boolean wasDragging = movedPastThreshold(); getCurrentInput().setInput(me); handleDrag(); if (movedPastThreshold()) { // At this point wasDragging might be true while NOT being in // state DRAG_IN_PROGRESS although the original implementation // assumes the latter. Fix: call handleDragStarted if (!wasDragging || !isInState(STATE_DRAG_IN_PROGRESS | STATE_ACCESSIBLE_DRAG_IN_PROGRESS)) { handleDragStarted(); } handleDragInProgress(); } } }
[ "steve.bosselmann@udo.edu" ]
steve.bosselmann@udo.edu
f56e260cd003145e7a8b4019c5e416e2e06852b5
9ed31b29d6062572648795668aee9ab05c38d2fd
/src/test/java/tests/day7/CssSelectorPractice.java
1a37d6f5d3e68f78cc689655047282faccf0b5e3
[]
no_license
erhan-d/TestNGSeleniumProject
938ee058c26ee22bb4d7224e108527b0ae6efc4c
269dea8a566bb544d62108f719c022ca724ea3b6
refs/heads/master
2023-05-11T11:08:07.261384
2020-04-23T00:16:57
2020-04-23T00:16:57
258,051,432
1
2
null
2023-05-09T18:22:29
2020-04-23T00:20:57
Java
UTF-8
Java
false
false
1,830
java
package tests.day7; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import utils.BrowserFactory; import utils.BrowserUtils; import java.util.List; public class CssSelectorPractice { //Please use google chrome //Which locator to use? //#1 id //#2 css //#3 xpath //## whatever public static void main(String[] args) { WebDriver driver = BrowserFactory.getDriver("chrome"); driver.get("http://practice.cybertekschool.com/multiple_buttons"); //let's fin all buttons, and click on them one by one // why I put . instead of space? because it's 2 class names .btn.btn-primary //in this case, we will find all buttons that have: class="btn btn-primary" // or like this [class='btn btn-primary'], no need for . //. means class name //# means id //all buttons List<WebElement> buttons = driver.findElements(By.cssSelector(".btn.btn-primary")); //loop through list of buttons for (WebElement button: buttons){ //and click on every button one by one button.click(); BrowserUtils.wait(1); //get the message after click WebElement message = driver.findElement(By.cssSelector("#result")); //print a text of that message System.out.println(message.getText()); } // find element with a tag name h3, that has a parent element, with class name container WebElement header = driver.findElement(By.cssSelector(".container > h3")); System.out.println(header.getText()); //Multiple buttons WebElement p = driver.findElement(By.cssSelector("[class='container'] > p")); System.out.println(p.getText()); driver.quit(); } }
[ "github@cybertekschool.com" ]
github@cybertekschool.com
bc698715c633cbebd6391077ce99e5f2db686f6b
65db457810bdf01cfa193a1108460060e1425dc7
/src/Control.java
e5a83166f06565fbb2aee618a99b74ca18910a0d
[]
no_license
javaSingh/javaSingh.github.io
e7e98ca16e88a21c4d4ecc7bbceb31cb1a813800
301690e9b88f1b3c8629ba8a983aafc9152fbffd
refs/heads/master
2020-05-20T13:22:22.508400
2014-12-01T15:09:29
2014-12-01T15:09:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,122
java
import java.util.*; import java.util.Date; import java.sql.*; public class Control { Connection con; PreparedStatement pstm,temppstm; ResultSet rs; public Control() { try { Class.forName("com.mysql.jdbc.Driver"); con=DriverManager.getConnection("jdbc:mysql://localhost:3306/minorprojectsem7","root",""); System.out.println("working"); } catch (Throwable e) { // TODO Auto-generated catch block //e.printStackTrace(); System.out.println("Error in Constructor of Control class "+e); return; } } public Boolean newDocReceived(String docid,String fromdept,String indept) { try { pstm=con.prepareStatement("INSERT INTO DOCUMENT values (?,?,?,?,?,?,?)"); pstm.setString(1, docid); pstm.setString(2, fromdept); pstm.setString(3, indept); pstm.setString(4, "");//todept pstm.setString(5, (new Date()).toString());//receiveddate pstm.setString(6, "");//sentdate pstm.setString(7, "");//completedate pstm.executeUpdate(); System.out.println("Insert Successful "); return true; } catch (Throwable e) { // TODO Auto-generated catch block //e.printStackTrace(); System.out.println("Error in newDocReceived function "+e); return false; } } public String sendDoc(String docid,String indept,String todept) { try { int matchfound;//0=no match found; // temppstm.con.perpareStatement("select * from document where docid=? && indept=?"); // temppstm.setString(1, docid); // temppstm.setString(2,indept); // rs=temppstm.executeQuery(); // rs.next(); // //no result found // if(rs==null) // { // System.out.println("no matches were found "); // // } //// else // { pstm=con.prepareStatement("UPDATE DOCUMENT SET todept=?,sentdate=? WHERE docid=? && indept=?"); pstm.setString(1, todept); pstm.setString(2, (new Date()).toString()); pstm.setString(3, docid); pstm.setString(4,indept); if(!docid.equals("")||docid!=null) { matchfound=pstm.executeUpdate(); if(matchfound==0) { return "no matches were found"; //System.out.println("no matches were found"); } else { //System.out.println("update Successful "); //now since the update is successful, we need to add another row with the same id with //todept as the current dept and a null to dept and the previous indept as the fromdept // ie make a new row for the doc for tracing purpose pstm=con.prepareStatement("insert into document values(?,?,?,?,?,?,?)"); pstm.setString(1, docid); pstm.setString(2, indept); pstm.setString(3, todept); pstm.setString(4, ""); pstm.setString(5, (new Date()).toString()); pstm.setString(6, ""); pstm.setString(7, ""); pstm.executeUpdate(); // return "The document has Been sent And Updated"; } } } catch (Throwable e) { // TODO Auto-generated catch block //e.printStackTrace(); System.out.println("Error in sendDoc function "+e); return "There Has been An Error. Please go back and try again"; } return "The document has Been sent And Updated"; } public Boolean idExists(int docid) { try { pstm=con.prepareStatement("select docid from document where docid=?"); pstm.setString(1,""+docid); rs=pstm.executeQuery(); if(rs.next()) { //the new docid does not exists in the table and can be granted to the new doc return true; } else return false; } catch (SQLException e) { // TODO Auto-generated catch block //e.printStackTrace(); System.out.println("idExixts "+e); //this will make the while loop run more than 100 times and it comes out of loop return true; } // finally // { // return true; // } } public ResultSet selectStar(String docid) { try { pstm=con.prepareStatement("select * from document where docid=?"); pstm.setString(1,docid); rs=pstm.executeQuery(); } catch (SQLException e) { // TODO Auto-generated catch block //e.printStackTrace(); System.out.println("selectStar "+e); rs=null; } finally { return rs; } } }
[ "1469kirpalsingh@gmail.com" ]
1469kirpalsingh@gmail.com
9f0133f4aab7792a32b25cec141af65f998b823a
e34b47a940f38e075e547516a3c2c1ac3893a18c
/src/main/java/com/example/securityWithHibernate/SecurityWithHibernateApplication.java
ee90fd64041e8d644cc694000578cfaf6ff69a11
[]
no_license
ShanksRed/securityWithHibernate
9d1036f805b5157f9054bfcff5571eacfcc7ca56
72c7df235d2deed7d8e4ec7cd6c7bc4854bca24a
refs/heads/master
2023-08-25T20:25:32.753232
2021-10-29T22:03:32
2021-10-29T22:03:32
419,708,934
0
0
null
null
null
null
UTF-8
Java
false
false
1,747
java
package com.example.securityWithHibernate; import com.example.securityWithHibernate.Model.Users; import com.example.securityWithHibernate.Repository.UserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.CommandLineRunner; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration; import java.util.Optional; import java.util.Set; @SpringBootApplication(exclude = HibernateJpaAutoConfiguration.class) public class SecurityWithHibernateApplication implements CommandLineRunner { @Autowired UserService userService; public static void main(String[] args) { SpringApplication.run(SecurityWithHibernateApplication.class, args); } @Override public void run(String... args) throws Exception { //Set<Users> users = userService.findByUserName("adminName"); /*Set<Users> users = userService.findAllUsers(); System.out.println(users);*/ /*Optional<Users> user = userService.findById(1L); Set<Users> test = userService.findAllUsers(); System.out.println(user);*/ /*Optional<Users> user = userService.findByUserName("admin2"); Set<Users> test = userService.findAllUsers(); System.out.println(user);*/ /*Users testNewUser = new Users(); testNewUser.setName("admin4"); testNewUser.setFirstName("admin4"); testNewUser.setLastName("admin4"); testNewUser.setUserPassword("admin1242"); testNewUser.setEmail("asd2@mail.ru"); //testNewUser.setId(2L); userService.saveUser(testNewUser);*/ //userService.findByUserName("adminName").ifPresent(System.out::println); userService.deleteByUserName("admin2"); } }
[ "lokengarviel16@gmail.com" ]
lokengarviel16@gmail.com
36f7b2db907a821b2771612565280ad8cdbf740c
1930d97ebfc352f45b8c25ef715af406783aabe2
/src/main/java/com/alipay/api/response/AlipayAccountCashpoolDetailQueryResponse.java
5983bf609cf66c6864bc05556fd4e0219d1961fe
[ "Apache-2.0" ]
permissive
WQmmm/alipay-sdk-java-all
57974d199ee83518523e8d354dcdec0a9ce40a0c
66af9219e5ca802cff963ab86b99aadc59cc09dd
refs/heads/master
2023-06-28T03:54:17.577332
2021-08-02T10:05:10
2021-08-02T10:05:10
null
0
0
null
null
null
null
UTF-8
Java
false
false
762
java
package com.alipay.api.response; import com.alipay.api.internal.mapping.ApiField; import com.alipay.api.AlipayResponse; /** * ALIPAY API: alipay.account.cashpool.detail.query response. * * @author auto create * @since 1.0, 2020-07-06 11:22:30 */ public class AlipayAccountCashpoolDetailQueryResponse extends AlipayResponse { private static final long serialVersionUID = 8869883822913917665L; /** * 资金池详情,包含规则组信息、规则信息、账户关联信息 */ @ApiField("cash_pool_detail") private String cashPoolDetail; public void setCashPoolDetail(String cashPoolDetail) { this.cashPoolDetail = cashPoolDetail; } public String getCashPoolDetail( ) { return this.cashPoolDetail; } }
[ "ben.zy@antfin.com" ]
ben.zy@antfin.com
785a5aa68e50c27581bad5eef2c2d351cf2b45c7
55b56156750c942b423627321bd72b08c13b360f
/src/main/java/dev/codescreen/Requests/LoadRequest.java
d39b2cdfbda1a2969081df1d1942189ff873bdb3
[]
no_license
kevin-orellana/SpringOpenAPIProject
72f9c267752dd3831c9cc1f74ac0c09a71bb3a71
3c70c58285af618f70156537c1fc3e3215f13c51
refs/heads/master
2023-01-24T01:54:13.541109
2020-11-19T23:44:09
2020-11-19T23:44:09
314,397,622
0
0
null
null
null
null
UTF-8
Java
false
false
399
java
package dev.codescreen.Requests; import dev.codescreen.Models.TransactionAmount; /* * Holds the information required to process a LoadRequest. * */ public class LoadRequest extends TransactionRequest { // additional LoadRequest members public LoadRequest(String messageId, String userId, TransactionAmount transactionAmount) { super(messageId, userId, transactionAmount); } }
[ "kfo215@nyu.edu" ]
kfo215@nyu.edu
d393ae403d752fa8a3a0a3b4bc25cf047a42aeb5
4b0bf4787e89bcae7e4759bde6d7f3ab2c81f849
/aliyun-java-sdk-sas/src/main/java/com/aliyuncs/sas/transform/v20181203/ModifyBackupPolicyResponseUnmarshaller.java
80763c32bf1b41ab49cfa7b2b92f95e4d3c783bb
[ "Apache-2.0" ]
permissive
aliyun/aliyun-openapi-java-sdk
a263fa08e261f12d45586d1b3ad8a6609bba0e91
e19239808ad2298d32dda77db29a6d809e4f7add
refs/heads/master
2023-09-03T12:28:09.765286
2023-09-01T09:03:00
2023-09-01T09:03:00
39,555,898
1,542
1,317
NOASSERTION
2023-09-14T07:27:05
2015-07-23T08:41:13
Java
UTF-8
Java
false
false
1,069
java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.sas.transform.v20181203; import com.aliyuncs.sas.model.v20181203.ModifyBackupPolicyResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ModifyBackupPolicyResponseUnmarshaller { public static ModifyBackupPolicyResponse unmarshall(ModifyBackupPolicyResponse modifyBackupPolicyResponse, UnmarshallerContext _ctx) { modifyBackupPolicyResponse.setRequestId(_ctx.stringValue("ModifyBackupPolicyResponse.RequestId")); return modifyBackupPolicyResponse; } }
[ "sdk-team@alibabacloud.com" ]
sdk-team@alibabacloud.com
d053ecd5d5088496c46916f0a61bc37edd1aecdf
38b172cd39bb9071a330cc35127e883410e7fd83
/src/com/inclassreview6/Scanner_2D_Array.java
6d1354fb1154a045da4338e0c05493697d933a10
[]
no_license
ik919/javaClasses
7e7fd14154580b12eeccfc61da6a06e34065b0c8
a9ba41640db4a601cdcd098f13865617baece79c
refs/heads/master
2020-09-04T21:02:07.911156
2019-11-24T16:16:52
2019-11-24T16:16:52
219,891,218
0
0
null
null
null
null
UTF-8
Java
false
false
1,078
java
package com.inclassreview6; import java.util.Scanner; public class Scanner_2D_Array { public static void main(String[] args) { Scanner scan=new Scanner(System.in); System.out.println("Buddy, how many rows do you want?"); int rows=scan.nextInt(); System.out.println("Buddy, how many rows do you want?"); int cols=scan.nextInt(); System.out.println("Your array will have "+ rows+" rows and "+cols+" columns"); String[][] names=new String[rows][cols]; //names.length=rows //names[i].length= cols //Entering into array System.out.println("Buddy, enter all the names!"); for(int i=0; i<rows; i++) { //System.out.println("Buddy, we're at row index "+row); for(int j=0; j<cols; j++) { if(j != 1) { names[i][j]=scan.next(); } else { scan.next(); } } } System.out.println("---------Let's print the 2D Array------------"); for(int i=0; i<rows; i++) { for(int j=0; j<cols; j++) { System.out.print(names[i][j]+ " "); } System.out.println(); } } }
[ "ik919@nyu.edu" ]
ik919@nyu.edu
acd582d0c7632fa18cbd276cf1b3b7f9437d508d
cc79d23cc0cef6b182583bf38fc8209cc91d02e1
/JavaWebDriver/PageHurtMePlenty.java
5add3bb769b067c192266639b1f2d77f6f28fd59
[]
no_license
ilyaparheychuk/EPAMtask
fc8527ef33f78657273daa14ae050c59e120b98a
a638fb109387f0ef07996cef142540478aeddabc
refs/heads/master
2023-05-12T23:41:25.420347
2019-10-20T22:00:23
2019-10-20T22:00:23
201,253,968
0
0
null
2023-05-09T18:15:14
2019-08-08T12:30:24
Java
UTF-8
Java
false
false
4,181
java
import org.openqa.selenium.JavascriptExecutor; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.PageFactory; import org.openqa.selenium.support.ui.ExpectedConditions; import org.openqa.selenium.support.ui.WebDriverWait; public class PageHurtMePlenty { @FindBy(xpath = ".//input[@class='devsite-search-field devsite-search-query' and @name='q']") private WebElement search; @FindBy(xpath = "(.//a[@href='https://cloud.google.com/products/calculator/' and @class='gs-title'])[1]") private WebElement searchCalc; @FindBy(xpath = "(.//div[@title='Compute Engine'])[1])") private WebElement computeEngine; @FindBy(xpath = ".//input[@id='input_53']") private WebElement numberOfInstances; @FindBy(xpath = "//*[@id=\'select_value_label_49\']/span[1]") private WebElement typeInstance; @FindBy(xpath = "//*[@id=\'select_option_217\']/div") private WebElement typeInstanceStandard; @FindBy(xpath = "//*[@id=\'mainForm\']/div[1]/div/md-card/md-card-content/div/div[1]/form/div[8]/div[1]/md-input-container/md-checkbox/div[2]") private WebElement addGPU; @FindBy(xpath = "//*[@id=\'select_value_label_346\']/span[1]/div") private WebElement numberOfGPU; @FindBy(xpath = "//*[@id=\'select_option_353\']/div[1]") private WebElement numberOfGPUOne; @FindBy(xpath = " //*[@id=\'select_value_label_347\']/span[1]/div") private WebElement typeOfGPU; @FindBy(xpath = "//*[@id=\'select_option_360\']/div") private WebElement typeOfGPUTesla; @FindBy(xpath = "//*[@id=\'select_value_label_50\']/span[1]") private WebElement localSSD; @FindBy(xpath = "//*[@id=\'select_option_171\']/div") private WebElement localSSDWhatIWant; @FindBy(xpath = "//*[@id=\'select_value_label_51\']/span[1]/div") private WebElement datacenter; @FindBy(xpath = "//*[@id=\'select_option_185\']") private WebElement locationDatacenter; @FindBy(xpath = "//*[@id=\'select_value_label_52\']/span[1]/div") private WebElement commited; @FindBy(xpath = "//*[@id=\'select_option_83\']/div") private WebElement commitedOneYear; @FindBy(xpath = "//*[@id=\'mainForm\']/div[1]/div/md-card/md-card-content/div/div[1]/form/div[13]/button") private WebElement addToEstimate; @FindBy(xpath = "//*[@id=\'gc-wrapper\']/div[2]") private WebElement nullField; @FindBy(xpath = ".//b[@class='ng-binding']") private WebElement waitElement; WebDriver driver; public PageHurtMePlenty(WebDriver driver) { this.driver = driver; PageFactory.initElements(driver, this); } public void hurtMePlenty(String text, String instance){ driver.get("https://cloud.google.com/"); driver.manage().window().maximize(); search.click(); search.sendKeys(text); search.submit(); (new WebDriverWait(driver, 20)) .until(ExpectedConditions.visibilityOf(searchCalc)).click(); (new WebDriverWait(driver, 40)) .until(ExpectedConditions.visibilityOf(nullField)).click(); driver.get("https://cloudpricingcalculator.appspot.com"); numberOfInstances.click(); numberOfInstances.sendKeys(instance); typeInstance.click(); typeInstanceStandard.click(); addGPU.click(); numberOfGPU.click(); numberOfGPUOne.click(); typeOfGPU.click(); typeOfGPUTesla.click(); JavascriptExecutor jse = (JavascriptExecutor)driver; jse.executeScript("window.scrollBy(0,400)"); (new WebDriverWait(driver, 40)) .until(ExpectedConditions.visibilityOf(localSSD)).click(); localSSDWhatIWant.click(); datacenter.click(); (new WebDriverWait(driver, 40)) .until(ExpectedConditions.visibilityOf(locationDatacenter)).click(); commited.click(); commitedOneYear.click(); addToEstimate.click(); (new WebDriverWait(driver, 50)) .until(ExpectedConditions.visibilityOf(waitElement)).isDisplayed(); } }
[ "iliyaparheychuk@gmail.com" ]
iliyaparheychuk@gmail.com
d83a672209e0ae04f9be8d4dca4c404a9a8ffc5a
dddd6e6babf152293c7acedcb3192398c8c6599e
/OfficialCompetitionCode2/src/org/usfirst/frc/team3566/robot/Collision.java
77ca3fefc7299f6ad47fb750a7e0658e8408c582
[]
no_license
frc3566/PowerUp-2018
c660f38ea5aa3c9652f1fb2f0dd98ee609e05d09
ae17b723b6f2716ca4489b3662c51e0cf76b358f
refs/heads/master
2021-05-14T00:07:23.992555
2018-03-10T04:17:15
2018-03-10T04:17:15
116,531,808
1
1
null
null
null
null
UTF-8
Java
false
false
1,361
java
package org.usfirst.frc.team3566.robot; public class Collision { //collide detection private static final double COLLIDE_LIMIT=12000; private static double collideSpan=0; public static double lastLSpeed,lastRSpeed; private static double lastStuck; public static boolean isCollide; public static void collideReset() { isCollide=false; lastLSpeed=Robot.encoderL.getRate(); lastRSpeed=Robot.encoderL.getRate();//Robot.encoderR.getRate(); collideSpan=0; lastStuck=Robot.time.get(); } public static void updateCollide() { collideSpan+=timeSpan; if( !(Math.abs(RobotMap.left.get())>0.2&&Math.abs(Robot.encoderL.getRate())<300 || Math.abs(RobotMap.right.get())>0.2&&Math.abs(Robot.encoderR.getRate())<300) ) lastStuck=Robot.time.get(); else if(Robot.time.get()-lastStuck>0.3)isCollide=true; if(collideSpan<0.15)return; double newL=Robot.encoderL.getRate(),newR=Robot.encoderL.getRate(); //hard collision if(Math.abs(newL-lastLSpeed)/collideSpan>COLLIDE_LIMIT||Math.abs(newR-lastRSpeed)/collideSpan>COLLIDE_LIMIT) isCollide=true; collideSpan=0; lastLSpeed=newL;lastRSpeed=newR; } public static double lastTime; public static double timeSpan; public static void getTimeSpan() { double thisTime=Robot.time.get(); timeSpan=thisTime-lastTime; if(timeSpan<1e-5)timeSpan=1e-5; lastTime=thisTime; } }
[ "yuxuanchen@stmarksschool.org" ]
yuxuanchen@stmarksschool.org
16541c174d20abe3e7ae09fed02bd4923c3fac24
352cf9b3deabbda037f575933ffbc78582120e40
/spring-security-auth-server/src/main/java/com/example/security/springsecurityauthserver/SpringSecurityAuthServerApplication.java
ad3967219a55be94454fa1fcc83206b456fac320
[]
no_license
smkskr/spring-boot-security
182b4e718d5442224544dab65a6231e9ec88b2f3
b0a4d663d1e50535974fa1125fe7dd707ec9adf0
refs/heads/master
2022-11-18T02:19:47.215231
2020-07-18T18:15:43
2020-07-18T18:15:43
280,531,709
0
0
null
null
null
null
UTF-8
Java
false
false
497
java
package com.example.security.springsecurityauthserver; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.security.oauth2.config.annotation.web.configuration.EnableResourceServer; @SpringBootApplication @EnableResourceServer public class SpringSecurityAuthServerApplication { public static void main(String[] args) { SpringApplication.run(SpringSecurityAuthServerApplication.class, args); } }
[ "saumik.sarkar30@gmail.com" ]
saumik.sarkar30@gmail.com
b95430e75701ba1a81113aaf9d4f8fa00e92263a
d51bf7dc68a3b65af2696137d30b7ceb2efa816c
/src/main/java/org/niolikon/alexandria/inventory/system/web/ApiErrorView.java
45d76852ffdb75ff1d53f3e5d4443448f539a941
[ "MIT" ]
permissive
niolikon/alexandria-Inventory
ead8101272e155c041a927c338cccda63580d259
7717662ad9010a88801328d04923ea389557a8e0
refs/heads/master
2023-07-02T17:20:58.366152
2021-08-14T18:17:05
2021-08-14T18:17:05
379,349,311
0
0
null
null
null
null
UTF-8
Java
false
false
144
java
package org.niolikon.alexandria.inventory.system.web; import java.io.Serializable; public interface ApiErrorView extends Serializable { }
[ "simoneandrea.muscas@gmail.com" ]
simoneandrea.muscas@gmail.com
8046d047338c3d332b09007fce510bfeef365c64
d67f6450b24fb08f2f61b74dcdecce3025ee3efc
/gemp-swccg-cards/src/main/java/com/gempukku/swccgo/cards/set11/light/Card11_016.java
54caf3cade471585bca5605016093cd2e1cd36e2
[ "MIT" ]
permissive
cburyta/gemp-swccg-public
00a974d042195e69d3c104e61e9ee5bd48728f9a
05529086de91ecb03807fda820d98ec8a1465246
refs/heads/master
2023-01-09T12:45:33.347296
2020-10-26T14:39:28
2020-10-26T14:39:28
309,400,711
0
0
MIT
2020-11-07T04:57:04
2020-11-02T14:47:59
null
UTF-8
Java
false
false
4,772
java
package com.gempukku.swccgo.cards.set11.light; import com.gempukku.swccgo.cards.AbstractNormalEffect; import com.gempukku.swccgo.cards.GameConditions; import com.gempukku.swccgo.cards.effects.usage.OncePerGameEffect; import com.gempukku.swccgo.common.*; import com.gempukku.swccgo.filters.Filters; import com.gempukku.swccgo.game.PhysicalCard; import com.gempukku.swccgo.game.SwccgGame; import com.gempukku.swccgo.logic.GameUtils; import com.gempukku.swccgo.logic.TriggerConditions; import com.gempukku.swccgo.logic.actions.OptionalGameTextTriggerAction; import com.gempukku.swccgo.logic.actions.TopLevelGameTextAction; import com.gempukku.swccgo.logic.effects.UseForceEffect; import com.gempukku.swccgo.logic.effects.choose.DeployCardFromReserveDeckEffect; import com.gempukku.swccgo.logic.effects.choose.StackOneCardFromLostPileEffect; import com.gempukku.swccgo.logic.effects.choose.TakeStackedCardIntoHandEffect; import com.gempukku.swccgo.logic.timing.EffectResult; import com.gempukku.swccgo.logic.timing.results.LostFromTableResult; import java.util.Collections; import java.util.LinkedList; import java.util.List; /** * Set: Tatooine * Type: Effect * Title: Brisky Morning Munchen */ public class Card11_016 extends AbstractNormalEffect { public Card11_016() { super(Side.LIGHT, 3, PlayCardZoneOption.YOUR_SIDE_OF_TABLE, Title.Brisky_Morning_Munchen, Uniqueness.UNIQUE); setLore("'Den boom! Getten berry scared, and grabben dat Jedi, and pow! Mesa here. Huh! Mesa getten berry, berry scared. Mm.'"); setGameText("Deploy on table. Once per game, may deploy Jar Jar from Reserve Deck; reshuffle. If you just lost Jar Jar from a site, may place him here. At any time, may use 3 Force to take Jar Jar from here into hand."); addIcons(Icon.TATOOINE, Icon.EPISODE_I); } @Override protected List<TopLevelGameTextAction> getGameTextTopLevelActions(final String playerId, SwccgGame game, final PhysicalCard self, int gameTextSourceCardId) { List<TopLevelGameTextAction> actions = new LinkedList<TopLevelGameTextAction>(); GameTextActionId gameTextActionId = GameTextActionId.BRISKY_MORNING_MUNCHEN__DOWNLOAD_JAR_JAR; // Check condition(s) if (GameConditions.isOncePerGame(game, self, gameTextActionId) && GameConditions.canDeployCardFromReserveDeck(game, playerId, self, gameTextActionId, Persona.JAR_JAR)) { final TopLevelGameTextAction action = new TopLevelGameTextAction(self, gameTextSourceCardId, gameTextActionId); action.setText("Deploy Jar Jar from Reserve Deck"); // Update usage limit(s) action.appendUsage( new OncePerGameEffect(action)); // Perform result(s) action.appendEffect( new DeployCardFromReserveDeckEffect(action, Filters.Jar_Jar, true)); actions.add(action); } gameTextActionId = GameTextActionId.OTHER_CARD_ACTION_1; // Check condition(s) if (GameConditions.hasStackedCards(game, self, Filters.Jar_Jar) && GameConditions.canUseForce(game, playerId, 3)) { final TopLevelGameTextAction action = new TopLevelGameTextAction(self, gameTextSourceCardId, gameTextActionId); action.setText("Take Jar Jar into hand"); // Pay cost(s) action.appendCost( new UseForceEffect(action, playerId, 3)); // Perform result(s) action.appendEffect( new TakeStackedCardIntoHandEffect(action, playerId, self, Filters.Jar_Jar)); actions.add(action); } return actions; } @Override protected List<OptionalGameTextTriggerAction> getGameTextOptionalAfterTriggers(final String playerId, SwccgGame game, final EffectResult effectResult, final PhysicalCard self, int gameTextSourceCardId) { GameTextActionId gameTextActionId = GameTextActionId.OTHER_CARD_ACTION_2; // Check condition(s) if (TriggerConditions.justLost(game, effectResult, Filters.and(Filters.your(self), Filters.Jar_Jar))) { PhysicalCard cardLost = ((LostFromTableResult) effectResult).getCard(); final OptionalGameTextTriggerAction action = new OptionalGameTextTriggerAction(self, gameTextSourceCardId, gameTextActionId); action.setText("Stack " + GameUtils.getFullName(cardLost)); action.setActionMsg("Stack " + GameUtils.getCardLink(cardLost)); // Perform result(s) action.appendEffect( new StackOneCardFromLostPileEffect(action, cardLost, self, false, true, true)); return Collections.singletonList(action); } return null; } }
[ "andrew@bender.io" ]
andrew@bender.io
364887a033e938c5ccc85a8be1d9c2f6a0cae9a8
0c7ff54a9ebff538c952ecc7de54b06cd9b4187d
/Loppe/Septiembre Project 2017/ExampleMultimedia/app/src/androidTest/java/com/bsdenterprise/carlos/anguiano/examplemultimedia/ExampleInstrumentedTest.java
2f98fd1a32dd1886bbc18ba6750764bad67d642d
[]
no_license
cjoseanguiano/Nueva-Alarma
3d04a4fe80264db7de39ec0ae565d233c194ac2f
2dd0deee875288abff83a9bcf5cf23d447a6c5b3
refs/heads/master
2021-08-30T05:13:37.014519
2017-12-16T04:51:37
2017-12-16T04:51:37
109,331,191
0
0
null
null
null
null
UTF-8
Java
false
false
806
java
package com.bsdenterprise.carlos.anguiano.examplemultimedia; 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.bsdenterprise.carlos.anguiano.examplemultimedia", appContext.getPackageName()); } }
[ "c.joseanguiano@gmail.com" ]
c.joseanguiano@gmail.com
3ab9f63c7c40ba350d750c93d9987b677bcd4757
26a227fa1799904667ed2f5a312437a602e18051
/app/src/main/java/in/p4n/alertdialogshowinglistofitems/MainActivity.java
8a412995f6d2b1bf0ec4affd3407612e741f49c3
[]
no_license
Pankaj-Str/AlertDialogShowingListOfItems-example
a0f1b08748f1dee65d87771ffb88a15ab17a9f44
f8b2e4d6efc13d2810506c6ae2e214675013061a
refs/heads/master
2021-10-10T18:45:08.007465
2019-01-15T14:44:45
2019-01-15T14:44:45
165,867,462
1
0
null
null
null
null
UTF-8
Java
false
false
1,809
java
package in.p4n.alertdialogshowinglistofitems; import android.annotation.SuppressLint; import android.content.DialogInterface; import android.graphics.Color; import android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.Toast; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } @SuppressLint("NewApi") public void withItems(View view) { final String[] items = {"Apple", "Banana", "Orange", "Grapes"}; AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setTitle("List of Items") .setItems(items, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { Toast.makeText(getApplicationContext(), items[which] + " is clicked", Toast.LENGTH_SHORT).show(); } }); builder.setPositiveButton("OK", null); builder.setNegativeButton("CANCEL", null); builder.setNeutralButton("NEUTRAL", null); builder.setPositiveButtonIcon(getResources().getDrawable(android.R.drawable.btn_dialog, getTheme())); builder.setIcon(getResources().getDrawable(R.drawable.ic_cake_black_24dp, getTheme())); AlertDialog alertDialog = builder.create(); alertDialog.show(); Button button = alertDialog.getButton(DialogInterface.BUTTON_POSITIVE); button.setBackgroundColor(Color.BLACK); button.setPadding(0, 0, 20, 0); button.setTextColor(Color.WHITE); } }
[ "pankajchouhan80@gmail.com" ]
pankajchouhan80@gmail.com
de405439da3479bec9e1b8fb167a6befbc7cc32f
a8b280feadac665807a943ddc8c7cd453db56df8
/after-videos-dev/lhn-videos-dev-common/src/main/java/com/lhn/utils/Exceptions.java
c8136faf44a96ae90d861020c976c0d0306fcb6f
[ "Apache-2.0" ]
permissive
openTarget/WX_Video
4ae3576af637df45776b7d864cc1b852ec6a0b20
ae979ba12a1a009abe77e3124873623c3922b323
refs/heads/master
2020-04-01T17:16:24.589902
2018-10-17T09:23:42
2018-10-17T09:23:42
153,421,101
2
0
null
null
null
null
UTF-8
Java
false
false
1,913
java
package com.lhn.utils; import java.io.PrintWriter; import java.io.StringWriter; import javax.servlet.http.HttpServletRequest; /** * 关于异常的工具类. * */ public class Exceptions { /** * 将CheckedException转换为UncheckedException. */ public static RuntimeException unchecked(Exception e) { if (e instanceof RuntimeException) { return (RuntimeException) e; } else { return new RuntimeException(e); } } /** * 将ErrorStack转化为String. */ public static String getStackTraceAsString(Throwable e) { if (e == null) { return ""; } StringWriter stringWriter = new StringWriter(); e.printStackTrace(new PrintWriter(stringWriter)); return stringWriter.toString(); } /** * 判断异常是否由某些底层的异常引起. */ @SuppressWarnings("unchecked") public static boolean isCausedBy(Exception ex, Class<? extends Exception>... causeExceptionClasses) { Throwable cause = ex.getCause(); while (cause != null) { for (Class<? extends Exception> causeClass : causeExceptionClasses) { if (causeClass.isInstance(cause)) { return true; } } cause = cause.getCause(); } return false; } /** * 在request中获取异常类 * * @param request * @return */ public static Throwable getThrowable(HttpServletRequest request) { Throwable ex = null; if (request.getAttribute("exception") != null) { ex = (Throwable) request.getAttribute("exception"); } else if (request.getAttribute("javax.servlet.error.exception") != null) { ex = (Throwable) request.getAttribute("javax.servlet.error.exception"); } return ex; } }
[ "metype@aliyun.com" ]
metype@aliyun.com
21abcfe870b6f7099a8a1c2d8df7ed8b73414dab
0ceb194b60e601932d2131f09839a1c81ef9537a
/bin/java/src/haxe/org/ds/VectorSort.java
4693cbb76a695a1158844b4c76e0455faedd547c
[ "MIT" ]
permissive
ScrambledRK/thnx-template
533fa9ef8b79fb66996bf86f888a45435c6e1de4
59b72a2563bbc56ed1fbac329f97c925c805186c
refs/heads/master
2021-06-18T04:14:13.130426
2015-10-30T11:32:04
2015-10-30T11:32:04
44,881,256
0
0
null
null
null
null
UTF-8
Java
false
false
16,079
java
package haxe.org.ds; import haxe.root.*; @SuppressWarnings(value={"rawtypes", "unchecked"}) public class VectorSort extends haxe.lang.HxObject { public VectorSort(haxe.lang.EmptyObject empty) { } public VectorSort() { //line 32 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" haxe.org.ds.VectorSort.__hx_ctor_haxe_org_ds_VectorSort(this); } public static void __hx_ctor_haxe_org_ds_VectorSort(haxe.org.ds.VectorSort __temp_me112) { } public static <T> void sort(T[] a, haxe.lang.Function cmp) { //line 45 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" haxe.org.ds.VectorSort.rec(a, cmp, 0, ((T[]) (a) ).length); } public static <T> void rec(T[] a, haxe.lang.Function cmp, int from, int to) { //line 49 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int middle = ( ( from + to ) >> 1 ); //line 50 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" if (( ( to - from ) < 12 )) { //line 51 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" if (( to <= from )) { //line 51 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" return ; } //line 52 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" { //line 52 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int _g = ( from + 1 ); //line 52 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" while (( _g < to )) { //line 52 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int i = _g++; //line 53 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int j = i; //line 54 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" while (( j > from )) { //line 55 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" if (( ((int) (cmp.__hx_invoke2_f(0.0, ((T) (((T[]) (a) )[j]) ), 0.0, ((T) (((T[]) (a) )[( j - 1 )]) ))) ) < 0 )) { //line 56 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" haxe.org.ds.VectorSort.swap(a, ( j - 1 ), j); } else { //line 58 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" break; } //line 59 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" j--; } } } //line 62 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" return ; } //line 64 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" haxe.org.ds.VectorSort.rec(a, cmp, from, middle); //line 65 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" haxe.org.ds.VectorSort.rec(a, cmp, middle, to); //line 66 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" haxe.org.ds.VectorSort.doMerge(a, cmp, from, middle, to, ( middle - from ), ( to - middle )); } public static <T> void doMerge(T[] a, haxe.lang.Function cmp, int from, int pivot, int to, int len1, int len2) { //line 70 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int first_cut = 0; //line 70 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int second_cut = 0; //line 70 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int len11 = 0; //line 70 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int len22 = 0; //line 70 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int new_mid = 0; //line 71 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" if (( ( len1 == 0 ) || ( len2 == 0 ) )) { //line 72 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" return ; } //line 73 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" if (( ( len1 + len2 ) == 2 )) { //line 74 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" if (( ((int) (cmp.__hx_invoke2_f(0.0, ((T) (((T[]) (a) )[pivot]) ), 0.0, ((T) (((T[]) (a) )[from]) ))) ) < 0 )) { //line 75 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" haxe.org.ds.VectorSort.swap(a, pivot, from); } //line 76 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" return ; } //line 78 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" if (( len1 > len2 )) { //line 79 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" len11 = ( len1 >> 1 ); //line 80 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" first_cut = ( from + len11 ); //line 81 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" second_cut = ((int) (haxe.org.ds.VectorSort.lower(a, cmp, pivot, to, first_cut)) ); //line 82 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" len22 = ( second_cut - pivot ); } else { //line 84 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" len22 = ( len2 >> 1 ); //line 85 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" second_cut = ( pivot + len22 ); //line 86 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" first_cut = ((int) (haxe.org.ds.VectorSort.upper(a, cmp, from, pivot, second_cut)) ); //line 87 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" len11 = ( first_cut - from ); } //line 89 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" haxe.org.ds.VectorSort.rotate(a, cmp, first_cut, pivot, second_cut); //line 90 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" new_mid = ( first_cut + len22 ); //line 91 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" haxe.org.ds.VectorSort.doMerge(a, cmp, from, first_cut, new_mid, len11, len22); //line 92 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" haxe.org.ds.VectorSort.doMerge(a, cmp, new_mid, second_cut, to, ( len1 - len11 ), ( len2 - len22 )); } public static <T> void rotate(T[] a, haxe.lang.Function cmp, int from, int mid, int to) { //line 96 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int n = 0; //line 97 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" if (( ( from == mid ) || ( mid == to ) )) { //line 97 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" return ; } //line 98 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" n = haxe.org.ds.VectorSort.gcd(( to - from ), ( mid - from )); //line 99 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" while (( n-- != 0 )) { //line 100 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" T val = ((T) (((T[]) (a) )[( from + n )]) ); //line 101 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int shift = ( mid - from ); //line 102 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int p1 = ( from + n ); //line 102 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int p2 = ( ( from + n ) + shift ); //line 103 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" while (( p2 != ( from + n ) )) { //line 104 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" ((T[]) (a) )[p1] = ((T) (((T[]) (a) )[p2]) ); //line 105 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" p1 = p2; //line 106 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" if (( ( to - p2 ) > shift )) { //line 106 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" p2 += shift; } else { //line 107 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" p2 = ( from + (( shift - (( to - p2 )) )) ); } } //line 109 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" ((T[]) (a) )[p1] = val; } } public static int gcd(int m, int n) { //line 114 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" while (( n != 0 )) { //line 115 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int t = ( m % n ); //line 116 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" m = n; //line 117 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" n = t; } //line 119 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" return m; } public static <T> int upper(T[] a, haxe.lang.Function cmp, int from, int to, int val) { //line 123 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int len = ( to - from ); //line 123 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int half = 0; //line 123 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int mid = 0; //line 124 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" while (( len > 0 )) { //line 125 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" half = ( len >> 1 ); //line 126 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" mid = ( from + half ); //line 127 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" if (( ((int) (cmp.__hx_invoke2_f(0.0, ((T) (((T[]) (a) )[val]) ), 0.0, ((T) (((T[]) (a) )[mid]) ))) ) < 0 )) { //line 128 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" len = half; } else { //line 130 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" from = ( mid + 1 ); //line 131 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" len = ( ( len - half ) - 1 ); } } //line 134 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" return from; } public static <T> int lower(T[] a, haxe.lang.Function cmp, int from, int to, int val) { //line 138 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int len = ( to - from ); //line 138 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int half = 0; //line 138 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" int mid = 0; //line 139 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" while (( len > 0 )) { //line 140 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" half = ( len >> 1 ); //line 141 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" mid = ( from + half ); //line 142 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" if (( ((int) (cmp.__hx_invoke2_f(0.0, ((T) (((T[]) (a) )[mid]) ), 0.0, ((T) (((T[]) (a) )[val]) ))) ) < 0 )) { //line 143 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" from = ( mid + 1 ); //line 144 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" len = ( ( len - half ) - 1 ); } else { //line 146 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" len = half; } } //line 148 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" return from; } public static <T> void swap(T[] a, int i, int j) { //line 152 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" T tmp = ((T) (((T[]) (a) )[i]) ); //line 153 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" ((T[]) (a) )[i] = ((T) (((T[]) (a) )[j]) ); //line 154 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" ((T[]) (a) )[j] = tmp; } public static <T> int compare(T[] a, haxe.lang.Function cmp, int i, int j) { //line 158 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" return ((int) (cmp.__hx_invoke2_f(0.0, ((T) (((T[]) (a) )[i]) ), 0.0, ((T) (((T[]) (a) )[j]) ))) ); } public static java.lang.Object __hx_createEmpty() { //line 32 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" return new haxe.org.ds.VectorSort(haxe.lang.EmptyObject.EMPTY); } public static java.lang.Object __hx_create(haxe.root.Array arr) { //line 32 "D:\\Projects\\Arbeit\\Greentube\\Hackathon\\Thnx\\lib\\dotCore\\src\\main\\haxe\\org\\ds\\VectorSort.hx" return new haxe.org.ds.VectorSort(); } }
[ "w0rminf35t0r@gmx.net" ]
w0rminf35t0r@gmx.net
e05ab9127f3c5710bd80dca6867c9e79bfe53626
248448edea3d6b2c9ea98a0342ff16d536e0591e
/src/main/java/com/dto/University.java
88e2eaf8516b29cdf79730f6148297d6acc29c51
[]
no_license
Keshavmca12/java_practice
bdb13f09366db9dea0aad00ec5d3a305ad84fd85
65ceecc5e8eed9bf30683d666a147dc0a7a1044d
refs/heads/master
2021-06-11T06:35:08.628952
2017-04-12T20:15:56
2017-04-12T20:15:56
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,057
java
package com.dto; import java.util.HashSet; import java.util.Set; public class University { private int id; private String name; private String location; private Set<College> children=new HashSet<College>(0); public Set<College> getChildren() { return children; } public University(int id, String name, String location, Set<College> children) { super(); this.id = id; this.name = name; this.location = location; this.children = children; } public void setChildren(Set<College> children) { this.children = children; } public University(){ } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getLocation() { return location; } public void setLocation(String location) { this.location = location; } @Override public String toString() { return "University [id=" + id + ", name=" + name + ", location=" + location + ", children=" + children + "]"; } }
[ "keshavmca12@gmail.com" ]
keshavmca12@gmail.com
3b328d1df92475dbb0ece33d386e41aaa4eaf528
5794831e76243c9e91de1aa2741e3ce8d114fbb5
/src/test/java/io/geekidea/springbootplus/test/RedisTemplateTest.java
4b9a5f10753688bab0d22648b50878e9648cc622
[ "Apache-2.0" ]
permissive
udhayamgit/spring-boot-plus
3f9475132a94a2c0d656db04e9dc5b98f5b5c290
7032c121d41b9362fc1f3b3478d81378d789069b
refs/heads/master
2020-08-05T14:13:11.955045
2019-10-03T10:19:02
2019-10-03T10:19:02
null
0
0
null
null
null
null
UTF-8
Java
false
false
804
java
package io.geekidea.springbootplus.test; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest public class RedisTemplateTest { @Autowired private RedisTemplate redisTemplate; @Test public void put(){ redisTemplate.opsForHash().increment("hello","world",1); System.out.println(redisTemplate.opsForHash().get("hello","world")); redisTemplate.opsForHash().increment("hello","world",-1); System.out.println(redisTemplate.opsForHash().get("hello","world")); } }
[ "springbootplus@aliyun.com" ]
springbootplus@aliyun.com
c4ea6458f933bf58bbf287b630b00c0d516390d7
82592a120b2a238a4ab2fd0685f569c10b4eb115
/aplikacja_SpringBoot/src/main/java/lab7/aplikacja/repositories/NoteRepo.java
c06cd524486f7a21be9ac9368df8dfc2c3e3e9d8
[]
no_license
PawKarb/Programy_Java
5493712491dd85edf8c8f325fb300c6b93ba10ed
6649e09f8dcc71815386ac49bd3d4d770427ec1e
refs/heads/master
2023-04-26T11:07:02.755520
2021-05-20T06:08:25
2021-05-20T06:08:25
260,218,908
0
0
null
null
null
null
UTF-8
Java
false
false
327
java
package lab7.aplikacja.repositories; import java.util.List; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; import lab7.aplikacja.domain.*; @Repository public interface NoteRepo extends JpaRepository<Note, Long>{ List<Note> findByOrderByTimestampDesc(); }
[ "62513686+PawKarb@users.noreply.github.com" ]
62513686+PawKarb@users.noreply.github.com
eb3e8bfe0ec783671d4880782d633000e19e4ecb
a8b05ab9c66b139cbfd3b28138c413dec52a1ef4
/app/src/test/java/com/ajain/securediary/ExampleUnitTest.java
8b0f748c16a7da2068227d775c24e9f29ed2a382
[]
no_license
aman-playground/secure-diary
3301b7c971075e1a227e1ae105095a5740887cb3
47e0fdf0344cf9fe084678015c1395eb44fc7e8f
refs/heads/master
2021-06-07T03:26:10.453766
2016-10-25T10:58:16
2016-10-25T10:58:16
null
0
0
null
null
null
null
UTF-8
Java
false
false
399
java
package com.ajain.securediary; 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); } }
[ "Ghost" ]
Ghost
7a1be252d7e0430640c386f1ec37bb2f45cd6510
a39e9245f577b7fc90c2bd9ea5638c940331b03d
/src/main/java/com/tmm/retrofit/config/DefineMethod.java
8bfc7924c56879ae1fa8c4822d6f54db5625d7a6
[]
no_license
838395446/testmanager
20dbe529705ace802042b2e39c729b396d4f219f
b26c4ac2729faba6b66e9bcce9cfa3d0e73384c8
refs/heads/master
2021-01-19T10:05:38.688897
2018-05-23T12:22:45
2018-05-23T12:22:45
87,826,317
1
0
null
null
null
null
UTF-8
Java
false
false
386
java
package com.tmm.retrofit.config; /** * Created by Captain Wang on 17/4/6. */ public class DefineMethod { public final static String POST="POST"; public final static String GET="GET"; public final static String DELETE="DELETE"; public final static String PUT="PUT"; public final static String OPTIONS="OPTIONS"; /** * 请求类型定义 */ }
[ "838395446@qq.com" ]
838395446@qq.com
48ac62763ff78c00cd45e8b64bb619ab9fe71f4d
fcb6c796a4a345cfff3cc71b95b01e150ab10755
/WebAuthServer/src/main/java/ru/scorpio92/socketchat/authserver/data/model/message/request/DeauthServerDataRequest.java
0066e9f1f8ab7bdb455b477f4055a40c14ef1f46
[]
no_license
Scorpio92/SocketChat
950514d9fee957a6f4afb4ea1cfe0c4519fe770d
56d362b9a15c2990ddce2cb33b73a828f57ed963
refs/heads/master
2020-03-21T02:47:45.784161
2018-07-04T13:23:22
2018-07-04T13:23:22
138,019,677
1
1
null
null
null
null
UTF-8
Java
false
false
212
java
package ru.scorpio92.socketchat.authserver.data.model.message.request; public class DeauthServerDataRequest { private String authToken; public String getAuthToken() { return authToken; } }
[ "scorpio92@mail.ru" ]
scorpio92@mail.ru
690de82ad8ca168d11cf7d53f85bbb088372d14c
b01dfd13681afea11990d877fd9bcdac5dcb2cee
/entities/Enemy.java
1710a5a5273548c08b3978cab7f08c2ee8a691d7
[]
no_license
AirtonBorges/First_Game
3cf6fda5fa7e3cb389d4592a0ef63c13948ee7cb
bed0d3fb64618f16a17748f1899d2cca6fff2e9f
refs/heads/main
2023-07-09T14:58:18.102883
2021-08-15T21:27:52
2021-08-15T21:27:52
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,791
java
package com.steiger.entities; import java.awt.Color; import java.awt.Graphics; import java.awt.Rectangle; import java.awt.image.BufferedImage; import java.util.Random; import com.steiger.main.Game; import com.steiger.main.Sound; import com.steiger.world.AStar; import com.steiger.world.Camera; import com.steiger.world.Vector2i; import com.steiger.world.World; public class Enemy extends Entity { private double speed = 2; private double delayAtk = 0; private double maxDelayAtk = 50; private int frames = 0, maxFrames = 12, index = 0, maxIndex = 1; private BufferedImage[] sprites; private int life = 10; private boolean agro = false; private boolean isDamaged = false; private int damageFrames = 8, damageCurrent=0; public Enemy(int x, int y, int width, int height, BufferedImage sprite) { super(x, y, width, height, null); sprites = new BufferedImage[2]; sprites[0] = Game.spritesheet.getSprite(112, 16, 16, 16); sprites[1] = Game.spritesheet.getSprite(128, 16, 16, 16); } public void tick() { depth = 0; /* if(this.cauculateDistance(this.getX(), this.getY(), Game.player.getX(), Game.player.getY()) < 80) { if(isColiddingWithPlayer() == false) { if((int)x < Game.player.getX() && World.isFree((int)(x+speed), this.getY()) && !isColidding((int)(x+speed), this.getY())) { x+=speed; }else if ((int)x >Game.player.getX() && World.isFree((int)(x-speed), this.getY()) && !isColidding((int)(x-speed), this.getY())) { x-=speed; }if((int)y < Game.player.getY() && World.isFree(this.getX(), (int)(y+speed)) && !isColidding(this.getX(), (int)(y+speed))) { y+=speed; }else if ((int)y >Game.player.getY() && World.isFree(this.getX(), (int)(y-speed)) && !isColidding(this.getX(), (int)(y-speed))) { y-=speed; } }else { //ESTAMOS CCOLIDINDO if(Game.rand.nextInt(100) < 10) { Sound.hurtEffect.play(); Game.player.life-=Game.rand.nextInt(20); Game.player.isDamaged = true; //System.out.println("Life:" + Game.player.life); } } } */ depth = 0; maskx = 3; masky = 1; mwidth = 10; mheight = 14; if(this.cauculateDistance(this.getX(), this.getY(), Game.player.getX(), Game.player.getY()) < 120) { agro = true; } if(agro == true) { if(!isColiddingWithPlayer()) { if(path == null || path.size() == 0) { Vector2i start = new Vector2i((int)(x/16),(int)(y/16)); Vector2i end = new Vector2i((int)(Game.player.x/16),(int)(Game.player.y/16)); path = AStar.findPath(Game.world, start, end); } }else { if(delayAtk == 0) { Sound.hurtEffect.play(); if(Game.player.shield <= 0) Game.player.life-= 15; if(Game.player.shield > 0) Game.player.shield-=15; delayAtk = maxDelayAtk; Game.player.isDamaged = true; } } if(new Random().nextInt(100) > 30) followPath(path); if(new Random().nextInt(100) > 5) { Vector2i start = new Vector2i((int)(x/16),(int)(y/16)); Vector2i end = new Vector2i((int)(Game.player.x/16),(int)(Game.player.y/16)); path = AStar.findPath(Game.world, start, end); } } if(delayAtk > 0) { delayAtk--; } frames++; if(frames == maxFrames) { frames = 0; index++; if(index > maxIndex) index = 0; } collidingBullet(); if(life <= 0) { Sound.enemyDeathEffect.play(); destroySelf(); World.generateParticles(100, (int)x, (int)y); Game.mainCoin += 10; return; } if(isDamaged) { damageCurrent++; if(damageCurrent == damageFrames) { damageCurrent =0; isDamaged = false; } } } public void destroySelf() { Game.enemies.remove(this); Game.entities.remove(this); } public void collidingBullet() { for(int i = 0; i < Game.bullets.size(); i++) { Entity e = Game.bullets.get(i); if(e instanceof BulletShoot) { if(Entity.isColidding(this, e)) { isDamaged = true; if(Game.player.potion == true) { life -= 5; } if(Game.silverBullt == true) { life -=5; } life -=5; Game.bullets.remove(i); return; } } } } public boolean isColiddingWithPlayer() { Rectangle enemyCurrent = new Rectangle(this.getX()+maskx, this.getY()+masky, mwidth, mheight); Rectangle player = new Rectangle(Game.player.getX(),Game.player.getY(),16,16); return enemyCurrent.intersects(player); } public void render(Graphics g) { if(!isDamaged) { g.drawImage(sprites[index], this.getX()-Camera.x, this.getY()-Camera.y, null); }else { g.drawImage(Entity.ENEMY_FEEDBACK, this.getX()-Camera.x, this.getY()-Camera.y, null); } //DEBUG HITBOX //g.setColor(Color.blue); //g.fillRect(this.getX()+maskx-Camera.x, this.getY()+masky-Camera.y, mwidth, mheight); } }
[ "gabriel.steiger@hotmail.com" ]
gabriel.steiger@hotmail.com
f0850ef622721f81b19b0e760f4d4b8f4482fcff
c537bc2ab9386407e34a357ed2727b3f8be17895
/src/main/java/se/src/service/ECommerceService.java
b947a815f0377f42e24e9c9441d0f0ec18df6b56
[]
no_license
joannen/LiquorStore
89ad7778a80c42731c1dc1eb0eaccaa6f8a79ee7
478c721837cd55357178d168dbdfa3d5deab7a40
refs/heads/master
2020-05-20T16:52:50.064567
2015-10-26T14:22:52
2015-10-26T14:22:52
44,963,225
0
0
null
2015-10-26T11:07:13
2015-10-26T11:07:10
Java
UTF-8
Java
false
false
1,394
java
package service; import java.util.HashMap; import java.util.List; import java.util.Map; import se.bastagruppen.webshop.interfaces.OrderRepository; import se.bastagruppen.webshop.interfaces.ProductRepository; import se.bastagruppen.webshop.interfaces.UserRepository; import se.bastagruppen.webshop.model.Product; import se.bastagruppen.webshop.model.User; public class ECommerceService { Map<Product, Integer> shoppingCart; private final UserRepository userRepo; private final ProductRepository productRepo; private final OrderRepository orderRepo; public ECommerceService(UserRepository userRepo, OrderRepository orderRepo, ProductRepository productRep) { this.userRepo = userRepo; this.orderRepo = orderRepo; this.productRepo = productRepo; this.shoppingCart = new HashMap<Product, Integer>(); } public void addUser(User user) { //TODO VALIDATION userRepo.create(user); } public User findUserById(String id) { return userRepo.findById(id); } public User findUserByName(String name) { // TODO } public List<Product> findAllProducts() { return productRepo.getAll(); } public Product findProductById(String id) { //TODO VALIDATION return productRepo.findById(id); } public void addToCart(Product product, Integer amount) { shoppingCart.put(product, amount); } addToCart(Product, amount) placeOrder(Order order) }
[ "joanne_nori@hotmail.com" ]
joanne_nori@hotmail.com