blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
410
content_id
stringlengths
40
40
detected_licenses
listlengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
131 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
9.45M
extension
stringclasses
32 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
313
43057ffb300280230bfa2765b1e6e0dfabec026c
80143f844a564d8bfa400b7873534a7892e87884
/src/com/charspan/androidwebmicroarchitecture/handler/ResourceInAssetsHandler.java
c31e1f4a5c0c0a0df597dac386fc99ce001bfeeb
[]
no_license
mzzdxt/AndroidWebMicroarchitecture
88c8fcea8ce7ff99df26b054f913aaab062e3a20
e31ed7b70ab392f254e1234c5a4b4afb70c505a3
refs/heads/master
2021-06-12T15:03:34.797705
2017-03-04T04:44:50
2017-03-04T04:44:50
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,958
java
package com.charspan.androidwebmicroarchitecture.handler; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.io.PrintStream; import android.content.Context; import com.charspan.androidwebmicroarchitecture.handler.itf.IResourceUriHandler; import com.charspan.androidwebmicroarchitecture.server.HttpContext; import com.charspan.androidwebmicroarchitecture.util.StreamToolkit; /** * 静态的资源 * http://localhost:8088/static/client.html */ public class ResourceInAssetsHandler implements IResourceUriHandler { private String acceptPrefix = "/static/"; private Context context; public ResourceInAssetsHandler(Context context) { this.context=context; } @Override public boolean accept(String uri) { return uri.startsWith(acceptPrefix); } @Override public void handler(String uri, HttpContext httpContext) { int startIndex=acceptPrefix.length(); String assetsPath=uri.substring(startIndex); //Log.e("charspan", "assetsPath:"+assetsPath); try { InputStream fis = context.getAssets().open(assetsPath); byte[] raw=StreamToolkit.readRawFromStream(fis); fis.close(); OutputStream nos=httpContext.getUnderlySocket().getOutputStream(); PrintStream printer = new PrintStream(nos); printer.println("HTTP/1.1 200 OK"); printer.println("Content-Length:"+raw.length); if(assetsPath.endsWith(".html")){ printer.println("Content-Type:text/html"); }else if(assetsPath.endsWith(".js")){ printer.println("Content-Type:text/js"); }else if(assetsPath.endsWith(".css")){ printer.println("Content-Type:text/css"); }else if(assetsPath.endsWith(".jpg")){ printer.println("Content-Type:text/jpg"); }else if(assetsPath.endsWith(".png")){ printer.println("Content-Type:text/png"); } printer.println(); printer.write(raw); } catch (IOException e) { e.printStackTrace(); } } }
[ "1902168804@qq.com" ]
1902168804@qq.com
296c038e7b5890888a5611e0504a4ed062e4d987
785f92468b22c5c2b11515d39a0972abba4b6acf
/fluent-mybatis/src/main/java/cn/org/atool/fluent/mybatis/base/splice/FreeQuery.java
4a9c11c324eeb5360a5097511746282ca974509f
[ "Apache-2.0" ]
permissive
Akon1993/fluent-mybatis
13a195999da507cafd05dcd304f547e7c6561e74
0f72c6cad8e5044b210cbc1502c8a62db577c3d9
refs/heads/master
2023-08-03T02:29:14.085594
2021-09-13T14:43:24
2021-09-13T14:43:24
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,773
java
package cn.org.atool.fluent.mybatis.base.splice; import cn.org.atool.fluent.mybatis.base.IRef; import cn.org.atool.fluent.mybatis.base.crud.BaseQuery; import cn.org.atool.fluent.mybatis.base.crud.IQuery; import cn.org.atool.fluent.mybatis.base.splice.FreeWrapperHelper.GroupBy; import cn.org.atool.fluent.mybatis.base.splice.FreeWrapperHelper.Having; import cn.org.atool.fluent.mybatis.base.splice.FreeWrapperHelper.QueryOrderBy; import cn.org.atool.fluent.mybatis.base.splice.FreeWrapperHelper.Selector; import cn.org.atool.fluent.mybatis.metadata.DbType; import cn.org.atool.fluent.mybatis.segment.BaseWrapper; import lombok.Setter; import lombok.experimental.Accessors; import java.util.List; import java.util.function.Supplier; import static cn.org.atool.fluent.mybatis.base.splice.FreeWrapperHelper.QueryWhere; import static cn.org.atool.fluent.mybatis.mapper.MapperSql.brackets; /** * 字符串形式自由拼接查询器构造 * * @author darui.wu */ @Accessors(chain = true) @SuppressWarnings({"rawtypes"}) public class FreeQuery extends BaseQuery<EmptyEntity, FreeQuery> { /** * 指定查询字段, 默认无需设置 */ public final Selector select = new Selector(this); /** * 分组:GROUP BY 字段, ... * 例: groupBy('id', 'name') */ public final GroupBy groupBy = new GroupBy(this); /** * 分组条件设置 having... */ public final Having having = new Having(this); /** * 排序设置 order by ... */ public final QueryOrderBy orderBy = new QueryOrderBy(this); /** * 查询条件 where ... */ public final QueryWhere where = new QueryWhere(this); public FreeQuery(Supplier<String> table, String alias) { super(table, alias, EmptyEntity.class); } public FreeQuery(String table) { this(() -> table, null); } public FreeQuery(String table, String alias) { this(() -> table, alias); } /** * 嵌套子查询 select * from (select * ...) alias; * * @param child 子查询 * @param alias 别名 */ public FreeQuery(IQuery child, String alias) { this(() -> brackets(child), alias); this.setDbType(((BaseWrapper) child).dbType()); child.getWrapperData().sharedParameter(this.wrapperData); } public FreeQuery emptyQuery() { return new FreeQuery(super.table, super.tableAlias); } @Override public QueryWhere where() { return new QueryWhere(this); } /** * 完全自定义的sql * 使用此方法, Query的其它设置(select,where,order,group,limit等)将无效 * * @param sql 用户定义的完整sql语句 * @param parameter sql参数, 通过#{value} 或 #{field.field}占位 * @return self */ public FreeQuery customizedByPlaceholder(String sql, Object parameter) { this.wrapperData.customizedSql(sql, parameter); return this; } /** * 完全自定义的sql * 使用此方法, Query的其它设置(select,where,order,group,limit等)将无效 * * @param sql 用户定义的完整sql语句 * @param paras sql参数, 通过sql中的'?'占位 * @return self */ public FreeQuery customizedByQuestion(String sql, Object... paras) { String placeholder = this.wrapperData.paramSql(null, sql, paras); this.wrapperData.customizedSql(placeholder, null); return this; } @Setter private DbType dbType; @Override public DbType dbType() { return dbType == null ? IRef.instance().defaultDbType() : dbType; } @Override public List<String> allFields() { throw new RuntimeException("The method is not supported by FreeQuery."); } }
[ "darui.wu@163.com" ]
darui.wu@163.com
1a1c6e06043a66cb569b01651eae5583a2bc79af
c02d4cb1059b60232a01fc566da8efe9b090c36e
/SZ/KSee/magicindicator/build/generated/source/r/debug/net/lucode/hackware/magicindicator/R.java
239a7135968e016e8f0d557c5864bafc3f5b48df
[]
no_license
Beckboy/SZ-V1.2.3
a3a97fe43c43bdbb047abf758e15ae7e39b3e1c7
e5fc8f5f6f6ab541bd24f30b17336238ada5806a
refs/heads/master
2021-08-24T00:22:05.237799
2017-12-07T07:07:05
2017-12-07T07:07:05
113,413,037
0
0
null
null
null
null
UTF-8
Java
false
false
724
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 net.lucode.hackware.magicindicator; public final class R { public static final class attr { } public static final class id { public static int fl_content=0x7f030003; public static int indicator_container=0x7f030002; public static int scroll_view=0x7f030000; public static int title_container=0x7f030001; } public static final class layout { public static int pager_navigator_layout=0x7f020000; public static int pager_navigator_layout_no_scroll=0x7f020001; } }
[ "kunjiang93@gmail.com" ]
kunjiang93@gmail.com
6e6065f510dd419c3bf00cc93c54c75a144efa05
64cfdbe357d3d2a6ecd1ec8a1f23724b8215a582
/src/main/java/com/zlkj/ssm/shop/front/entity/Orderpay.java
5287a8ed181450454e0317278e9aeb66dc8b03a3
[]
no_license
MusicXi/jeeShop7
bfac883d22fed8fc4d9f03e867d0b90f8e462e5e
5bcb6432d1d40ac11ec4661f72828123c9131432
refs/heads/master
2020-03-09T16:32:51.598538
2018-10-23T09:45:42
2018-10-23T09:45:42
128,887,670
1
3
null
null
null
null
UTF-8
Java
false
false
265
java
package com.zlkj.ssm.shop.front.entity; import java.io.Serializable; public class Orderpay extends com.zlkj.ssm.shop.entity.common.Orderpay implements Serializable { private static final long serialVersionUID = 1L; public void clear() { super.clear(); } }
[ "792331407@qq.com" ]
792331407@qq.com
4f2b96908b84b75bbc0b1edd1f340a949ba3ee4d
2cb69114487300291531355ad4249c6e87173bff
/src/EstatsMotorCotxe.java
5dc43bb891b8c7b1d969cffbabac273643c91cc7
[]
no_license
JoshuaMas/Programacion-cotxe
2916425e62849f1f38f183e4514ef87626bccd64
4688352633985e78dbfb83183d4632bed436ddac
refs/heads/master
2023-03-07T18:17:13.221371
2020-12-10T18:31:44
2020-12-10T18:31:44
320,353,484
0
0
null
null
null
null
UTF-8
Java
false
false
137
java
/* -Project: Cotxe_Joshua_Mas -Date: 04/12/2020 -Created by: Joshua Mas */ public enum EstatsMotorCotxe { EnMarxa, Aturat; }
[ "jmas@nigul.cide.es" ]
jmas@nigul.cide.es
9fb037ce3c8a9e5f0f30160bdf958ec6af81141a
a93d7e65a8eb4bac93c730e59d3a177f94a2f1a3
/cursomc/src/main/java/com/nelioalves/cursomc/filters/HeaderExposureFilter.java
d1a8a01bd191fb4e26cab8c7eb37e6ee173b5316
[]
no_license
leosena21/Java_Spring_Boot_JPA
17ae8d40db8652a8d4bad3a8be97d856ab3e3b32
b163f9af2424af9a43cf91c0c79158f658ee5ada
refs/heads/master
2023-04-16T14:45:30.493333
2020-06-02T00:21:10
2020-06-02T00:21:10
260,027,911
0
0
null
2021-04-26T20:15:22
2020-04-29T19:52:42
Java
UTF-8
Java
false
false
881
java
package com.nelioalves.cursomc.filters; import java.io.IOException; import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.FilterConfig; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; import javax.servlet.http.HttpServletResponse; import org.springframework.stereotype.Component; @Component public class HeaderExposureFilter implements Filter { @Override public void init(FilterConfig filterConfig) throws ServletException { } @Override public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { HttpServletResponse res = (HttpServletResponse) response; res.addHeader("access-control-expose-headers", "location"); chain.doFilter(request, response); } @Override public void destroy() { } }
[ "leeosena21@gmail.com" ]
leeosena21@gmail.com
ed1fb054dcfb857d4cbe3cb28056700d196fc48d
cc229b85f23fd584bd18762acc3b9759ad19e8a6
/app/src/main/java/rishabh/example/jwcapp/ebook/EbookAdapter.java
f8890fcef893c326650164002fd020f081f648c5
[]
no_license
Khushi2109/JWCApp
8d65a96300db6b998d56b57c3f8e31dfabfbe69a
b8b47b89f6dfa1c24c2bc4b62e57ba5d956453f4
refs/heads/master
2023-04-14T09:36:44.748948
2021-03-26T04:56:29
2021-03-26T04:56:29
351,663,678
0
0
null
null
null
null
UTF-8
Java
false
false
4,118
java
package rishabh.example.jwcapp.ebook; import android.content.Context; import android.content.Intent; import android.net.Uri; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.recyclerview.widget.RecyclerView; import com.google.android.gms.ads.AdListener; import com.google.android.gms.ads.AdRequest; import com.google.android.gms.ads.InterstitialAd; import java.util.ArrayList; import java.util.List; import rishabh.example.jwcapp.R; public class EbookAdapter extends RecyclerView.Adapter<EbookAdapter.EbookViewHolder> { private Context context; private List<EbookData> list; private InterstitialAd interstitialAd; public EbookAdapter(Context context, List<EbookData> list, InterstitialAd interstitialAd) { this.context = context; this.list = list; this.interstitialAd = interstitialAd; } @NonNull @Override public EbookViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) { View view = LayoutInflater.from(context).inflate(R.layout.ebook_item_layout, parent, false); return new EbookViewHolder(view); } @Override public void onBindViewHolder(@NonNull EbookViewHolder holder, final int position) { holder.ebookName.setText(list.get(position).getPDFTitle()); holder.itemView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { interstitialAd.setAdListener(new AdListener(){ @Override public void onAdClosed() { interstitialAd.loadAd(new AdRequest.Builder().build()); super.onAdClosed(); Intent intent = new Intent(context, pdfViewerActivity.class); intent.putExtra("PDFUrl", list.get(position).getPDFUrl()); context.startActivity(intent); } }); if (interstitialAd.isLoaded()){ interstitialAd.show(); return; } Intent intent = new Intent(context, pdfViewerActivity.class); intent.putExtra("PDFUrl", list.get(position).getPDFUrl()); context.startActivity(intent); } }); holder.ebook_download.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { interstitialAd.setAdListener(new AdListener(){ @Override public void onAdClosed() { interstitialAd.loadAd(new AdRequest.Builder().build()); super.onAdClosed(); Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse(list.get(position).getPDFUrl())); context.startActivity(intent); } }); if (interstitialAd.isLoaded()){ interstitialAd.show(); return; } Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse(list.get(position).getPDFUrl())); context.startActivity(intent); } }); } @Override public int getItemCount() { return list.size(); } public void FilteredList(ArrayList<EbookData> filterList) { list = filterList; notifyDataSetChanged(); } public class EbookViewHolder extends RecyclerView.ViewHolder { private TextView ebookName; private ImageView ebook_download; public EbookViewHolder(@NonNull View itemView) { super(itemView); ebookName = itemView.findViewById(R.id.ebookName); ebook_download = itemView.findViewById(R.id.ebook_download); } } }
[ "khushikri2109@gmail.com" ]
khushikri2109@gmail.com
6b4d0df4410ccac9c4a730abf519fd535c5c6058
1a367b1756cecc9755de49ce29838bfe1714b6a4
/src/com/xilinxlite/communication/CacheUnit.java
83c1664ba976db1ff497299337b8a5b182f8ff6d
[]
no_license
agunimon001/FYP_Xilinx_Lite
595792e73ffae8e00da355a58fd30310470f2df3
6ef710ffb9d90abd86640c34247a556614095384
refs/heads/master
2020-03-09T20:19:29.542008
2018-04-10T18:54:29
2018-04-10T18:54:29
128,981,524
0
0
null
null
null
null
UTF-8
Java
false
false
2,377
java
package com.xilinxlite.communication; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class CacheUnit { private Map<String, String> attributes; private List<String> files; private String topModule; private List<String> modules; private List<String> architectList; private Map<String, Map<String, String[]>> architectData; private SimulationData simulationData; public CacheUnit() { attributes = new HashMap<>(); files = new ArrayList<>(); modules = new ArrayList<>(); architectList = new ArrayList<>(); architectData = new HashMap<>(); simulationData = new SimulationData(); flush(); } public void flush() { attributes.clear(); for (XilinxAttribute attr : XilinxAttribute.values()) { attributes.put(attr.toString(), ""); } files.clear();; topModule = ""; modules.clear(); architectList.clear(); architectData.clear(); } public void setAttributes(Map<String, String> attributes) { this.attributes = attributes; } public Map<String, String> getAttributes() { return this.attributes; } public void setAttribute(XilinxAttribute attr, String value) { this.attributes.put(attr.toString(), value); } public String getAttribute(XilinxAttribute attr) { return this.attributes.get(attr.toString()); } public void setFiles(List<String> files) { this.files = files; } public void setFile(String file) { this.files.add(file); } public List<String> getFiles() { return this.files; } public void setTopModule(String topModule) { this.topModule = topModule; } public String getTopModule() { return this.topModule; } public void setModules(List<String> modules) { this.modules = modules; } public void setModule(String module) { this.modules.add(module); } public List<String> getModules() { return this.modules; } public void setArchitectList(List<String> architectList) { this.architectList = architectList; } public void setArchitectListItem(String architectListItem) { this.architectList.add(architectListItem); } public List<String> getArchitectList() { return this.architectList; } public void setArchitectData(Map<String, Map<String, String[]>> architectData) { this.architectData = architectData; } public Map<String, Map<String, String[]>> getArchitectData() { return this.architectData; } }
[ "C140149@e.ntu.edu.sg" ]
C140149@e.ntu.edu.sg
68167234d9d721eb91708626fa192c80a77729e2
becc028a8b7f49e7e96dc9cadf869433786650e1
/src/main/java/com/palawan/gradle/internal/JacksonAngularJson.java
1cc4ccdeb2398181a3a6fdbe2ed059665d8c8a3e
[ "MIT" ]
permissive
langrp/gradle-angular-plugin
a95045d0f7a995ab9458624412ed19fc259089e8
f57b7f035ad1864117bda00a23f0eeaa1f46d335
refs/heads/master
2022-03-08T14:31:59.708841
2022-02-15T07:02:25
2022-02-15T07:02:25
220,368,311
2
2
MIT
2019-12-17T09:42:40
2019-11-08T02:13:49
Java
UTF-8
Java
false
false
3,506
java
/* * Copyright (c) 2019 Petr Langr * * 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. */ package com.palawan.gradle.internal; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.node.ObjectNode; import com.palawan.gradle.dsl.AngularJson; import com.palawan.gradle.dsl.AngularJsonProject; import com.palawan.gradle.util.AngularJsonHelper; import javax.annotation.Nullable; import java.io.File; import java.util.*; /** * Implementation of {@link AngularJson} interface using Jackson parser. * * @author Langr, Petr * @since 1.0.0 */ public class JacksonAngularJson extends JsonBase implements AngularJson { private final File file; private final ObjectNode root; private Map<String, AngularJsonProject> projects; public JacksonAngularJson(File file, ObjectNode root) { this.file = file; this.root = root; this.projects = new HashMap<>(); } @Override public File getFile() { return file; } @Override public Optional<AngularJsonProject> getDefaultProject() { return getDefaultProjectName().flatMap(this::getProject); } @Override public Map<String, AngularJsonProject> getProjects() { ObjectNode projectNode = (ObjectNode) root.get("projects"); Iterator<String> names = projectNode.fieldNames(); while (names.hasNext()) { projects.computeIfAbsent(names.next(), this::loadProject); } return Collections.unmodifiableMap(projects); } @Override public void update() { AngularJsonHelper.getInstance().updateAngularJson(this); } @Override public Optional<AngularJsonProject> getProject(String name) { return Optional.ofNullable(projects.computeIfAbsent(name, this::loadProject)); } @Nullable private AngularJsonProject loadProject(String name) { return getByPath(root, "projects." + name) .map(ObjectNode.class::cast) .map(r -> new JacksonAngularJsonProject( this, r, name, file.getParentFile().toPath(), getDefaultProjectName().filter(name::equals).isPresent()) ).orElse(null); } public ObjectNode getRoot() { return root; } private Optional<String> getDefaultProjectName() { return Optional.ofNullable(root.get("defaultProject")).map(JsonNode::asText); } }
[ "petr.langr@dieboldnixdorf.com" ]
petr.langr@dieboldnixdorf.com
e681f9ebca3f37e13ca4c94935006d43f8dfc34d
e0acab2229e96ba45eef0093b1e48015a2905eea
/openjdk.test.modularity/src/common-mods/displayService/adoptopenjdk/test/modularity/display/Display.java
1de4bb27b065b94127ab2be26e643b837eb9d566
[ "Apache-2.0" ]
permissive
lasombra/openjdk-systemtest
8b361a4bc37ed452d66ccce226604146ed55e118
27eedf98c37b5c950ef3d0810aa01076284318df
refs/heads/master
2020-03-30T07:50:12.758950
2018-09-19T16:11:52
2018-09-19T16:11:52
150,969,752
0
0
Apache-2.0
2018-09-30T13:29:26
2018-09-30T13:29:26
null
UTF-8
Java
false
false
827
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 adoptopenjdk.test.modularity.display; public interface Display { public String display(); }
[ "Mesbah_Alam@ca.ibm.com" ]
Mesbah_Alam@ca.ibm.com
feed44b74e069db111be891017dc61d47b297187
8b3d66e2494fe13a7f96ad070d132daa83b2340c
/coffee-data/src/main/java/com/jovi/magic/coffee/dao/CoffeeTypeDao.java
bf7a126b18f78ab1c06595dee1edd4dcf855752e
[]
no_license
Fadedaway/project-coffee
9179024a7bbf88f032ef5cd4ddea29909137ecdb
2e04616c68e9750037c917099fee0033dbd45c1c
refs/heads/master
2020-04-26T23:06:16.752368
2019-03-08T15:15:00
2019-03-08T15:15:00
173,892,369
0
0
null
null
null
null
UTF-8
Java
false
false
336
java
package com.jovi.magic.coffee.dao; import com.jovi.magic.coffee.entity.CoffeeType; import com.jovi.magic.common.dao.BaseJpaRepository; import org.springframework.stereotype.Repository; /** * @author fanjiawei * @date Created on 2019/3/8 */ @Repository public interface CoffeeTypeDao extends BaseJpaRepository<CoffeeType, Long> { }
[ "joyce221088@163.com" ]
joyce221088@163.com
430a06903d2bdda748f687f7e1e4cb97d4561cc0
e05714233cfccf4ec2c9e571d385364a437fa3e5
/src/main/java/io/khasang/rtrail/config/WebAppInitializer.java
9061004c3a52a51004adedb1e9ed048696f60d2d
[ "MIT" ]
permissive
DNizhebortsev/rTrail
b6f36c12bb48e3b9332e246407c80e8106573938
c481661eeef8ec91194c4d96ec0c3dc80e1ec225
refs/heads/master
2020-03-18T03:10:28.606071
2018-05-21T06:32:55
2018-05-21T10:28:53
134,226,216
0
0
null
null
null
null
UTF-8
Java
false
false
599
java
package io.khasang.rtrail.config; import io.khasang.rtrail.config.application.WebConfig; import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer; public class WebAppInitializer extends AbstractAnnotationConfigDispatcherServletInitializer { @Override protected Class<?>[] getRootConfigClasses() { return new Class[]{WebConfig.class}; } @Override protected Class<?>[] getServletConfigClasses() { return null; } @Override protected String[] getServletMappings() { return new String[]{"/"}; } }
[ "dnijebortsev@mail.ru" ]
dnijebortsev@mail.ru
c7186ea1660fc1a9dfba3959caa8e5454b742a50
141e764d87def2dc87d781b36033d8ca4061dafb
/src/main/java/psa/springframework/didemo/LifeCycleDemoBean.java
28d792811ac0d7129095010cf527005b6823c8a3
[]
no_license
ps-aung/di-demo-springboot
f7ca9f970f19e31465765ddc6864282248314ad7
352d2705d7af17e241533357ef9e7bd7c5f7e3cf
refs/heads/main
2023-07-06T19:09:06.650058
2021-08-10T20:05:52
2021-08-10T20:05:52
394,763,501
0
0
null
null
null
null
UTF-8
Java
false
false
1,958
java
package psa.springframework.didemo; import org.springframework.beans.BeansException; import org.springframework.beans.factory.*; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; import org.springframework.stereotype.Component; import javax.annotation.PostConstruct; import javax.annotation.PreDestroy; /** * Created by pyaesoneaung at 08/11/2021 */ @Component public class LifeCycleDemoBean implements InitializingBean, DisposableBean, BeanNameAware, BeanFactoryAware, ApplicationContextAware { public LifeCycleDemoBean() { System.out.println("## I'm in the LifeCycleBean Constructor"); } @Override public void destroy() throws Exception { System.out.println("## The Lifecycle bean has been terminated"); } @Override public void afterPropertiesSet() throws Exception { System.out.println("## The LifeCycleBean has its properties set!"); } @Override public void setBeanFactory(BeanFactory beanFactory) throws BeansException { System.out.println("## Bean Factory has been set"); } @Override public void setBeanName(String name) { System.out.println("## My Bean Name is: " + name); } @Override public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { System.out.println("## Application context has been set"); } @PostConstruct public void postConstruct(){ System.out.println("## The Post Construct annotated method has been called"); } @PreDestroy public void preDestroy() { System.out.println("## The Predestroy annotated method has been called"); } public void beforeInit(){ System.out.println("## - Before Init - Called by Bean Post Processor"); } public void afterInit(){ System.out.println("## - After init called by Bean Post Processor"); } }
[ "pyaesoneaung.ucsy@gmail.com" ]
pyaesoneaung.ucsy@gmail.com
2b915e7b4ab13787c90efd46f84739a67c15d465
7987a676273f88e6791ad42c52044a068fb9be83
/app/src/main/java/com/cool/predictions/welcomeScreen.java
8df8d6eb0dfa63975a7c7b942df83ac2eb94f7c5
[]
no_license
abhilash-behera/CoolPredictions
603731b17bf4d2a3297400fe85a15f3a3719e0a8
da7f4034726db28dfb918529e555a369229492b4
refs/heads/master
2022-11-22T17:07:05.677158
2018-10-22T08:27:56
2018-10-22T08:27:56
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,726
java
package com.cool.predictions; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.os.Bundle; import android.os.Handler; import android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; import android.util.Log; import com.crashlytics.android.Crashlytics; import com.facebook.appevents.AppEventsLogger; import io.fabric.sdk.android.Fabric; //import com.facebook.FacebookSdk; //import com.facebook.appevents.AppEventsLogger; public class welcomeScreen extends AppCompatActivity { private static int SPLASH_TIME_OUT = 1500; //private AppEventsLogger logger; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Fabric.with(this, new Crashlytics()); setContentView(R.layout.activity_welcome_screen); getSupportActionBar().hide(); new Handler().postDelayed(new Runnable() { /* * Showing splash screen with a timer. This will be useful when you * want to show case your app logo / company */ @Override public void run() { // This method will be executed once the timer is over // Start your app main activity if(!isConnected(welcomeScreen.this)){ try{ buildDialog(welcomeScreen.this).show(); }catch(Exception e){ Log.d("awesome","Exception while opening dialog: "+e.toString()); } } else { //logger=AppEventsLogger.newLogger(welcomeScreen.this); Intent i = new Intent(welcomeScreen.this, MainActivity.class); startActivity(i); // close this activity finish(); } } }, SPLASH_TIME_OUT ); } public boolean isConnected(Context context) { ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo netinfo = cm.getActiveNetworkInfo(); if (netinfo != null && netinfo.isConnectedOrConnecting()) { NetworkInfo wifi = cm.getNetworkInfo(ConnectivityManager.TYPE_WIFI); NetworkInfo mobile = cm.getNetworkInfo(ConnectivityManager.TYPE_MOBILE); if((mobile != null && mobile.isConnectedOrConnecting()) || (wifi != null && wifi.isConnectedOrConnecting())) return true; else return false; } else return false; } public AlertDialog.Builder buildDialog(Context c) { AlertDialog.Builder builder = new AlertDialog.Builder(c); builder.setIcon(R.drawable.ic_error); builder.setTitle("No Internet Connection"); builder.setMessage("You need to have Mobile Data or wifi to access this."); builder.setPositiveButton("RETRY", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { Intent intent = getIntent(); finish(); startActivity(intent); } }); builder.setNegativeButton("EXIT", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { finish(); } }); return builder; } }
[ "abhilashbehera88@gmail.com" ]
abhilashbehera88@gmail.com
cb84003dab397d735802e1fad126bcd7b193da60
a5bb863fdd400d46b4d6e3c87686ac347f5a74d0
/gulimall-ware/src/main/java/com/cesare/gulimall/ware/entity/PurchaseEntity.java
f4a9b6b1672ab83eb0d941bd67f04de4ae58e514
[ "Apache-2.0" ]
permissive
cesareborgin/gulimall
d39df97fb2758180c13409d26d0c13866e4bdf5a
a7f00cb4dd29f11ade82f2bb06a71b04f5762568
refs/heads/main
2023-03-29T07:07:27.085847
2021-04-11T04:15:49
2021-04-11T04:15:49
353,720,780
0
0
null
null
null
null
UTF-8
Java
false
false
1,014
java
package com.cesare.gulimall.ware.entity; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.math.BigDecimal; import java.io.Serializable; import java.util.Date; import lombok.Data; /** * 采购信息 * * @author luzhengsheng * @email 1844567512@qq.com * @date 2021-04-03 14:16:25 */ @Data @TableName("wms_purchase") public class PurchaseEntity implements Serializable { private static final long serialVersionUID = 1L; /** * 采购单id */ @TableId private Long id; /** * 采购人id */ private Long assigneeId; /** * 采购人名 */ private String assigneeName; /** * 联系方式 */ private String phone; /** * 优先级 */ private Integer priority; /** * 状态 */ private Integer status; /** * 仓库id */ private Long wareId; /** * 总金额 */ private BigDecimal amount; /** * 创建日期 */ private Date createTime; /** * 更新日期 */ private Date updateTime; }
[ "1844567512@qq.com" ]
1844567512@qq.com
36b4f9309acdf31d3a17ddd4f5920062eb70ab2d
1a46b5c86e639425d4650763bee470df03cfead2
/app/src/main/java/com/example/gceklibrary/Home.java
1c2f10fd2f73f6ab23db08d248518b53709b9677
[]
no_license
csegcek/GCE_K_library
b422f3649afbab545ace391c245474388dc30cb1
82bec64bc2cb122a8dd3c624e81e6944b1281dce
refs/heads/master
2021-05-17T08:28:36.676852
2020-03-28T03:39:12
2020-03-28T03:39:12
250,708,272
0
0
null
null
null
null
UTF-8
Java
false
false
3,470
java
package com.example.gceklibrary; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.view.KeyEvent; import android.view.View; import android.widget.ArrayAdapter; import android.widget.AutoCompleteTextView; import android.widget.TextView; import android.widget.Toast; import com.google.firebase.auth.FirebaseAuth; import java.util.HashMap; public class Home extends AppCompatActivity { TextView academic, social, tech; TextView sports, arts, business; TextView profile; AutoCompleteTextView word; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_home); academic = findViewById(R.id.academicHome); social = findViewById(R.id.socialHome); tech = findViewById(R.id.techHome); sports = findViewById(R.id.sportsHome); arts = findViewById(R.id.artsHome); business = findViewById(R.id.businessHome); profile = findViewById(R.id.profileHome); word = findViewById(R.id.word); String[] strings = new String[]{"COA","PDD","OS","OOPS","EM3","LS"}; word.setAdapter(new ArrayAdapter<String>(Home.this, android.R.layout.simple_list_item_1, strings)); academic.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(Home.this, Academic.class); startActivity(intent); } }); social.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(Home.this, Social.class); startActivity(intent); } }); tech.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(Home.this, Technology.class); startActivity(intent); } }); sports.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(Home.this, Sports.class); startActivity(intent); } }); arts.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(Home.this, Arts.class); startActivity(intent); } }); business.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(Home.this, Business.class); startActivity(intent); } }); profile.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(Home.this, Profile.class); startActivity(intent); } }); } @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if ((keyCode == KeyEvent.KEYCODE_BACK)) { FirebaseAuth.getInstance().signOut(); Intent intent = new Intent(Home.this,Authentication.class); } return super.onKeyDown(keyCode, event); } }
[ "nirmal.p.jee@gmail.com" ]
nirmal.p.jee@gmail.com
45d46c1c2249f30e33167bd57669f397873ed023
d42adc6976d765662412eb7ceacfaf16f5fd5037
/src/se/kth/ssvl/tslab/wsn/general/servlib/conv_layers/InFlightBundle.java
6ddb2c8b3ebb10c17f67c71e487004fce12697bb
[]
no_license
lenaar/WSN-General
08fb1e1b9f186018ebb12a3ae0842f7f8c98d293
a0750d4bb2c8bff8bf243b6b3dcd601d8c557b0c
refs/heads/master
2021-01-16T19:51:58.397286
2012-10-19T11:36:29
2012-10-19T11:36:29
null
0
0
null
null
null
null
ISO-8859-1
Java
false
false
3,305
java
/* * This file is part of the Bytewalla Project * More information can be found at "http://www.tslab.ssvl.kth.se/csd/projects/092106/". * * Copyright 2009 Telecommunication Systems Laboratory (TSLab), Royal Institute of Technology, Sweden. * * 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 se.kth.ssvl.tslab.wsn.general.servlib.conv_layers; import se.kth.ssvl.tslab.wsn.general.servlib.bundling.blocks.BlockInfoVec; import se.kth.ssvl.tslab.wsn.general.servlib.bundling.bundles.Bundle; import se.kth.ssvl.tslab.wsn.general.systemlib.util.DataBitmap; /** * "Class used to record bundles that are in-flight along with their * transmission state and optionally acknowledgement data" [DTN2]. * * @author María José Peroza Marval (mjpm@kth.se) */ public class InFlightBundle { /** * Constructor */ public InFlightBundle(Bundle b) { bundle_ = b; total_length_ = 0; send_complete_ = false; transmit_event_posted_ = false; sent_data_ = new DataBitmap(); ack_data_ = new DataBitmap(); } /** * InflightBundle and its getter */ private Bundle bundle_; public Bundle bundle() { return bundle_; } /** * BlockInfo vector / Getter and setter */ private BlockInfoVec blocks_; public BlockInfoVec blocks() { return blocks_; } public void set_blocks(BlockInfoVec blocks) { blocks_ = blocks; } /** * Total length of the Inflight bundles, its getter and its setter */ private int total_length_; public int total_length() { return total_length_; } public void set_total_length(int totalLength) { total_length_ = totalLength; } /** * Flag for complete sending / Getter and Setter */ private boolean send_complete_; public boolean send_complete() { return send_complete_; } public void set_send_complete(boolean send_complete) { send_complete_ = send_complete; } /** * Flag for posting a transmit event/ Getter and setter */ boolean transmit_event_posted_; public boolean transmit_event_posted() { return transmit_event_posted_; } public void set_transmit_event_posted(boolean transmitEventPosted) { transmit_event_posted_ = transmitEventPosted; } /** * DataBitmap for sent data / Getter and setter */ private DataBitmap sent_data_; public DataBitmap sent_data() { return sent_data_; } public void set_sent_data(DataBitmap sentData) { sent_data_ = sentData; } /** * DataBitmap for acked data / Getter and setter */ private DataBitmap ack_data_; public DataBitmap ack_data() { return ack_data_; } public void set_ack_data(DataBitmap ackData) { ack_data_ = ackData; } }
[ "kozze89@gmail.com" ]
kozze89@gmail.com
df3d142997b9f709710d0f605399dca1be12b2a2
31d1c10c19c47b283bb55e91dd7d92219f3ee045
/questionnaire-service-provider/src/main/java/com/wxapp/questionnaire/dao/QuestionnaireDetailDao.java
c85f32f0d0cfb8fbc03ff67a4e89022c43318922
[]
no_license
orangeboyChen/advanced_questionnaire
33b8efef92fc20ce24ac61ac97b7440cdae2d8cb
419d755fa8ec32738c2701584c27e524080c46a0
refs/heads/master
2023-08-31T04:44:09.264160
2021-10-16T14:30:47
2021-10-16T14:30:47
417,230,633
0
0
null
null
null
null
UTF-8
Java
false
false
685
java
package com.wxapp.questionnaire.dao; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.wxapp.questionnaire.pojo.QuestionnaireDetail; import org.springframework.stereotype.Repository; /** * @author orangeboy * @version 1.0 * @date 2020/5/2 15:22 */ @Repository public interface QuestionnaireDetailDao extends BaseMapper<QuestionnaireDetail> { /** * 创建问卷 * @param detail 详情问卷对象 */ public void create(QuestionnaireDetail detail); /** * 获取问卷详情 * @param questionnaireId questionnaireId * @return 问卷详情对象 */ public QuestionnaireDetail getDetail(String questionnaireId); }
[ "chenenhan@LIVE.COM" ]
chenenhan@LIVE.COM
d46a5aa28f158fbaed298c4edcb02f04edf5361a
8b35e6d617eb69b5f4865bef559dcf0bbc309d76
/mo-novel-common/src/main/java/com/heng/service/CategoryService.java
169908866ff75c1228e8560dbe0645e708eee7b7
[]
no_license
workwefsdf/mo-novel
7c76313d6c9031056dfd47b8589335ac2f809516
5f4639efedb4a8e6ad33e4b2b7a9aedefcc7ad32
refs/heads/main
2023-06-12T08:05:33.750876
2021-07-11T12:51:21
2021-07-11T12:51:21
null
0
0
null
null
null
null
UTF-8
Java
false
false
279
java
package com.heng.service; import com.baomidou.mybatisplus.extension.service.IService; import com.heng.entity.Category; /** * <p> * 小说分类表 服务类 * </p> * * @author LJohn * @since 2021-04-28 */ public interface CategoryService extends IService<Category> { }
[ "1918674632@qq.com" ]
1918674632@qq.com
4351cc2f17bbbbc10fae0ac307e7334a36373afb
0275b3228d8d7d4f5d3d520e8297c2888a1943fe
/Cards/Expansions/Classic/Uncollectible/Shaman/Minions/SpiritWolf.java
8407e18a4e1f54d5117eef5f605d78a98711779a
[ "MIT" ]
permissive
nseffernick/HearthstoneProject
0e52bccc7ac61ecf082d4dbde5dd2f847d606ae3
37873d0f3fedfd3db9702830bd087e859feff38d
refs/heads/master
2021-01-22T22:23:52.274667
2018-05-14T19:06:06
2018-05-14T19:06:06
85,535,847
0
0
null
2017-08-24T02:53:07
2017-03-20T04:39:46
Java
UTF-8
Java
false
false
92
java
package Cards.Expansions.Classic.Uncollectible.Shaman.Minions; public class SpiritWolf { }
[ "nate.snick@gmail.com" ]
nate.snick@gmail.com
7853630191ec5bef5a440f9f0ea82103ddd796b5
ab112428a1b7190dfd133720a4e77436d3b64f0b
/src/main/java/com/coincap/service/PriceService.java
5bb8fc783ef2d8100f1b6542aa8d35389ddd5d3a
[]
no_license
cjafet/java-coincap
37fb0e12af7e9d87fd7757c0cd729e7f41d546cd
57d9348a0060b644632245812d525537c09378cc
refs/heads/master
2023-06-29T09:13:01.230493
2021-08-02T12:50:57
2021-08-02T12:50:57
391,945,482
0
0
null
null
null
null
UTF-8
Java
false
false
1,681
java
package com.coincap.service; import com.coincap.entity.Asset; import com.coincap.entity.Price; import com.coincap.repository.AssetsRepository; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.time.LocalDateTime; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.concurrent.CountDownLatch; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; @Service public class PriceService { @Autowired private AssetsRepository assetsRepository; private static final Logger log = LoggerFactory.getLogger(PriceService.class); private Map<String,Price[]> latestPrices = new HashMap<>(); public Map<String, Price[]> getAssetsPrice(int size, List<Asset> as) throws InterruptedException { int numberOfThreads = size; if(size==1) { numberOfThreads=1; } else{ numberOfThreads=3; } ExecutorService service = Executors.newFixedThreadPool(numberOfThreads); CountDownLatch latch = new CountDownLatch(size); for (int i = 0; i < size; i++) { int counter = i; service.execute(() -> { log.info(LocalDateTime.now().toString()); String id = as.get(counter).getId(); String _sym = as.get(counter).getSymbol(); Price[] p = assetsRepository.getPrice(id); latestPrices.put(_sym,p); latch.countDown(); }); } latch.await(); return latestPrices; } }
[ "4ffd51d1981ccbc97dee1efe6da908d01a5e50b1" ]
4ffd51d1981ccbc97dee1efe6da908d01a5e50b1
6132543aad66b198a7a5a8af561a7384c78c83c7
65d9aa555f13f2b09547d4ebaa4f01aabbd001fb
/projekt2/src/de/hexswarm/dev/school/projekt2/controlers/MyDBWorker.java
7e0434c35940febe7361dbeadc5a33d79f78fe24
[ "MIT" ]
permissive
samuel-hxs/Projekt2
8c7392056b64c87038073289e6f9241029ee9a7c
74d12b36ecfe18248b547819a430bce8940624f3
refs/heads/master
2021-05-01T08:40:45.266865
2018-05-19T13:19:31
2018-05-19T13:19:31
121,171,842
0
0
null
null
null
null
UTF-8
Java
false
false
2,433
java
package de.hexswarm.dev.school.projekt2.controlers; import java.sql.ResultSet; import java.sql.ResultSetMetaData; import java.util.List; import java.util.concurrent.ExecutionException; import javax.swing.JTable; import javax.swing.SwingWorker; import javax.swing.table.DefaultTableModel; // https://stackoverflow.com/questions/9564266/how-to-stop-a-swingworker public class MyDBWorker extends SwingWorker<Void, Object[]> { private JTable table; private DefaultTableModel model; private ResultSet resultado; public MyDBWorker(JTable table, ResultSet resultado) { this.table = table; this.resultado = resultado; } @Override protected Void doInBackground() throws Exception { ResultSetMetaData metadata = resultado.getMetaData(); int columnas = metadata.getColumnCount(); Object[] etiquetas = new Object[columnas]; for (int i = 0; i < columnas; i++) { etiquetas[i] = metadata.getColumnName(i + 1); } publish(etiquetas); while (resultado.next() && !this.isCancelled()) { Object fila[] = new Object[columnas]; for (int i = 0; i < columnas; i++) { fila[i] = resultado.getObject(i + 1); } publish(fila); } return null; } @Override protected void process(List<Object[]> chunks) { int startIndex = 0; // first chunk, set up a new model if (model == null) { model = new DefaultTableModel(); model.setColumnIdentifiers(chunks.get(0)); table.setModel(model); startIndex = 1; } for (int i = startIndex; i < chunks.size(); i++) { model.addRow(chunks.get(i)); } } @Override protected void done() { // nothing to do, we were cancelled if (isCancelled()) return; // check for errors thrown in doInBackground try { get(); // all was well in the background thread // check if there are any results if (table.getModel().getRowCount() == 0) { // show message } } catch (ExecutionException e) { // we get here if f.i. an SQLException is thrown // handle it as appropriate, f.i. inform user/logging system } catch (InterruptedException e) { // } } }
[ "samuel.traue@gmail.com" ]
samuel.traue@gmail.com
73abe15c1b941e21b72617bd2d133ebd9e63a8e7
d08c3b3350704b068012be4251eaff2318c1d5d2
/GarageEx1/src/test/java/com/qa/main/RunnerTest.java
1a3d2fe4d8c1c1a314a8d9574b24c6fa3db8eecb
[]
no_license
lsgarwood/dfesworki
4a1183e82634999d3fba9cdcace85028a0592743
af975152a69f48e2d5f6e1b22e8d439583e403bc
refs/heads/main
2023-08-23T04:24:28.920716
2021-11-04T08:18:02
2021-11-04T08:18:02
418,913,251
0
0
null
null
null
null
UTF-8
Java
false
false
174
java
package com.qa.main; import static org.junit.Assert.*; import org.junit.Test; public class RunnerTest { @Test public void test() { fail("Not yet implemented"); } }
[ "ls_garwood@yahoo.co.uk" ]
ls_garwood@yahoo.co.uk
c10dd4590e302d139ad6a169d4eed1ed3281c81c
136c7bf70c8285f4238bae326848f2be47babcda
/src/main/java/com/vehicleRental/services/Impl/UserServiceImpl.java
9b5be07d5f906b9f843dda796096f519be712adb
[]
no_license
Vulombe/Backend-CarRental
9c7f8472cfa4dfec0ad4669de6912306a5a8df3c
1318c17aff3f4e3f022663970be07b0f3ca0752b
refs/heads/master
2021-07-24T11:12:08.610209
2017-10-29T18:38:40
2017-10-29T18:38:40
108,604,285
0
0
null
2017-10-29T14:09:19
2017-10-27T23:21:27
Java
UTF-8
Java
false
false
961
java
package com.vehicleRental.services.Impl; import com.vehicleRental.domain.User; import com.vehicleRental.repositories.UserRepository; import com.vehicleRental.services.UserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; /** * Created by fatimam on 28/10/2017. */ @Component public class UserServiceImpl implements UserService { @Autowired UserRepository userRepository; @Override public User create(User user) { return userRepository.save(user); } @Override public User read(long userID) { return userRepository.findOne(userID); } @Override public User update(User user) { return userRepository.save(user); } @Override public void delete(long userID) { userRepository.delete(userID); } @Override public Iterable<User> findAllUsers() { return userRepository.findAll(); } }
[ "mogamatjacobs@gmail.com" ]
mogamatjacobs@gmail.com
bda7fcc7614b161e48cf5d3fa8f2aecc5a857bd2
39e291584ccf7c74859be066bcc2107911fddd00
/app/src/main/java/com/social/joanlouji/chatblo/MessageAdapter.java
0afaaa219512285a35a77ec9a422e4145a4f9615
[]
no_license
yogitadheeraj/networkmeo
34b39843422a18da3950c18e99d9b2f9ab794594
6cc7c60c9d52d85771d2c5cf5fad7822cc9699d1
refs/heads/master
2022-12-01T16:43:38.038748
2020-08-11T21:27:35
2020-08-11T21:27:35
286,745,651
2
0
null
null
null
null
UTF-8
Java
false
false
3,590
java
package com.awesomeproject; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import com.google.firebase.auth.FirebaseAuth; import com.google.firebase.database.DataSnapshot; import com.google.firebase.database.DatabaseError; import com.google.firebase.database.DatabaseReference; import com.google.firebase.database.FirebaseDatabase; import com.google.firebase.database.ValueEventListener; import com.squareup.picasso.Picasso; import java.util.List; import de.hdodenhof.circleimageview.CircleImageView; /** * Created by AkshayeJH on 24/07/17. */ public class MessageAdapter extends RecyclerView.Adapter<MessageAdapter.MessageViewHolder>{ private List<Messages> mMessageList; private DatabaseReference mUserDatabase; public MessageAdapter(List<Messages> mMessageList) { this.mMessageList = mMessageList; } View v; Messages c; @Override public MessageViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { v = LayoutInflater.from(parent.getContext()) .inflate(R.layout.message_single_layout ,parent, false); return new MessageViewHolder(v); } String from_user; String message_type; String userid=FirebaseAuth.getInstance().getUid(); public class MessageViewHolder extends RecyclerView.ViewHolder { public TextView messageText; public CircleImageView profileImage; public TextView displayName; public ImageView messageImage; public MessageViewHolder(View view) { super(view); messageText = (TextView) view.findViewById(R.id.message_text_layout); profileImage = (CircleImageView) view.findViewById(R.id.message_profile_layout); displayName = (TextView) view.findViewById(R.id.name_text_layout); messageImage = (ImageView) view.findViewById(R.id.message_image_layout); } } @Override public void onBindViewHolder(final MessageViewHolder viewHolder, int i) { c = mMessageList.get(i); from_user = c.getFrom(); message_type = c.getType(); mUserDatabase = FirebaseDatabase.getInstance().getReference().child("Users").child(from_user); mUserDatabase.addValueEventListener(new ValueEventListener() { @Override public void onDataChange(DataSnapshot dataSnapshot) { String name = dataSnapshot.child("name").getValue().toString(); String image = dataSnapshot.child("image").getValue().toString(); viewHolder.displayName.setText(name); Picasso.with(viewHolder.profileImage.getContext()).load(image) .placeholder(R.drawable.default_avatar).into(viewHolder.profileImage); } @Override public void onCancelled(DatabaseError databaseError) { } }); if(message_type.equals("text")) { viewHolder.messageText.setText(c.getMessage()); viewHolder.messageImage.setVisibility(View.INVISIBLE); } else { viewHolder.messageText.setVisibility(View.INVISIBLE); Picasso.with(viewHolder.profileImage.getContext()).load(c.getMessage()) .placeholder(R.drawable.default_avatar).into(viewHolder.messageImage); } } @Override public int getItemCount() { return mMessageList.size(); } }
[ "Dheeraj.varshney@mail.com" ]
Dheeraj.varshney@mail.com
817ec0159158da7443bc75e47c2a87ed4c7ceb7c
5af2a1268e448b0e0159d34ce52164d09b4330bc
/src/main/java/com/example/demo/authentication/User.java
89af43464714d4fe37da452dc9647266bd127f2f
[]
no_license
Pugde5/DemoRestTemplate
560ebfb4d09c3692382ad95f8ee5507dd21f1128
ee530e04bb3271b9bd390294775b7c3db997a4cc
refs/heads/main
2023-07-13T01:14:59.704256
2021-08-25T12:46:45
2021-08-25T12:46:45
399,814,233
0
0
null
null
null
null
UTF-8
Java
false
false
572
java
package com.example.demo.authentication; public class User { private String username; private String password; public User() { //empty and we know it. Sonar... } public User(String username,String password){ this.username = username; this.password = password; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } }
[ "cleverley_c@yahoo.com" ]
cleverley_c@yahoo.com
eac5106a6a5013adfb36facb9ddce86d42a28969
24861f9522c23e353bcff278dbae1f4ca340ddef
/app/src/main/java/com/ttuicube/dibzitapp/screens/search/SearchPresenter.java
b4043e54b9b6dab6a303e629b053bb5706cc5585
[]
no_license
Zeejfps/Dibzit-Android
4fc7a86d1e8870782d96a196d3591b86b1534298
8efddf2cdebb96101ef8be9feeb8183af52d83df
refs/heads/master
2021-07-20T14:04:20.638487
2017-10-28T22:42:49
2017-10-28T22:42:49
106,624,466
1
0
null
null
null
null
UTF-8
Java
false
false
1,756
java
package com.ttuicube.dibzitapp.screens.search; import com.ttuicube.dibzitapp.repos.Repository; import com.ttuicube.dibzitapp.utils.Presenter; import org.joda.time.DateTime; /** * Created by zeejfps on 10/26/17. */ public class SearchPresenter implements Presenter<SearchView> { private SearchView mView; private final Repository repo; private boolean searching; public SearchPresenter(Repository repo) { this.repo = repo; } @Override public void onViewAttached(SearchView view) { mView = view; mView.updateDateTime(repo.getSearchDateTime()); mView.updateDuration(repo.getReservationDuration()); if (searching) { mView.displaySearchingDialog(); } else { mView.hideSearchingDialog(); } } public void doSearchButtonClicked() { searching = true; mView.displaySearchingDialog(); repo.fetchTimeSlots(repo.getSearchDateTime(), repo.getReservationDuration(), timeSlots -> { searching = false; if (mView != null) { mView.startTimeSlotsActivity(timeSlots); } }); } public void doChooseDateButtonClicked() { mView.showDatePickerDialog(repo.getSearchDateTime()); } public void setReservationDuration(int duration) { repo.setReservationDuration(duration); mView.updateDuration(repo.getReservationDuration()); } public void setReservationDateTime(DateTime dateTime) { repo.setSearchDateTime(dateTime); mView.updateDateTime(repo.getSearchDateTime()); } @Override public void onViewDetached() { mView = null; } @Override public void onDestroyed() {} }
[ "zeejfps@gmail.com" ]
zeejfps@gmail.com
74646902e9c225e979e20e9a5040c6a8dc8d45b5
40ed3bbd23a719e124ac1d949ae2d1bc3f0ce57b
/app/src/main/java/com/psi/androidhttpclient/base/BaseView.java
977bd302f1568c41adceaefbaa2864f7ac86d77c
[]
no_license
474843468/AndroidHttpClient
da985bf1db35da986e7b0fd00d1ceead9c3632dc
3f14f0cc7c82181cf955368ec29f90b2641694e6
refs/heads/master
2021-01-18T18:52:28.411880
2017-06-04T06:50:32
2017-06-04T06:50:41
86,875,297
0
2
null
null
null
null
UTF-8
Java
false
false
203
java
package com.psi.androidhttpclient.base; /** * Created by codeest on 2016/8/2. * View基类 */ public interface BaseView { void showError(String msg); void useNightMode(boolean isNight); }
[ "123456789" ]
123456789
f71b6745fde0bde2b103b3e529d498cdfceab459
34d9d1dbd41b2781f5d1839367942728ee199c2c
/MTSA/ltsa/src/lts/MyHashStack.java
5120cdba48aabc27d1f4d03d09390b167baab171
[]
no_license
Intrinsarc/intrinsarc-evolve
4808c0698776252ac07bfb5ed2afddbc087d5e21
4492433668893500ebc78045b6be24f8b3725feb
refs/heads/master
2020-05-23T08:14:14.532184
2015-09-08T23:07:35
2015-09-08T23:07:35
70,294,516
1
1
null
null
null
null
UTF-8
Java
false
false
2,591
java
package lts; /* MyHash is a speciallized Hashtable/Stack for the composition in the analyser * it includes a stack structure through the hash table entries * -- assumes no attempt to input duplicate key * */ class MyHashStackEntry { byte[] key; int stateNumber; boolean marked; MyHashStackEntry next; // for linking buckets in hash table MyHashStackEntry link; // for queue linked list MyHashStackEntry(byte[] l) { key = l; stateNumber = -1; next = null; link = null; marked = false; } MyHashStackEntry(byte[] l, int n) { key = l; stateNumber = n; next = null; link = null; marked = false; } } public class MyHashStack implements StackCheck { private MyHashStackEntry[] table; private int count = 0; private int depth = 0; private MyHashStackEntry head = null; public MyHashStack(int size) { table = new MyHashStackEntry[size]; } public void pushPut(byte[] key) { MyHashStackEntry entry = new MyHashStackEntry(key); // insert in hash table int hash = StateCodec.hash(key) % table.length; entry.next = table[hash]; table[hash] = entry; ++count; // insert in stack entry.link = head; head = entry; ++depth; } public void pop() { // remove from head of queue if (head == null) return; head.marked = false; head = head.link; --depth; } public byte[] peek() { // remove from head of queue return head.key; } public void mark(int id) { head.marked = true; head.stateNumber = id; } public boolean marked() { return head.marked; } public boolean empty() { return head == null; } public boolean containsKey(byte[] key) { int hash = StateCodec.hash(key) % table.length; MyHashStackEntry entry = table[hash]; while (entry != null) { if (StateCodec.equals(entry.key, key)) return true; entry = entry.next; } return false; } public boolean onStack(byte[] key) { int hash = StateCodec.hash(key) % table.length; MyHashStackEntry entry = table[hash]; while (entry != null) { if (StateCodec.equals(entry.key, key)) return entry.marked; entry = entry.next; } return false; } public int get(byte[] key) { int hash = StateCodec.hash(key) % table.length; MyHashStackEntry entry = table[hash]; while (entry != null) { if (StateCodec.equals(entry.key, key)) return entry.stateNumber; entry = entry.next; } return -99999; } public int size() { return count; } public int getDepth() { return depth; } }
[ "devnull@localhost" ]
devnull@localhost
1b5e975121a30c0f13be581be849b6dc405790e3
f087e16a092401f950610400a4a1bf3bc3e482c1
/src/exam/ex05/NumGame.java
b2cc845eff4075b3ffa576fd6cd2c2803bc06bb3
[]
no_license
junyoungkwon/java-study
4ae1e0c0c9475c566fbe942e0a94b772da951b36
b8b931ba2134c4386092590e23769ffb001faa91
refs/heads/master
2020-04-22T13:51:31.103195
2019-03-21T00:50:03
2019-03-21T00:50:03
170,424,009
0
0
null
null
null
null
UTF-8
Java
false
false
569
java
package exam.ex05; import java.util.ArrayList; import java.util.Scanner; public class NumGame { public static ArrayList<Integer> makeNums() { ArrayList<Integer> numsList = new ArrayList<>(); for (int i = 0; i < 3; i++) { int num = (int) (Math.random() * 100) + 1; numsList.add(num); } return numsList; } public static void main(String[] args) { Scanner scan = new Scanner(System.in); ArrayList<Integer> numList = makeNums(); for (int i = 0; i < numList.size(); i++) { System.out.println(numList.get(i)); } } }
[ "junyoungkwon@hotmail.com" ]
junyoungkwon@hotmail.com
e4a37fde20ce2d5bf8c5dc94693d8c827d44bd24
fc249fdee1cf8faa8bda0c593f44e5a781485d33
/app/src/main/java/com/clicktech/snsktv/module_enter/ui/activity/ProtocolActivity.java
0df3b72b3bccdd2c68ac228f7d1ba96965558fd0
[]
no_license
WooYu/Karaok
320fbcc7d97904d8b20c352b4ffb9cb31bf55482
42120b10d4f5039307348976b508ccc89ff0f40b
refs/heads/master
2020-04-08T11:30:29.288269
2018-11-27T09:28:22
2018-11-27T09:28:22
159,308,447
0
0
null
null
null
null
UTF-8
Java
false
false
1,732
java
package com.clicktech.snsktv.module_enter.ui.activity; import android.app.Activity; import android.os.Bundle; import android.webkit.WebSettings; import android.webkit.WebView; import android.webkit.WebViewClient; import com.clicktech.snsktv.BuildConfig; import com.clicktech.snsktv.R; import com.clicktech.snsktv.widget.titlebar.HeaderView; import com.jaeger.library.StatusBarUtil; import butterknife.BindView; import butterknife.ButterKnife; public class ProtocolActivity extends Activity implements HeaderView.OnCustomTileListener { @BindView(R.id.headerview) HeaderView headerview; @BindView(R.id.webview) WebView webview; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_protocol); ButterKnife.bind(this); StatusBarUtil.setColor(this, getResources().getColor(R.color.statusbar_color), 0); initData(); } private void initData() { headerview.setTitleClickListener(this); webview.loadUrl(BuildConfig.LINK_PROTOCOL); webview.setWebViewClient(new WebViewClient() { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { view.loadUrl(url); return true; } }); webview.getSettings().setJavaScriptEnabled(true); webview.getSettings().setAppCacheEnabled(true); webview.getSettings().setCacheMode(WebSettings.LOAD_DEFAULT); webview.getSettings().setDomStorageEnabled(true); } @Override public void setTitleLeftClick() { finish(); } @Override public void setTitleRightClick() { } }
[ "wuyu@lcworld-inc.com" ]
wuyu@lcworld-inc.com
189c81a3ca3752ccea77952cd865c00975640140
bc4d39bec28c2077aa0e800344ea3f0f37cd1658
/src/clearcontrol/microscope/lightsheet/component/detection/DetectionArmQueue.java
a90b21b83dffdb04fbb78b17017ddb4de098973d
[]
no_license
uschmidt83/ClearControl
9be28db75c2fb8eec02aa733170f0bd5add08e83
70d12c7f20d0a03b5cd861a3c1a400f7b05adafb
refs/heads/master
2021-01-21T17:38:24.274310
2017-04-25T11:26:35
2017-04-25T11:26:35
91,973,671
0
0
null
2017-05-21T17:03:34
2017-05-21T17:03:34
null
UTF-8
Java
false
false
1,757
java
package clearcontrol.microscope.lightsheet.component.detection; import clearcontrol.core.device.queue.QueueInterface; import clearcontrol.core.device.queue.VariableQueueBase; import clearcontrol.core.log.LoggingInterface; import clearcontrol.core.variable.bounded.BoundedVariable; /** * Light sheet microscope detection arm * * @author royer */ public class DetectionArmQueue extends VariableQueueBase implements QueueInterface, LoggingInterface { private DetectionArm mDetectionArm; private final BoundedVariable<Number> mDetectionFocusZ = new BoundedVariable<Number>("FocusZ", 0.0); /** * Instanciates detection arm queue * * @param pDetectionArm * parent detection arm */ public DetectionArmQueue(DetectionArm pDetectionArm) { super(); mDetectionArm = pDetectionArm; registerVariable(mDetectionFocusZ); } /** * Instanciates a new queue by copying the given queue current state. * * @param pTemplateQueue * template queue to copy (without history) */ public DetectionArmQueue(DetectionArmQueue pTemplateQueue) { this(pTemplateQueue.getDetectionArm()); mDetectionFocusZ.set(pTemplateQueue.getZVariable()); } /** * Returns parent detection arm * * @return parent detection arm */ public DetectionArm getDetectionArm() { return mDetectionArm; } /** * Returns the detection plane Z position variable * * @return Z variable */ public BoundedVariable<Number> getZVariable() { return mDetectionFocusZ; } }
[ "royerloic@gmail.com" ]
royerloic@gmail.com
16c9f077b7c328108c563446a6b8bdf7ea1fbede
baf2ff6f53edde18ddfc4a86833f63b77cb536bf
/src/main/java/com/austinv11/mr/impl/jdk/JdkWithinRangeOperator.java
37c450dd09561ad64786b55d3e0c020806466ad5
[]
no_license
austinv11/MapReact
81d3f635ca10193b6cf63507f171a7b06c19d0cb
365e37bc15099225897d153e526afa333b032d33
refs/heads/master
2020-04-15T19:21:26.159668
2019-03-11T02:02:55
2019-03-11T02:02:55
164,946,917
0
0
null
null
null
null
UTF-8
Java
false
false
1,127
java
package com.austinv11.mr.impl.jdk; import com.austinv11.mr.api.operators.WithinRangeOperator; import com.austinv11.mr.util.WithinRangePredicate; import javax.annotation.Nullable; import java.util.function.Predicate; public class JdkWithinRangeOperator<K extends Comparable<K>, T> extends WithinRangeOperator<JdkWithinRangeOperator<K, T>, K, T, JdkDataStream<K, T>> { private final Predicate<K> predicate; public JdkWithinRangeOperator(@Nullable K lower, @Nullable K upper, boolean exclusive, boolean flip) { this(new WithinRangePredicate<>(lower, upper, exclusive), flip); } private JdkWithinRangeOperator(Predicate<K> predicate, boolean flip) { this.predicate = flip ? predicate.negate() : predicate; } @Override public JdkWithinRangeOperator<K, T> not() { return new JdkWithinRangeOperator<>(predicate, true); } @Override public JdkDataStream<K, T> map(JdkDataStream<K, T> dataStream) { return new JdkDataStream<>(dataStream.dsp, dataStream.rootType, dataStream.remaining.filter(t -> predicate.test(t.getT1()))); } }
[ "austinv11@gmail.com" ]
austinv11@gmail.com
6eb3e3f660fa7157946048f2d650a3f9cdc81342
fba52910f6b0e9901814f09f0dfec96544e73bb8
/autumn-pay-utils/src/main/java/com/autumn/pay/utils/RefObject.java
7f103eaad20140fb7343de3a6ceff15a4cdb0680
[]
no_license
yangmbin/autumn-pay
8b4d20f3e580b2a0d43f949fcb22eab557e1498a
c084a78aacc444f63f939c0c829e5fb1b4c7195c
refs/heads/master
2020-03-22T09:07:43.054065
2018-07-25T06:48:44
2018-07-25T06:48:44
139,817,011
0
0
null
null
null
null
UTF-8
Java
false
false
559
java
package com.autumn.pay.utils; //---------------------------------------------------------------------------------------- // Copyright ? 2006 - 2010 Tangible Software Solutions Inc. // This class can be used by anyone provided that the copyright notice remains intact. // // This class is used to simulate the ability to pass arguments by reference in Java. //---------------------------------------------------------------------------------------- public final class RefObject<T> { public T argvalue; public RefObject(T refarg) { argvalue = refarg; } }
[ "1057207798@qq.com" ]
1057207798@qq.com
d7fe6040474291f28c3c5e0678e6bcf1632b26b5
9154a60e4df56d5088358dc2b967bbebe0fc52f4
/asyncmockwebserver/src/main/java/com/mosn/asyncmockwebserver/AsyncMockWebServerListener.java
6f195e530dbde9c72a60b8cdd9ae869e369816b6
[ "Apache-2.0" ]
permissive
msoftware/AsyncMockWebServer
44f3d2c8c93868c586afd0a6923c5202feeca0b1
122904ae0f9f35111b6ea9be36185dd7bb7a6d2f
refs/heads/master
2021-01-18T07:19:58.559668
2015-09-02T03:48:47
2015-09-02T03:48:47
41,856,265
1
1
null
2015-09-03T11:27:28
2015-09-03T11:27:28
null
UTF-8
Java
false
false
145
java
package com.mosn.asyncmockwebserver; public interface AsyncMockWebServerListener { void onStarted(String endpoint); void onStopped(); }
[ "syogo330@gmail.com" ]
syogo330@gmail.com
b7c28c470e0b3f1297146e1bf80b2ea27c61c7d3
228d669cd0f377c025ab116fe3431e62c746c795
/src/main/java/com/example/sd2020/demo/repository/AdminRepo.java
aed6fd7c4ec6bd37feb43406ecc636506ab94056
[]
no_license
MartinDarius/Proiect_PS
08fb21d6453c05613f4a624efa40d12bfb12e1a1
57a36ad93993c224894c5e4611f4c2dff53cdb32
refs/heads/master
2022-07-13T21:42:51.642422
2020-05-25T00:42:09
2020-05-25T00:42:09
246,600,399
0
0
null
2022-02-10T03:10:59
2020-03-11T14:56:18
Java
UTF-8
Java
false
false
2,392
java
package com.example.sd2020.demo.repository; import com.example.sd2020.demo.entity.Admin; import javax.persistence.EntityManager; import javax.persistence.EntityManagerFactory; import javax.persistence.Persistence; import javax.persistence.Query; import java.util.ArrayList; import java.util.List; public class AdminRepo { private EntityManagerFactory entityManagerFactory = Persistence.createEntityManagerFactory("proiectPS"); public void insert(Admin admin) { EntityManager entityManager = entityManagerFactory.createEntityManager(); entityManager.getTransaction().begin(); entityManager.merge(admin); entityManager.getTransaction().commit(); entityManager.close(); } public Admin findById(String sId) { EntityManager entityManager = entityManagerFactory.createEntityManager(); entityManager.getTransaction().begin(); int id=Integer.parseInt(sId); Admin admin = entityManager.find(Admin.class, id); entityManager.getTransaction().commit(); entityManager.close(); return admin; } public ArrayList<Admin> findAll() { EntityManager entityManager = entityManagerFactory.createEntityManager(); entityManager.getTransaction().begin(); Query query=entityManager.createQuery("SELECT p FROM Admin p"); entityManager.getTransaction().commit(); // entityManager.close(); return (ArrayList<Admin>) query.getResultList(); } public void delete(Admin admin) { EntityManager entityManager = entityManagerFactory.createEntityManager(); entityManager.getTransaction().begin(); entityManager.remove(entityManager.contains(admin) ? admin : entityManager.merge(admin)); entityManager.getTransaction().commit(); entityManager.close(); } public List<Admin> findByEmail(String email){ EntityManager entityManager = entityManagerFactory.createEntityManager(); entityManager.getTransaction().begin(); Query query=entityManager.createQuery("SELECT cl FROM Admin cl WHERE cl.email=?1"); //Client client = entityManager.find(Client.class, email); query.setParameter(1,email); List<Admin> lista=query.getResultList(); //entityManager.getTransaction().commit(); entityManager.close(); return lista; } }
[ "martin.darius1998@yahoo.com" ]
martin.darius1998@yahoo.com
e2e17e742cc2be50971e7b82b4202be0a7272fc2
2b6fd738b31a5fc8d825bb9c53b87d2d3bec82f7
/app/src/main/java/com/example/cholmink/tiptour_login/ApplicationController.java
06edbfeb03860f5f3af7df663b0ff5a6aeba97a7
[]
no_license
TipTour/Android_client
2cf252def0199b50324aa041bd9d8f0e2d24eb52
28769fd1e5a9048a68822421b03a7950e871b752
refs/heads/master
2020-07-05T17:12:22.358150
2016-11-20T01:39:26
2016-11-20T01:39:26
73,989,047
0
0
null
2016-11-18T08:15:23
2016-11-17T04:05:45
Java
UTF-8
Java
false
false
3,109
java
package com.example.cholmink.tiptour_login; import android.app.Application; import android.util.Log; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import retrofit2.Retrofit; import retrofit2.converter.gson.GsonConverterFactory; public class ApplicationController extends Application { /** * Application 클래스를 상속받은 ApplicationController 객체는 어플리케이션에서 단 하나만 존재해야 합니다. * 따라서 내부에 ApplicationController 형의 instance를 만들어준 후 * getter를 통해 자신의 instance를 가져오는 겁니다. */ public int user_id; private static ApplicationController instance; public static ApplicationController getInstance() { return instance; } //통신할 서버의 주소입니다. 클라이언트는 이 주소에 query 또는 path 등을 추가하여 요청합니다. final String baseUrl = "http://54.245.4.237:3000"; //NetworkService도 마찬가지로 Application을 상속받은 ApplicationController 내에서 관리해주는 것이 좋습니다. private NetworkService networkService; public NetworkService getNetworkService() { return networkService; } @Override public void onCreate() { super.onCreate(); /** * 어플이 실행되자마자 ApplicationController가 실행됩니다. * 자신의 instance를 생성하고 networkService를 만들어줍니다. */ Log.i("MyTag", "가장 먼저 실행"); ApplicationController.instance = this; this.buildService(); } private void buildService(){ synchronized (ApplicationController.class) { { /** * 이제 NetworkService를 만들어줘야 합니다. * 위에서 작성했던 코드들이 이미 있던 요청에 무언가를 바꿔주는 것이라면 * 지금 작성하는 코드는 Retrofit 객체를 사용하여 통신을 위해 필요한 * NetworkService를 만드는 과정입니다. * baseUrl이 있어야 하고, JSON으로 받아온 데이터를 객체로 변환해주는 GsonConverterFactory가 필요합니다. * 위에서 만든 interceptor는 client 객체의 메소드였죠? 따라서 위에서 만든 client를 해당 네트워크의 클라이언트로 설정합니다. */ Gson gson = new GsonBuilder() .setDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'") .create(); GsonConverterFactory factory = GsonConverterFactory.create(gson); Retrofit retrofit = new Retrofit.Builder() .baseUrl(baseUrl) .addConverterFactory(factory) .build(); //retrofit.create(NetworkService.class)를 통해 새로운 NetworkService를 만들어줍니다. networkService = retrofit.create(NetworkService.class); } } } }
[ "kcholmin@gmail.com" ]
kcholmin@gmail.com
d0b6f9ebc29739d594978ffa851c06af5e0a41de
2cbeb69946357546a575ce20d176dc2e94ceef4c
/my_flink_code/flink-runtime/src/main/java/org/apache/flink/runtime/io/disk/iomanager/FileIOChannel.java
f6003453ec6963ec46fd6385d3bf05b0b1291b77
[]
no_license
DM-Pretender-Team/Flink-source-code-analysis
9236bc27d46498ecf66f2884dca976227091357a
08dc28cdb411be00b116ac51040fdcc0ed0c8694
refs/heads/master
2020-04-10T08:04:52.372153
2018-12-12T08:11:25
2018-12-12T08:11:25
160,896,987
0
1
null
null
null
null
UTF-8
Java
false
false
5,481
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.flink.runtime.io.disk.iomanager; import java.io.File; import java.io.IOException; import java.nio.channels.FileChannel; import java.util.Random; import java.util.concurrent.atomic.AtomicInteger; import org.apache.flink.util.StringUtils; /** * Channel表示逻辑上属于同一资源的文件集合。 * 一个例子是文件集合,其中包含来自相同流的数据排序运行,稍后将合并在一起。 * A Channel represents a collection of files that belong logically to the same resource. An example is a collection of * files that contain sorted runs of data from the same stream, that will later on be merged together. */ public interface FileIOChannel { /** * Gets the channel ID of this I/O channel. * * @return The channel ID. */ FileIOChannel.ID getChannelID(); /** * Gets the size (in bytes) of the file underlying the channel. * * @return The size (in bytes) of the file underlying the channel. */ long getSize() throws IOException; /** * Checks whether the channel has been closed. * * @return True if the channel has been closed, false otherwise. */ boolean isClosed(); /** * Closes the channel. For asynchronous implementations, this method waits until all pending requests are * handled. Even if an exception interrupts the closing, the underlying <tt>FileChannel</tt> is closed. * * @throws IOException Thrown, if an error occurred while waiting for pending requests. */ void close() throws IOException; /** * Deletes the file underlying this I/O channel. * * @throws IllegalStateException Thrown, when the channel is still open. */ void deleteChannel(); /** * Closes the channel and deletes the underlying file. * For asynchronous implementations, this method waits until all pending requests are handled; * * @throws IOException Thrown, if an error occurred while waiting for pending requests. */ public void closeAndDelete() throws IOException; FileChannel getNioFileChannel(); // -------------------------------------------------------------------------------------------- // -------------------------------------------------------------------------------------------- /** * An ID identifying an underlying file channel. */ public static class ID { private static final int RANDOM_BYTES_LENGTH = 16; private final File path; private final int threadNum; protected ID(File path, int threadNum) { this.path = path; this.threadNum = threadNum; } protected ID(File basePath, int threadNum, Random random) { this.path = new File(basePath, randomString(random) + ".channel"); this.threadNum = threadNum; } /** * Returns the path to the underlying temporary file. * @return The path to the underlying temporary file.. */ public String getPath() { return path.getAbsolutePath(); } /** * Returns the path to the underlying temporary file as a File. * @return The path to the underlying temporary file as a File. */ public File getPathFile() { return path; } int getThreadNum() { return this.threadNum; } @Override public boolean equals(Object obj) { if (obj instanceof ID) { ID other = (ID) obj; return this.path.equals(other.path) && this.threadNum == other.threadNum; } else { return false; } } @Override public int hashCode() { return path.hashCode(); } @Override public String toString() { return path.getAbsolutePath(); } private static String randomString(Random random) { byte[] bytes = new byte[RANDOM_BYTES_LENGTH]; random.nextBytes(bytes); return StringUtils.byteToHexString(bytes); } } /** * 逻辑上属于同一个信道的枚举器。 * An enumerator for channels that logically belong together. */ public static final class Enumerator { private static AtomicInteger globalCounter = new AtomicInteger(); private final File[] paths; private final String namePrefix; private int localCounter; protected Enumerator(File[] basePaths, Random random) { this.paths = basePaths; this.namePrefix = ID.randomString(random); this.localCounter = 0; } public ID next() { // The local counter is used to increment file names while the global counter is used // for indexing the directory and associated read and write threads. This performs a // round-robin among all spilling operators and avoids I/O bunching. int threadNum = globalCounter.getAndIncrement() % paths.length; String filename = String.format("%s.%06d.channel", namePrefix, (localCounter++)); return new ID(new File(paths[threadNum], filename), threadNum); } } }
[ "1271227714@qq.com" ]
1271227714@qq.com
4f2695e3f832e7ce34c8b726515259018312ac14
f1413ad14709bc8ffee2001c2a2190334d7c6fbe
/app/src/main/java/com/example/amritha/sunshine/app/SettingsActivity.java
5f2193f25bcbecee0350b2ada763630c603c6a14
[]
no_license
amritharam/WeatherApp
0342f8c43fb946735bea49141d6dacaae0ed9f6f
acdaaf18ed0d6107b7a7bfb75f7671fa170ef438
refs/heads/master
2021-01-01T19:01:47.098765
2015-06-12T14:47:23
2015-06-12T14:47:23
35,877,032
0
0
null
null
null
null
UTF-8
Java
false
false
3,179
java
package com.example.amritha.sunshine.app; import android.annotation.TargetApi; import android.content.Intent; import android.os.Build; import android.os.Bundle; import android.preference.ListPreference; import android.preference.Preference; import android.preference.PreferenceActivity; import android.preference.PreferenceManager; /** * A {@link PreferenceActivity} that presents a set of application settings. * <p> * See <a href="http://developer.android.com/design/patterns/settings.html"> * Android Design: Settings</a> for design guidelines and the <a * href="http://developer.android.com/guide/topics/ui/settings.html">Settings * API Guide</a> for more information on developing a Settings UI. */ public class SettingsActivity extends PreferenceActivity implements Preference.OnPreferenceChangeListener { @TargetApi(Build.VERSION_CODES.JELLY_BEAN) @Override public Intent getParentActivityIntent() { return super.getParentActivityIntent().addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Add 'general' preferences, defined in the XML file addPreferencesFromResource(R.xml.pref_general); bindPreferenceSummaryToValue(findPreference(getString(R.string.pref_location_key))); bindPreferenceSummaryToValue(findPreference(getString(R.string.pref_units_key))); // For all preferences, attach an OnPreferenceChangeListener so the UI summary can be // updated when the preference changes. // TODO: Add preferences } /** * Attaches a listener so the summary is always updated with the preference value. * Also fires the listener once, to initialize the summary (so it shows up before the value * is changed.) */ private void bindPreferenceSummaryToValue(Preference preference) { // Set the listener to watch for value changes. preference.setOnPreferenceChangeListener(this); // Trigger the listener immediately with the preference's // current value. onPreferenceChange(preference, PreferenceManager .getDefaultSharedPreferences(preference.getContext()) .getString(preference.getKey(), "")); } @Override public boolean onPreferenceChange(Preference preference, Object value) { String stringValue = value.toString(); if (preference instanceof ListPreference) { // For list preferences, look up the correct display value in // the preference's 'entries' list (since they have separate labels/values). ListPreference listPreference = (ListPreference) preference; int prefIndex = listPreference.findIndexOfValue(stringValue); if (prefIndex >= 0) { preference.setSummary(listPreference.getEntries()[prefIndex]); } } else { // For other preferences, set the summary to the value's simple string representation. preference.setSummary(stringValue); } return true; } }
[ "amritha119@gmail.com" ]
amritha119@gmail.com
f9956b80bdb62f8d20685ac0543961b491ec39d3
4968c5642c5e5261b635d3f31e1890fba7277868
/fav/src/com/osource/module/fav/service/impl/DailyPolemicServiceImpl.java
5452c6d92fc4ac7b8f95f859a278d90bf7a4e3d7
[]
no_license
cllcsh/collectionplus
01116dc8594e0be6e5a10623e3db2ec9d103d2c2
4a62418d73745a9136d4163527d532e2d3e8b483
refs/heads/master
2016-08-11T16:16:24.556377
2016-04-21T07:51:03
2016-04-21T07:51:03
54,613,229
0
0
null
2016-03-24T14:39:53
2016-03-24T03:55:39
null
UTF-8
Java
false
false
870
java
package com.osource.module.fav.service.impl; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import com.osource.orm.ibatis.BaseServiceImpl; import com.osource.module.fav.dao.DailyPolemicDao; import com.osource.module.fav.model.DailyPolemicInfo; import com.osource.module.fav.service.DailyPolemicService; @Service @Scope("prototype") @Transactional public class DailyPolemicServiceImpl extends BaseServiceImpl<DailyPolemicInfo> implements DailyPolemicService { /** setter and getter methods **/ protected DailyPolemicDao getDao() { return (DailyPolemicDao)super.getDao(); } @Autowired public void setDao(DailyPolemicDao dailyPolemicDao) { super.setDao(dailyPolemicDao); } }
[ "cllc@cllc.me" ]
cllc@cllc.me
42fbe1107644b08d9fbdd17c94f7434a4e8afec8
223138fec75c644909da354689898e0472d22b0a
/Java/TestingSystem_Assignment_4/src/entity/Ex5_qs3_HighSchoolStudent.java
5a5557216d43244be28e85341596405c770b9c93
[]
no_license
nhaivu22/Rocket_18
61801a5fc4eb91ca521a47e06302de21798e7663
09f4d052aa714969ea234df27085d23323bb975c
refs/heads/master
2023-09-02T03:02:54.759030
2021-10-12T05:38:47
2021-10-12T05:38:47
402,703,612
0
0
null
null
null
null
UTF-8
Java
false
false
791
java
package entity; public class Ex5_qs3_HighSchoolStudent extends Ex5_qs3_Student{ private String clazz; private String desiredUniversity; public Ex5_qs3_HighSchoolStudent(String name, int id, String clazz, String desiredUniversity) { super(name, id); this.clazz = clazz; this.desiredUniversity = desiredUniversity; } public String getClazz() { return clazz; } public void setClazz(String clazz) { this.clazz = clazz; } public String getDesiredUniversity() { return desiredUniversity; } public void setDesiredUniversity(String desiredUniversity) { this.desiredUniversity = desiredUniversity; } @Override public String toString() { return super.toString()+"Ex5_qs3_HighSchoolStudent [clazz=" + clazz + ", desiredUniversity=" + desiredUniversity + "]"; } }
[ "nhaivu22@gmail.com" ]
nhaivu22@gmail.com
6331262815c3c286ed90ac071af37a52a5a7b038
eccbee236c8c55e6887228b02e4ce2f4d11f9a7a
/src/main/java/com/java/controller/superadmain/AreaController.java
0888eb094c5f3b0a7a26144eeef692b4fc6f5cee
[]
no_license
fengluomingying/o2o
41dcf14c2f1730801ab6e9be828fa2336c700b9f
6f2817356ccd0ce06945aec09fc6f2dd90aaca9a
refs/heads/master
2022-12-22T22:07:00.818208
2019-07-07T05:12:55
2019-07-07T05:12:55
195,612,646
0
0
null
2022-12-16T10:51:52
2019-07-07T05:12:02
Java
UTF-8
Java
false
false
1,399
java
package com.java.controller.superadmain; import com.java.entity.Area; import com.java.service.AreaService; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; @Controller @RequestMapping("/superadmain") public class AreaController { Logger logger = LoggerFactory.getLogger(AreaController.class); @Autowired private AreaService areaService; @RequestMapping(value = "/listarea", method = RequestMethod.GET) @ResponseBody public Map<String, Object> listArea() { logger.info("===start==="); long startTime = System.currentTimeMillis(); Map<String, Object> map = new HashMap<>(); List<Area> list = new ArrayList<>(); list = areaService.getAreaList(); map.put("rows", list); map.put("total", list.size()); logger.error("test error!"); long endTime = System.currentTimeMillis(); logger.debug("costTime:[{}ms]",endTime - startTime); logger.info("===end==="); return map; } }
[ "zfm_gbl@qq.com" ]
zfm_gbl@qq.com
95ca3977c94030cd00e931042c1a00b0504c5333
c6964864412cdf04180ffa1711817116b00ce3d7
/src/main/java/com/aanglearning/service/gallery/DeletedSubAlbumImageService.java
82031ec2db0b5e6c82988c493671f65d5fe0f1de
[]
no_license
vinkrish/jersey_project_API
79aa58ccda456f4f503526e7e939d8dc497a6775
57d452c8a65cc66c88c183f938ec9e98f4880002
refs/heads/master
2021-03-30T16:58:55.587066
2018-03-23T09:35:09
2018-03-23T09:35:09
64,354,593
0
0
null
null
null
null
UTF-8
Java
false
false
3,817
java
package com.aanglearning.service.gallery; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; import com.aanglearning.model.gallery.DeletedSubAlbumImage; import com.aanglearning.service.DatabaseUtil; public class DeletedSubAlbumImageService { Connection connection; public DeletedSubAlbumImageService() { try { connection = DatabaseUtil.getConnection(); } catch (SQLException e) { e.printStackTrace(); } } public void add(List<DeletedSubAlbumImage> subAlbumImages) { delete(subAlbumImages); String query = "insert into deleted_subalbum_image(SenderId, SubAlbumImageId, Name, SubAlbumId, DeletedAt) " + "values (?,?,?,?,?)"; for(DeletedSubAlbumImage subAlbumImage: subAlbumImages) { try{ PreparedStatement preparedStatement = connection.prepareStatement(query); preparedStatement.setLong(1, subAlbumImage.getSenderId()); preparedStatement.setLong(2, subAlbumImage.getSubAlbumImageId()); preparedStatement.setString(3, subAlbumImage.getName()); preparedStatement.setLong(4, subAlbumImage.getSubAlbumId()); preparedStatement.setLong(5, subAlbumImage.getDeletedAt()); preparedStatement.executeUpdate(); } catch(Exception e) { e.printStackTrace(); } } } public List<DeletedSubAlbumImage> getDeletedSubAlbumImages(long subAlbumId) { String query = "select * from deleted_subalbum_image where SubAlbumId=? order by Id desc"; List<DeletedSubAlbumImage> subAlbumImages = new ArrayList<>(); try { PreparedStatement preparedStatement = connection.prepareStatement(query); preparedStatement.setLong(1, subAlbumId); ResultSet rs = preparedStatement.executeQuery(); while (rs.next()){ DeletedSubAlbumImage subAlbumImage = new DeletedSubAlbumImage(); subAlbumImage.setId(rs.getLong("Id")); subAlbumImage.setSenderId(rs.getLong("SenderId")); subAlbumImage.setSubAlbumId(rs.getLong("SubAlbumId")); subAlbumImage.setSubAlbumImageId(rs.getLong("SubAlbumImageId")); subAlbumImage.setName(rs.getString("Name")); subAlbumImage.setDeletedAt(rs.getLong("DeletedAt")); subAlbumImages.add(subAlbumImage); } } catch (SQLException e) { e.printStackTrace(); } return subAlbumImages; } public List<DeletedSubAlbumImage> getDeletedSubAlbumImagesAboveId(long subAlbumId, long id) { String query = "select * from deleted_subalbum_image where SubAlbumId=? and Id>?"; List<DeletedSubAlbumImage> subAlbumImages = new ArrayList<>(); try { PreparedStatement preparedStatement = connection.prepareStatement(query); preparedStatement.setLong(1, subAlbumId); preparedStatement.setLong(2, id); ResultSet rs = preparedStatement.executeQuery(); while (rs.next()){ DeletedSubAlbumImage subAlbumImage = new DeletedSubAlbumImage(); subAlbumImage.setId(rs.getLong("Id")); subAlbumImage.setSenderId(rs.getLong("SenderId")); subAlbumImage.setSubAlbumId(rs.getLong("SubAlbumId")); subAlbumImage.setSubAlbumImageId(rs.getLong("SubAlbumImageId")); subAlbumImage.setName(rs.getString("Name")); subAlbumImage.setDeletedAt(rs.getLong("DeletedAt")); subAlbumImages.add(subAlbumImage); } } catch (SQLException e) { e.printStackTrace(); } return subAlbumImages; } private void delete(List<DeletedSubAlbumImage> subAlbumImages) { String query = "delete from subalbum_image where Id=?"; for(DeletedSubAlbumImage subAlbumImage: subAlbumImages) { try{ PreparedStatement preparedStatement = connection.prepareStatement(query); preparedStatement.setLong(1, subAlbumImage.getSubAlbumImageId()); preparedStatement.executeUpdate(); } catch(Exception e) { e.printStackTrace(); } } } }
[ "vinaykrishna1989@gmail.com" ]
vinaykrishna1989@gmail.com
9e8ce220505fc8141a8f54064dbb287c40e71e14
9ccc3d1bd2a3827849678f9ee0de783d65e23603
/src/main/java/Tranxit/LoginPage.java
c69d4b54d159f194f34db0f6b1158eb32e00673c
[]
no_license
saritha2310/WorkRepo
1ea83f98c7cefbbea887abefd7d80ca309a39356
c108d61b387602ed39b88151b24a2baf4b6febce
refs/heads/master
2021-07-05T12:17:53.220757
2019-05-31T20:39:38
2019-05-31T20:39:38
189,654,342
0
0
null
2020-10-13T13:36:10
2019-05-31T20:25:58
HTML
UTF-8
Java
false
false
996
java
package Tranxit; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.How; public class LoginPage extends BasePage { public LoginPage(WebDriver browser) { super(browser); } @FindBy(how = How.ID,using = "Email") private WebElement emailId; @FindBy(how = How.ID,using = "Password") private WebElement passwordText; @FindBy(how = How.XPATH,using = "/html/body/div[6]/div[3]/div/div/div/div[2]/div[1]/div[2]/form/div[3]/input") private WebElement Submit; @FindBy(how = How.TAG_NAME,using = "body") private WebElement bodyText; public void login(String Username, String Password){ emailId.sendKeys(Username); passwordText.sendKeys(Password); Submit.click(); } public boolean isuserLogged(){ return bodyText.getText().contains("Welcome to our store"); } }
[ "sarithavrao@gmail.com" ]
sarithavrao@gmail.com
af65442b3bd9cbb7aac6b5562e2af3566f9d041f
1ee53a1d0cb12c10420083e377ac54adcd233c36
/NettyLearn/src/com/mylearn/netty/mygame/EventDefine.java
b390dbefc352e0b1c8f1d133325e8c44d7fc58c5
[]
no_license
snakeek/Netty_learn
0ad37ef5180fbc88ff72e8f178da00bab5a3e890
f47bb7e302544ecb3b5474ca2ccb46a7c6a38419
refs/heads/master
2020-05-30T16:51:17.849722
2014-07-18T08:51:59
2014-07-18T08:51:59
null
0
0
null
null
null
null
UTF-8
Java
false
false
247
java
package com.mylearn.netty.mygame; public class EventDefine { public static final int CMD_TEST = 0x1000; public static final int CMD_MOVE = 0x1001; public static final int CMD_DIRECTION = 0x1002; public static final int CMD_HEART = 0x9000; }
[ "skywalker124@gmail.com" ]
skywalker124@gmail.com
8cdae8e981327e5c9875fde05da99fdebe28f92c
9fca2a0593697f6fcdb288d2bbee686cd112f682
/Polimorfismo/src/entidades/Terceirizado.java
0f6204e93e1c8c3742f478606beb3120fb4eb67a
[]
no_license
monteiromatheus/Projects-Java
e6a29e50edc3c14fcc785cb57308afe4cf3b0f43
c1f1574ff576f1f2762c8599d9db774f4c7a67d0
refs/heads/master
2022-11-06T11:32:44.210450
2020-06-16T00:08:25
2020-06-16T00:08:25
258,851,209
0
0
null
null
null
null
UTF-8
Java
false
false
828
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 entidades; /** * * @author Matheus */ public class Terceirizado extends Empregado { private Double adicional; public Terceirizado() { super(); } public Terceirizado(String nome, Integer horas, Double valorPorHora, Double adicional) { super(nome, horas, valorPorHora); this.adicional = adicional; } public Double getAdicional() { return adicional; } public void setAdicional(Double adicional) { this.adicional = adicional; } @Override public final double Pagamento(){ return super.Pagamento() + adicional*1.1; } }
[ "monteiromatheus@id.uff.br" ]
monteiromatheus@id.uff.br
d375edf1c404c494f192093da2026985151d54a7
de371e581985e5b930b94111b3f291b1d03cec7e
/recycleview-library/src/main/java/com/chad/library/adapter/base/loadmore/LoadMoreView.java
be99305723b1b458ad6018074d0f8ad959b62e8c
[]
no_license
WDXSS/Dawn
9813ffa224cb7ed673fe2befe6bdf40106953d74
6fa459c1804281f2cf56fd94047b13bd2e88d51d
refs/heads/master
2021-01-19T01:46:09.415275
2019-04-23T08:00:55
2019-04-23T08:00:55
87,251,749
1
0
null
null
null
null
UTF-8
Java
false
false
3,143
java
package com.chad.library.adapter.base.loadmore; import android.support.annotation.IdRes; import android.support.annotation.LayoutRes; import com.chad.library.adapter.base.BaseViewHolder; /** * Created by BlingBling on 2016/11/11. */ public abstract class LoadMoreView { public static final int STATUS_DEFAULT = 1; public static final int STATUS_LOADING = 2; public static final int STATUS_FAIL = 3; public static final int STATUS_END = 4; private int mLoadMoreStatus = STATUS_DEFAULT; private boolean mLoadMoreEndGone = false; public void setLoadMoreStatus(int loadMoreStatus) { this.mLoadMoreStatus = loadMoreStatus; } public int getLoadMoreStatus() { return mLoadMoreStatus; } public void convert(BaseViewHolder holder) { switch (mLoadMoreStatus) { case STATUS_LOADING: visibleLoading(holder, true); visibleLoadFail(holder, false); visibleLoadEnd(holder, false); break; case STATUS_FAIL: visibleLoading(holder, false); visibleLoadFail(holder, true); visibleLoadEnd(holder, false); break; case STATUS_END: visibleLoading(holder, false); visibleLoadFail(holder, false); visibleLoadEnd(holder, true); break; case STATUS_DEFAULT: visibleLoading(holder, false); visibleLoadFail(holder, false); visibleLoadEnd(holder, false); break; } } private void visibleLoading(BaseViewHolder holder, boolean visible) { holder.setVisible(getLoadingViewId(), visible); } private void visibleLoadFail(BaseViewHolder holder, boolean visible) { holder.setVisible(getLoadFailViewId(), visible); } private void visibleLoadEnd(BaseViewHolder holder, boolean visible) { final int loadEndViewId=getLoadEndViewId(); if (loadEndViewId != 0) { holder.setVisible(loadEndViewId, visible); } } public final void setLoadMoreEndGone(boolean loadMoreEndGone) { this.mLoadMoreEndGone = loadMoreEndGone; } public final boolean isLoadEndMoreGone(){ if(getLoadEndViewId()==0){ return true; } return mLoadMoreEndGone;} /** * No more data is hidden * @return true for no more data hidden load more * @deprecated Use {@link BaseQuickAdapter#loadMoreEnd(boolean)} instead. */ @Deprecated public boolean isLoadEndGone(){return mLoadMoreEndGone;} /** * load more layout * * @return */ public abstract @LayoutRes int getLayoutId(); /** * loading view * * @return */ protected abstract @IdRes int getLoadingViewId(); /** * load fail view * * @return */ protected abstract @IdRes int getLoadFailViewId(); /** * load end view, you can return 0 * * @return */ protected abstract @IdRes int getLoadEndViewId(); }
[ "810753835@qq.com" ]
810753835@qq.com
1187f01ef034b93c13635842f194037bae447050
364e81cb0c01136ac179ff42e33b2449c491b7e5
/spell/tags/1.5.0/spel-dev/org.python.pydev.parser/src/org/python/pydev/parser/ParserPlugin.java
b4784cb47f734ac8cbbacf94358129a5b9d149a6
[]
no_license
unnch/spell-sat
2b06d9ed62b002e02d219bd0784f0a6477e365b4
fb11a6800316b93e22ee8c777fe4733032004a4a
refs/heads/master
2021-01-23T11:49:25.452995
2014-10-14T13:04:18
2014-10-14T13:04:18
42,499,379
0
0
null
null
null
null
UTF-8
Java
false
false
1,803
java
package org.python.pydev.parser; import org.eclipse.ui.plugin.*; import org.osgi.framework.BundleContext; import java.util.*; /** * The main plugin class to be used in the desktop. */ public class ParserPlugin extends AbstractUIPlugin { //The shared instance. private static ParserPlugin plugin; //Resource bundle. private ResourceBundle resourceBundle; /** * The constructor. */ public ParserPlugin() { super(); plugin = this; try { resourceBundle = ResourceBundle.getBundle("org.python.pydev.parser.ParserPluginResources"); } catch (MissingResourceException x) { resourceBundle = null; } } /** * This method is called upon plug-in activation */ public void start(BundleContext context) throws Exception { super.start(context); } /** * This method is called when the plug-in is stopped */ public void stop(BundleContext context) throws Exception { super.stop(context); } /** * Returns the shared instance. */ public static ParserPlugin getDefault() { return plugin; } /** * Returns the string from the plugin's resource bundle, * or 'key' if not found. */ public static String getResourceString(String key) { ResourceBundle bundle = ParserPlugin.getDefault().getResourceBundle(); try { return (bundle != null) ? bundle.getString(key) : key; } catch (MissingResourceException e) { return key; } } /** * Returns the plugin's resource bundle, */ public ResourceBundle getResourceBundle() { return resourceBundle; } }
[ "rafael.chinchilla@gmail.com" ]
rafael.chinchilla@gmail.com
5ff4be81dbbbb81563665b16e6bfd213d43b6b02
0e03a49cfaa55f6232302b2bf407d493875efd91
/opscloud-datasource-zabbix/src/main/java/com/baiyi/opscloud/zabbix/http/ZabbixHostCreateParam.java
b33be14f1cf93782e1ad1abe19e9077e65411a3e
[ "Apache-2.0" ]
permissive
misselvexu/opscloud4
e1d6e73aabeb284188b60fca5b945bf308ed6ff5
9742119b52d3f1005d40a748679b7d8e6d8057fd
refs/heads/master
2023-09-06T07:22:32.723962
2021-11-16T02:27:29
2021-11-16T02:27:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
946
java
package com.baiyi.opscloud.zabbix.http; import lombok.Builder; import lombok.Data; /** * @Author <a href="mailto:xiuyuan@xinc818.group">修远</a> * @Date 2021/7/23 6:50 下午 * @Since 1.0 */ public class ZabbixHostCreateParam { @Data @Builder public static class Interface { @Builder.Default private Integer type = 1; @Builder.Default private Integer main = 1; @Builder.Default private Integer useip = 1; private String ip; @Builder.Default private String dns = ""; @Builder.Default private String port = "10050"; } @Data @Builder public static class Groups { private String groupid; } @Data @Builder public static class Tags { private String tag; private String value; } @Data @Builder public static class Templates { private String templateid; } }
[ "xiuyuan@xinc818.group" ]
xiuyuan@xinc818.group
5914bebecb2ee980245a2d3c72aa57f7bb8e5e19
58b69d57d969e6253ae8bca7d3cfcf53b3774c43
/src/main/java/com/lufi/matching/MatchInfo.java
415e3641cbd66f2952af1150fb9997b74324ff6a
[]
no_license
FDUAccessControlForBDA/uploadify
1c1dbbfec45d044af892398727477f7540f4780f
4a2f1b42ab2fd59e664e685496f63a9175dd1b41
refs/heads/master
2021-05-03T19:51:11.344096
2018-04-23T09:10:31
2018-04-23T09:10:31
120,424,022
2
0
null
null
null
null
UTF-8
Java
false
false
775
java
package com.lufi.matching; import java.io.Serializable; /** * Created by Sunny on 2018/1/11. */ public class MatchInfo implements Serializable { private String type; // 隐私信息的类型 private String detail; // 隐私信息的详细内容 private String location; // 隐私信息对应的行数 public MatchInfo() {} public String getType() { return type; } public String getDetail() { return detail; } public String getLocation() { return location; } public void setType(String type) { this.type = type; } public void setDetail(String detail) { this.detail = detail; } public void setLocation(String location) { this.location = location; } }
[ "symsimmys@gmail.com" ]
symsimmys@gmail.com
d0bd1da3b83addd2b3ea1c61bfa01d285b4187e6
7c4b6453854c76383c0f5ab9243981d0715f9540
/JualBeliHP/app/src/main/java/id/my/herdiana/jualbelihp/model/Handphone.java
0e1c9557c51c81d6b70bb7b1fd964e3d3ff3c78e
[]
no_license
Herdiana10/Herdiana_311710136_JualBeliHp
69ff33b8c073dab77e484ac0d49f44f2d3e63fba
75d1348589ba3e549fab5c0fc935c30780483b3b
refs/heads/master
2022-06-14T13:48:13.141137
2020-05-05T22:14:42
2020-05-05T22:14:42
255,001,858
0
0
null
null
null
null
UTF-8
Java
false
false
644
java
package id.my.herdiana.jualbelihp.model; public class Handphone { private Integer id; private String nama; private String harga; public Handphone() { super(); } public Handphone(Integer id, String nama) super(); this.id =id; this.nama =nama; this.harga =harga; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getNama(String nama) { this.nama = nama; } public String getHarga() { return harga; } public void setHarga(){ this.harga = harga; } }
[ "herdianah14@gmail.com" ]
herdianah14@gmail.com
23620373ac67987d18558af6393dcb2e44854939
8246da9a0ea49ef6e70bfb6bc05148fb6134ed89
/dianping2/src/main/java/com/dianping/hotel/ugc/ReviewItemView.java
b34e9d67d9d2043acc4cce1a2397c79e2487e396
[]
no_license
hezhongqiang/Dianping
2708824e30339e1abfb85e028bd27778e26adb56
b1a4641be06857fcf65466ce04f3de6b0b6f05ef
refs/heads/master
2020-05-29T08:48:38.251791
2016-01-13T08:09:05
2016-01-13T08:09:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
51,233
java
package com.dianping.hotel.ugc; import android.app.Activity; import android.app.AlertDialog.Builder; import android.content.Context; import android.content.DialogInterface; import android.content.DialogInterface.OnClickListener; import android.content.Intent; import android.content.res.Resources; import android.graphics.Bitmap; import android.graphics.Bitmap.CompressFormat; import android.graphics.drawable.BitmapDrawable; import android.net.Uri; import android.net.Uri.Builder; import android.text.TextUtils; import android.util.AttributeSet; import android.view.LayoutInflater; import android.view.View; import android.view.View.MeasureSpec; import android.view.View.OnClickListener; import android.view.ViewGroup; import android.view.ViewGroup.LayoutParams; import android.view.ViewTreeObserver; import android.view.ViewTreeObserver.OnPreDrawListener; import android.view.animation.AlphaAnimation; import android.view.animation.Animation; import android.view.animation.Animation.AnimationListener; import android.view.animation.AnimationSet; import android.view.animation.DecelerateInterpolator; import android.view.animation.TranslateAnimation; import android.widget.FrameLayout; import android.widget.FrameLayout.LayoutParams; import android.widget.ImageView; import android.widget.ImageView.ScaleType; import android.widget.LinearLayout; import android.widget.LinearLayout.LayoutParams; import android.widget.PopupWindow; import android.widget.TextView; import android.widget.Toast; import com.dianping.accountservice.AccountService; import com.dianping.app.DPActivity; import com.dianping.app.DPApplication; import com.dianping.archive.DPObject; import com.dianping.archive.DPObject.Editor; import com.dianping.base.app.NovaActivity; import com.dianping.base.widget.ShopPower; import com.dianping.dataservice.FullRequestHandle; import com.dianping.dataservice.Request; import com.dianping.dataservice.RequestHandler; import com.dianping.dataservice.Response; import com.dianping.dataservice.mapi.BasicMApiRequest; import com.dianping.dataservice.mapi.CacheType; import com.dianping.dataservice.mapi.MApiRequest; import com.dianping.dataservice.mapi.MApiResponse; import com.dianping.dataservice.mapi.MApiService; import com.dianping.imagemanager.DPNetworkImageView; import com.dianping.model.UserProfile; import com.dianping.util.DeviceUtils; import com.dianping.util.Log; import com.dianping.util.LoginUtils; import com.dianping.util.ViewUtils; import com.dianping.v1.R.color; import com.dianping.v1.R.drawable; import com.dianping.v1.R.id; import com.dianping.v1.R.layout; import com.dianping.v1.R.string; import com.dianping.widget.LoadingErrorView; import com.dianping.widget.LoadingItem; import com.dianping.widget.NetworkImageView; import com.dianping.widget.view.NovaTextView; import java.io.ByteArrayOutputStream; import java.io.OutputStream; import java.util.ArrayList; import java.util.Iterator; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; public class ReviewItemView extends FrameLayout implements View.OnClickListener { public static final int DEFAULT_MAX_LINE = 8; public static final int MAX_PHOTOS = 4; private static final String TAG = ReviewItemView.class.getSimpleName().toString(); private static final String URL_ADD_APPROVE = "http://m.api.dianping.com/review/ugcfavor.bin"; private static final String URL_APPROVE_LIST = "http://m.api.dianping.com/review/getfavorlist.bin"; private static final String URL_COMMENT_LIST = "http://m.api.dianping.com/review/getugccommentlist.bin"; private static final String URL_DELETE_OWN_REVIEW = "http://m.api.dianping.com/delreview.bin"; private static final String URL_REPORT = "http://m.api.dianping.com/review/reportugcfeed.bin"; private View mAddApproveAnimView; private TextView mAllFriendsReviewsView; private View mAllReviewsView; private TextView mApproveCount; private TextView mAvgPrice; private TextView mCommentCount; private OnCommentListener mCommentListener; private View mCommentView; private ViewGroup mCommentsLayout; private TextView mContent; private ImageView mContentExpandView; private TextView mCreatedTime; private ReviewItem mData; private OnDeleteOwnReviewListener mDeleteListener; private View mDeleteView; private View mEditView; private OnExpandFriendsListener mExpandFriendsListener; private NetworkImageView mHonorView; public String mID; private int mIndex; private View mMoreView; private OnNotifyUpdateListener mNotifyListener; private ViewGroup mPhotosView; private ShopPower mShopPower; private PopupWindow mShowMorePopupWindow; private int mShowMorePopupWindowHeight; private int mShowMorePopupWindowWidth; private TextView mSource; private NovaTextView mTranslate; private View mTranslateLayout; private LinearLayout mUserLabels; private View mUserLayout; private View.OnClickListener mUserListener; private TextView mUsername; public ReviewItemView(Context paramContext) { super(paramContext); } public ReviewItemView(Context paramContext, AttributeSet paramAttributeSet) { super(paramContext, paramAttributeSet); } private void addApprove() { if (this.mData.hasOwnApprove) { Toast.makeText(getContext(), "你已称赞过有用", 1).show(); return; } if (((DPActivity)getContext()).accountService().id() == this.mData.userId) { Toast.makeText(getContext(), "不能称赞自己", 1).show(); return; } Object localObject = ((NovaActivity)getContext()).getAccount(); if (localObject != null) this.mData.addApprove(((UserProfile)localObject).nickName()); localObject = new ArrayList(); ((ArrayList)localObject).add("originuserid"); ((ArrayList)localObject).add(String.valueOf(DPApplication.instance().accountService().id())); ((ArrayList)localObject).add("actiontype"); ((ArrayList)localObject).add("1"); ((ArrayList)localObject).add("mainid"); ((ArrayList)localObject).add(this.mData.reviewId); ((ArrayList)localObject).add("feedtype"); ((ArrayList)localObject).add("1"); localObject = (BasicMApiRequest)BasicMApiRequest.mapiPost("http://m.api.dianping.com/review/ugcfavor.bin", (String[])((ArrayList)localObject).toArray(new String[((ArrayList)localObject).size()])); ((NovaActivity)getContext()).mapiService().exec((Request)localObject, null); localObject = new AnimationSet(true); AlphaAnimation localAlphaAnimation = new AlphaAnimation(0.0F, 1.0F); TranslateAnimation localTranslateAnimation = new TranslateAnimation(1, 0.0F, 1, 0.0F, 1, 0.0F, 1, -0.5F); localAlphaAnimation.setDuration(1000L); localTranslateAnimation.setDuration(1000L); ((AnimationSet)localObject).addAnimation(localAlphaAnimation); ((AnimationSet)localObject).addAnimation(localTranslateAnimation); ((AnimationSet)localObject).setInterpolator(new DecelerateInterpolator()); ((AnimationSet)localObject).setAnimationListener(new Animation.AnimationListener() { public void onAnimationEnd(Animation paramAnimation) { ReviewItemView.this.mAddApproveAnimView.setVisibility(8); } public void onAnimationRepeat(Animation paramAnimation) { } public void onAnimationStart(Animation paramAnimation) { } }); this.mAddApproveAnimView.setVisibility(0); this.mAddApproveAnimView.startAnimation((Animation)localObject); this.mData.hasOwnApprove = true; } private void deleteOwnReview(int paramInt) { Object localObject = new ArrayList(); ((ArrayList)localObject).add("token"); ((ArrayList)localObject).add(DPApplication.instance().accountService().token()); ((ArrayList)localObject).add("reviewid"); ((ArrayList)localObject).add(this.mData.reviewId); ((ArrayList)localObject).add("type"); ((ArrayList)localObject).add(String.valueOf(this.mData.reviewType)); localObject = BasicMApiRequest.mapiPost("http://m.api.dianping.com/delreview.bin", (String[])((ArrayList)localObject).toArray(new String[((ArrayList)localObject).size()])); DPApplication.instance().mapiService().exec((Request)localObject, new RequestHandler(paramInt) { public void onRequestFailed(MApiRequest paramMApiRequest, MApiResponse paramMApiResponse) { ((NovaActivity)ReviewItemView.this.getContext()).dismissDialog(); } public void onRequestFinish(MApiRequest paramMApiRequest, MApiResponse paramMApiResponse) { ((NovaActivity)ReviewItemView.this.getContext()).dismissDialog(); if ((this.val$position == ReviewItemView.this.mIndex) && (ReviewItemView.this.mDeleteListener != null)) { ReviewItemView.this.mDeleteListener.onDelete(ReviewItemView.this.mIndex); if ((paramMApiResponse.result() instanceof DPObject)) { int i = ((DPObject)paramMApiResponse.result()).getInt("StatusCode"); paramMApiRequest = ((DPObject)paramMApiResponse.result()).getString("Content"); if ((i == 200) && (!TextUtils.isEmpty(paramMApiRequest))) Toast.makeText(DPApplication.instance(), paramMApiRequest, 1).show(); } } } }); ((NovaActivity)getContext()).showProgressDialog(getResources().getString(R.string.ugc_review_deleting)); } private void requestApprove(String paramString, int paramInt, ReviewItem paramReviewItem) { paramReviewItem.approveStr = ""; Uri.Builder localBuilder = Uri.parse("http://m.api.dianping.com/review/getfavorlist.bin").buildUpon(); localBuilder.appendQueryParameter("mainid", String.valueOf(paramReviewItem.reviewId)); localBuilder.appendQueryParameter("feedtype", "1"); localBuilder.appendQueryParameter("start", "0"); ((DPActivity)getContext()).mapiService().exec(BasicMApiRequest.mapiGet(localBuilder.toString(), CacheType.DISABLED), new FullRequestHandle(paramReviewItem, paramString, paramInt) { public void onRequestFailed(MApiRequest paramMApiRequest, MApiResponse paramMApiResponse) { this.val$data.approveState = ReviewItem.COMMENT_STATE.COMMENT_ERROR; if (ReviewItemView.this.mID.equals(this.val$id)) ReviewItemView.this.updateLoadingApprove(true); do return; while (ReviewItemView.this.mNotifyListener == null); ReviewItemView.this.mNotifyListener.onNotify(this.val$position, this.val$id); } public void onRequestFinish(MApiRequest paramMApiRequest, MApiResponse paramMApiResponse) { if ((paramMApiResponse.result() instanceof DPObject)) { this.val$data.approveState = ReviewItem.COMMENT_STATE.COMMENT_IDLE; paramMApiRequest = ((DPObject)paramMApiResponse.result()).getArray("List"); if ((paramMApiRequest != null) && (paramMApiRequest.length > 0)) { paramMApiResponse = new ArrayList(paramMApiRequest.length); int i = 0; while (i < paramMApiRequest.length) { paramMApiResponse.add(new FavorUser(paramMApiRequest[i])); i += 1; } this.val$data.setApprove(paramMApiResponse); if (ReviewItemView.this.mID.equals(this.val$id)) ReviewItemView.this.updateComment(); } if (ReviewItemView.this.mID.equals(this.val$id)) ReviewItemView.this.updateComment(); } do { do return; while (ReviewItemView.this.mNotifyListener == null); ReviewItemView.this.mNotifyListener.onNotify(this.val$position, this.val$id); return; this.val$data.approveState = ReviewItem.COMMENT_STATE.COMMENT_ERROR; if (!ReviewItemView.this.mID.equals(this.val$id)) continue; ReviewItemView.this.updateLoadingApprove(true); return; } while (ReviewItemView.this.mNotifyListener == null); ReviewItemView.this.mNotifyListener.onNotify(this.val$position, this.val$id); } public void onRequestProgress(MApiRequest paramMApiRequest, int paramInt1, int paramInt2) { } public void onRequestStart(MApiRequest paramMApiRequest) { this.val$data.approveState = ReviewItem.COMMENT_STATE.COMMENT_LOADING; if (ReviewItemView.this.mID.equals(this.val$id)) ReviewItemView.this.updateLoadingApprove(false); } }); } private void requestComments(String paramString, int paramInt, ReviewItem paramReviewItem) { paramReviewItem.comments.clear(); Uri.Builder localBuilder = Uri.parse("http://m.api.dianping.com/review/getugccommentlist.bin").buildUpon(); localBuilder.appendQueryParameter("mainid", String.valueOf(paramReviewItem.reviewId)); localBuilder.appendQueryParameter("feedtype", "1"); localBuilder.appendQueryParameter("start", "0"); ((DPActivity)getContext()).mapiService().exec(BasicMApiRequest.mapiGet(localBuilder.toString(), CacheType.DISABLED), new FullRequestHandle(paramReviewItem, paramString, paramInt) { public void onRequestFailed(MApiRequest paramMApiRequest, MApiResponse paramMApiResponse) { this.val$data.commentState = ReviewItem.COMMENT_STATE.COMMENT_ERROR; if (ReviewItemView.this.mID.equals(this.val$id)) ReviewItemView.this.updateLoadingComment(true); do return; while (ReviewItemView.this.mNotifyListener == null); ReviewItemView.this.mNotifyListener.onNotify(this.val$position, this.val$id); } public void onRequestFinish(MApiRequest paramMApiRequest, MApiResponse paramMApiResponse) { Log.d(ReviewItemView.TAG, "requestComments onRequestFinish position: " + ReviewItemView.this.mIndex + ", currentId: " + ReviewItemView.this.mID + ", requestId: " + this.val$id); if ((paramMApiResponse.result() instanceof DPObject)) { this.val$data.commentState = ReviewItem.COMMENT_STATE.COMMENT_IDLE; paramMApiRequest = ((DPObject)paramMApiResponse.result()).getArray("List"); if ((paramMApiRequest != null) && (paramMApiRequest.length > 0)) { paramMApiResponse = new ArrayList(paramMApiRequest.length); int i = 0; while (i < paramMApiRequest.length) { paramMApiResponse.add(new ReviewComment(paramMApiRequest[i])); i += 1; } this.val$data.setComment(paramMApiResponse); } if (ReviewItemView.this.mID.equals(this.val$id)) ReviewItemView.this.updateComment(); } do { do return; while (ReviewItemView.this.mNotifyListener == null); ReviewItemView.this.mNotifyListener.onNotify(this.val$position, this.val$id); return; this.val$data.commentState = ReviewItem.COMMENT_STATE.COMMENT_ERROR; if (!ReviewItemView.this.mID.equals(this.val$id)) continue; ReviewItemView.this.updateLoadingComment(true); return; } while (ReviewItemView.this.mNotifyListener == null); ReviewItemView.this.mNotifyListener.onNotify(this.val$position, this.val$id); } public void onRequestProgress(MApiRequest paramMApiRequest, int paramInt1, int paramInt2) { } public void onRequestStart(MApiRequest paramMApiRequest) { this.val$data.commentState = ReviewItem.COMMENT_STATE.COMMENT_LOADING; if (ReviewItemView.this.mID.equals(this.val$id)) ReviewItemView.this.updateLoadingComment(false); } }); } private void setContentMaxLine(int paramInt) { Log.d(TAG, "setContentMaxLine maxLine = " + paramInt); this.mContent.setMaxLines(paramInt); this.mContent.getViewTreeObserver().addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() { public boolean onPreDraw() { ReviewItemView.this.mContent.getViewTreeObserver().removeOnPreDrawListener(this); Log.d(ReviewItemView.TAG, "setContentMaxLine onPreDraw"); int i; if (ReviewItemView.this.mContent.getLineCount() > 8) { ReviewItemView.this.mContentExpandView.setVisibility(0); ImageView localImageView = ReviewItemView.this.mContentExpandView; if (ReviewItemView.this.mData.isContentExpanded) { i = R.drawable.mini_arrow_up; localImageView.setImageResource(i); } } while (true) { return true; i = R.drawable.mini_arrow_down; break; ReviewItemView.this.mContentExpandView.setVisibility(8); } } }); } private void setID(String paramString) { this.mID = paramString; } private void setUserLabels(String[] paramArrayOfString) { if ((paramArrayOfString != null) && (paramArrayOfString.length > 0)) { this.mUserLabels.removeAllViews(); this.mUserLabels.setVisibility(0); this.mUserLayout.measure(View.MeasureSpec.makeMeasureSpec(ViewUtils.getScreenWidthPixels(getContext()), 1073741824), 0); FrameLayout.LayoutParams localLayoutParams = new FrameLayout.LayoutParams(-2, ViewUtils.dip2px(getContext(), 16)); int j = paramArrayOfString.length; int i = 0; if (i < j) { String str = paramArrayOfString[i]; if (TextUtils.isEmpty(str)); while (true) { i += 1; break; DPNetworkImageView localDPNetworkImageView = new DPNetworkImageView(getContext()); localDPNetworkImageView.setLayoutParams(localLayoutParams); localDPNetworkImageView.setPadding(0, 0, ViewUtils.dip2px(getContext(), 3), 0); localDPNetworkImageView.setScaleType(ImageView.ScaleType.FIT_XY); localDPNetworkImageView.setAdjustViewBounds(true); localDPNetworkImageView.setImage(str); this.mUserLabels.addView(localDPNetworkImageView); } } } else { this.mUserLabels.setVisibility(8); } } private void showMore(View paramView) { if (this.mShowMorePopupWindow == null) { View localView = LayoutInflater.from(getContext()).inflate(R.layout.hotel_temp_ugc_review_item_more, null, false); localView.measure(0, 0); this.mShowMorePopupWindowWidth = localView.getMeasuredWidth(); this.mShowMorePopupWindowHeight = localView.getMeasuredHeight(); this.mShowMorePopupWindow = new PopupWindow(localView, -2, -2); this.mShowMorePopupWindow.setBackgroundDrawable(new BitmapDrawable()); this.mShowMorePopupWindow.setOutsideTouchable(true); this.mShowMorePopupWindow.setFocusable(true); this.mShowMorePopupWindow.setTouchable(true); localView = this.mShowMorePopupWindow.getContentView(); localView.findViewById(R.id.add_approve).setOnClickListener(this); localView.findViewById(R.id.add_comment).setOnClickListener(this); localView.findViewById(R.id.review_report).setOnClickListener(this); } if (this.mShowMorePopupWindow.isShowing()) { this.mShowMorePopupWindow.dismiss(); return; } int i = paramView.getHeight(); this.mShowMorePopupWindow.showAsDropDown(paramView, -this.mShowMorePopupWindowWidth, -(this.mShowMorePopupWindowHeight + i) / 2); } private void updateComment() { if (!this.mData.hasApprove()) { this.mApproveCount.setVisibility(8); if (this.mData.hasComments()) break label124; this.mCommentCount.setVisibility(8); label38: if (!this.mData.isApproveExpanded) break label363; if (this.mData.approveState != ReviewItem.COMMENT_STATE.COMMENT_LOADING) break label181; updateLoadingApprove(false); } label124: do { return; this.mApproveCount.setVisibility(0); this.mApproveCount.setText(getResources().getString(R.string.ugc_review_approve) + " " + this.mData.approveCount); break; this.mCommentCount.setVisibility(0); this.mCommentCount.setText(getResources().getString(R.string.ugc_review_comment) + " " + this.mData.commentCount); break label38; if (this.mData.approveState != ReviewItem.COMMENT_STATE.COMMENT_ERROR) continue; updateLoadingApprove(true); return; } while ((this.mData.approveState != ReviewItem.COMMENT_STATE.COMMENT_IDLE) || (!this.mData.hasApproveContent())); label181: this.mCommentsLayout.removeAllViews(); this.mApproveCount.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, R.drawable.comments_bg_top); this.mApproveCount.setSelected(true); this.mCommentCount.setCompoundDrawables(null, null, null, null); this.mCommentCount.setSelected(false); Object localObject = new TextView(getContext()); ((TextView)localObject).setLayoutParams(new LinearLayout.LayoutParams(new ViewGroup.LayoutParams(-2, -2))); ((TextView)localObject).setTextSize(16.0F); ((TextView)localObject).setLineSpacing(3.0F, 1.5F); ((TextView)localObject).setText(this.mData.approveStr); ((TextView)localObject).setTextColor(getResources().getColor(R.color.light_gray)); this.mCommentsLayout.addView((View)localObject); this.mCommentsLayout.setVisibility(0); return; label363: if (this.mData.isCommentExpanded) { if (this.mData.commentState == ReviewItem.COMMENT_STATE.COMMENT_LOADING) { updateLoadingComment(false); return; } if (this.mData.commentState == ReviewItem.COMMENT_STATE.COMMENT_ERROR) { updateLoadingComment(true); return; } if ((this.mData.commentState == ReviewItem.COMMENT_STATE.COMMENT_IDLE) && (this.mData.hasCommentContent())) { this.mCommentsLayout.removeAllViews(); this.mCommentCount.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, R.drawable.comments_bg_top); this.mCommentCount.setSelected(true); this.mApproveCount.setCompoundDrawables(null, null, null, null); this.mApproveCount.setSelected(false); localObject = this.mData.comments.iterator(); while (((Iterator)localObject).hasNext()) { ReviewComment localReviewComment = (ReviewComment)((Iterator)localObject).next(); TextView localTextView = new TextView(getContext()); localTextView.setLayoutParams(new LinearLayout.LayoutParams(new ViewGroup.LayoutParams(-1, -2))); localTextView.setTextSize(16.0F); localTextView.setLineSpacing(3.0F, 1.5F); localTextView.setText(localReviewComment.getComment()); localTextView.setTag(localReviewComment); localTextView.setOnClickListener(this); this.mCommentsLayout.addView(localTextView); } this.mCommentsLayout.setVisibility(0); return; } this.mCommentsLayout.removeAllViews(); this.mCommentCount.setCompoundDrawables(null, null, null, null); this.mCommentCount.setSelected(false); this.mCommentsLayout.setVisibility(8); return; } this.mApproveCount.setCompoundDrawables(null, null, null, null); this.mApproveCount.setSelected(false); this.mCommentCount.setCompoundDrawables(null, null, null, null); this.mCommentCount.setSelected(false); this.mCommentsLayout.setVisibility(8); } private void updateLoadingApprove(boolean paramBoolean) { if (!this.mData.isApproveExpanded) return; this.mCommentsLayout.removeAllViews(); this.mApproveCount.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, R.drawable.comments_bg_top); this.mApproveCount.setSelected(true); this.mCommentCount.setCompoundDrawables(null, null, null, null); this.mCommentCount.setSelected(false); Object localObject; if (paramBoolean) { localObject = (LoadingErrorView)LayoutInflater.from(getContext()).inflate(R.layout.error_item, this.mCommentsLayout, false); ((LoadingErrorView)localObject).setLayoutParams(new LinearLayout.LayoutParams(new ViewGroup.LayoutParams(-1, ViewUtils.dip2px(getContext(), 50.0F)))); ((LoadingErrorView)localObject).setId(R.id.approve_retry); ((LoadingErrorView)localObject).setOnClickListener(this); } while (true) { this.mCommentsLayout.setVisibility(0); this.mCommentsLayout.addView((View)localObject); return; localObject = (LoadingItem)LayoutInflater.from(getContext()).inflate(R.layout.loading_item, this.mCommentsLayout, false); ((LoadingItem)localObject).setLayoutParams(new LinearLayout.LayoutParams(new ViewGroup.LayoutParams(-1, ViewUtils.dip2px(getContext(), 50.0F)))); } } private void updateLoadingComment(boolean paramBoolean) { if (!this.mData.isCommentExpanded) return; this.mCommentsLayout.removeAllViews(); this.mCommentCount.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, R.drawable.comments_bg_top); this.mCommentCount.setSelected(true); this.mApproveCount.setCompoundDrawables(null, null, null, null); this.mApproveCount.setSelected(false); Object localObject; if (paramBoolean) { localObject = (LoadingErrorView)LayoutInflater.from(getContext()).inflate(R.layout.error_item, this.mCommentsLayout, false); ((LoadingErrorView)localObject).setLayoutParams(new LinearLayout.LayoutParams(new ViewGroup.LayoutParams(-1, ViewUtils.dip2px(getContext(), 50.0F)))); ((LoadingErrorView)localObject).setId(R.id.comment_retry); ((LoadingErrorView)localObject).setOnClickListener(this); } while (true) { this.mCommentsLayout.setVisibility(0); this.mCommentsLayout.addView((View)localObject); return; localObject = (LoadingItem)LayoutInflater.from(getContext()).inflate(R.layout.loading_item, this.mCommentsLayout, false); ((LoadingItem)localObject).setLayoutParams(new LinearLayout.LayoutParams(new ViewGroup.LayoutParams(-1, ViewUtils.dip2px(getContext(), 50.0F)))); } } private void updatePhotos(ReviewItem paramReviewItem) { int j = 0; this.mPhotosView.removeAllViews(); if (paramReviewItem.thumbnailsPhotos == null); do return; while (paramReviewItem.thumbnailsPhotos.length == 0); int k = (ViewUtils.getScreenWidthPixels(getContext()) - ViewUtils.dip2px(getContext(), 11.0F) * 3 - ViewUtils.dip2px(getContext(), 17.0F) * 2) / 4; int m = Math.min(4, paramReviewItem.thumbnailsPhotos.length); int i = 0; Object localObject; if (i < m) { if ((i != 3) || (paramReviewItem.thumbnailsPhotos.length <= 4)) break label227; if (paramReviewItem.sourceType != 1) { localObject = (TextView)LayoutInflater.from(getContext()).inflate(R.layout.hotel_temp_review_item_more_photo_tv, this.mPhotosView, false); StringBuilder localStringBuilder = new StringBuilder(); localStringBuilder.append("共").append(Integer.toString(paramReviewItem.thumbnailsPhotos.length)).append("张"); ((TextView)localObject).setText(localStringBuilder.toString()); ((TextView)localObject).setOnClickListener(this); ((TextView)localObject).setVisibility(0); ((TextView)localObject).getLayoutParams().width = k; ((TextView)localObject).getLayoutParams().height = k; this.mPhotosView.addView((View)localObject); } } paramReviewItem = this.mPhotosView; if (m > 0); for (i = j; ; i = 8) { paramReviewItem.setVisibility(i); return; label227: localObject = (NetworkImageView)LayoutInflater.from(getContext()).inflate(R.layout.review_item_photo, this.mPhotosView, false); ((NetworkImageView)localObject).getLayoutParams().width = k; ((NetworkImageView)localObject).getLayoutParams().height = k; ((NetworkImageView)localObject).setImage(paramReviewItem.thumbnailsPhotos[i]); ((NetworkImageView)localObject).setOnClickListener(this); ((NetworkImageView)localObject).setTag(Integer.valueOf(i)); this.mPhotosView.addView((View)localObject); i += 1; break; } } public void addComment(String paramString1, String paramString2, String paramString3, String paramString4) { Object localObject; boolean bool; if (this.mData.isApproveExpanded) { localObject = this.mData; if (this.mData.isApproveExpanded) break label96; bool = true; } while (true) { ((ReviewItem)localObject).isApproveExpanded = bool; localObject = new ReviewComment(); ((ReviewComment)localObject).type = paramString1; ((ReviewComment)localObject).commentUsername = paramString2; try { if ("1".equals(paramString1)) ((ReviewComment)localObject).content = paramString4; while (true) { this.mData.addComment((ReviewComment)localObject); this.mData.isCommentExpanded = true; updateComment(); return; label96: bool = false; break; if (!"2".equals(paramString1)) continue; paramString1 = new JSONArray(); paramString2 = new JSONObject(); paramString2.put("text", getResources().getString(R.string.ugc_review_comment_tip) + paramString3 + ":"); paramString1.put(paramString2); paramString2 = new JSONObject(); paramString2.put("text", paramString4); paramString1.put(paramString2); ((ReviewComment)localObject).content = paramString1.toString(); } } catch (JSONException paramString1) { while (true) paramString1.printStackTrace(); } } } public void onClick(View paramView) { int i = paramView.getId(); if (i == R.id.review_user_layout) { i = this.mData.sourceType; if (i == 0) if (DPApplication.instance().accountService().id() == this.mData.userId) { paramView = new Intent("android.intent.action.VIEW", Uri.parse("dianping://user")); getContext().startActivity(paramView); ((DPActivity)getContext()).statisticsEvent("shopinfo5", "shopinfo5_review_user", "", 0); } } label695: label760: do { do { return; paramView = new Intent("android.intent.action.VIEW", Uri.parse("dianping://user?userid=" + this.mData.userId)); break; } while ((i != 1) || (TextUtils.isEmpty(this.mData.sourceUrl))); paramView = new Intent("android.intent.action.VIEW", Uri.parse(this.mData.sourceUrl)); getContext().startActivity(paramView); return; if (i == R.id.more_photos) { paramView = new Intent("android.intent.action.VIEW", Uri.parse("dianping://reviewpicturegridlist")); paramView.putExtra("shopId", this.mData.shopId); paramView.putExtra("shopname", this.mData.shopName); paramView.putExtra("userId", this.mData.userId); if ((getContext() instanceof Activity)) getContext().startActivity(paramView); if ((getContext() instanceof Activity)) { ((DPActivity)getContext()).statisticsEvent("shopinfo5", "shopinfo5_review_pic", "更多", 0); return; } ((DPActivity)getContext()).statisticsEvent("shopinfo5", "shopinfo5_review_pic", "更多", 0); return; } Object localObject1; Object localObject2; Object localObject3; if ((paramView instanceof NetworkImageView)) { localObject1 = new ArrayList(); localObject2 = this.mData.photos; int j = localObject2.length; i = 0; while (i < j) { localObject3 = localObject2[i]; ((ArrayList)localObject1).add(new DPObject().edit().putString("Url", (String)localObject3).generate()); i += 1; } localObject2 = new Intent("android.intent.action.VIEW", Uri.parse("dianping://showcheckinphoto")); if (this.mData.shopName != null) ((Intent)localObject2).putExtra("shopname", this.mData.shopName); i = ((Integer)paramView.getTag()).intValue(); ((Intent)localObject2).putExtra("position", i); ((Intent)localObject2).putExtra("fromActivity", "ReviewPictureGridListActiviy"); try { paramView = ((BitmapDrawable)((NetworkImageView)paramView).getDrawable()).getBitmap(); localObject3 = new ByteArrayOutputStream(); paramView.compress(Bitmap.CompressFormat.JPEG, 90, (OutputStream)localObject3); ((Intent)localObject2).putExtra("currentbitmap", ((ByteArrayOutputStream)localObject3).toByteArray()); ((Intent)localObject2).putParcelableArrayListExtra("pageList", (ArrayList)localObject1); if ((getContext() instanceof Activity)) getContext().startActivity((Intent)localObject2); if ((getContext() instanceof Activity)) { ((DPActivity)getContext()).statisticsEvent("shopinfo5", "shopinfo5_review_pic", String.valueOf(i + 1), 0); return; } } catch (Exception paramView) { while (true) paramView.printStackTrace(); ((DPActivity)getContext()).statisticsEvent("shopinfo5", "shopinfo5_review_pic", String.valueOf(i + 1), 0); return; } } boolean bool; if ((i == R.id.review_content) || (i == R.id.review_content_expand)) { paramView = this.mData; if (!this.mData.isContentExpanded) { bool = true; paramView.isContentExpanded = bool; if (!this.mData.isContentExpanded) break label695; } for (i = 2147483647; ; i = 8) { setContentMaxLine(i); return; bool = false; break; } } if (i == R.id.review_content_translate) { paramView = this.mData; if (!this.mData.isOriginalContent) { bool = true; paramView.isOriginalContent = bool; localObject1 = this.mTranslate; if (!this.mData.isOriginalContent) break label845; paramView = getResources().getString(R.string.ugc_review_translate_to_chinese); ((NovaTextView)localObject1).setText(paramView); localObject1 = this.mContent; if (!this.mData.isOriginalContent) break label859; paramView = this.mData.content; ((TextView)localObject1).setText(paramView); if (!this.mData.isContentExpanded) break label870; i = 2147483647; setContentMaxLine(i); localObject1 = this.mTranslate; if (!this.mData.isOriginalContent) break label877; } for (paramView = "translate"; ; paramView = "origin") { ((NovaTextView)localObject1).setGAString(paramView); return; bool = false; break; paramView = getResources().getString(R.string.ugc_review_translate_show_original); break label760; paramView = this.mData.translatedContent; break label788; i = 8; break label808; } } if (i == R.id.review_approve_count) { paramView = this.mData; if (!this.mData.isApproveExpanded) { bool = true; paramView.isApproveExpanded = bool; if (!this.mData.isApproveExpanded) break label989; if (this.mData.isCommentExpanded) { paramView = this.mData; if (this.mData.isCommentExpanded) break label983; } } for (bool = true; ; bool = false) { paramView.isCommentExpanded = bool; requestApprove(this.mID, this.mIndex, this.mData); return; bool = false; break; } this.mApproveCount.setCompoundDrawables(null, null, null, null); this.mApproveCount.setSelected(false); this.mCommentsLayout.setVisibility(8); return; } if (i == R.id.review_comment_count) { paramView = this.mData; if (!this.mData.isCommentExpanded) { bool = true; paramView.isCommentExpanded = bool; if (!this.mData.isCommentExpanded) break label1123; if (this.mData.isApproveExpanded) { paramView = this.mData; if (this.mData.isApproveExpanded) break label1117; } } for (bool = true; ; bool = false) { paramView.isApproveExpanded = bool; requestComments(this.mID, this.mIndex, this.mData); return; bool = false; break; } this.mCommentCount.setCompoundDrawables(null, null, null, null); this.mCommentCount.setSelected(false); this.mCommentsLayout.setVisibility(8); return; } if (i == R.id.comment_retry) { requestComments(this.mID, this.mIndex, this.mData); return; } if (i == R.id.approve_retry) { requestApprove(this.mID, this.mIndex, this.mData); return; } if (i == R.id.review_more) { showMore(this.mMoreView); return; } if (i == R.id.add_approve) { if ((((DPActivity)getContext()).accountService().token() != null) && (this.mShowMorePopupWindow != null)) this.mShowMorePopupWindow.dismiss(); ((DPActivity)getContext()).statisticsEvent("shopinfo5", "shopinfo5_review_like", "", 0); if (((DPActivity)getContext()).accountService().token() == null) { LoginUtils.setLoginGASource(getContext(), "rev_useful"); ((DPActivity)getContext()).accountService().login(null); return; } addApprove(); updateComment(); return; } if ((i == R.id.add_comment) || (i == R.id.review_comment_btn) || (((paramView instanceof TextView)) && ((paramView.getTag() instanceof ReviewComment)))) { if ((((DPActivity)getContext()).accountService().token() != null) && (this.mShowMorePopupWindow != null)) this.mShowMorePopupWindow.dismiss(); if (((DPActivity)getContext()).accountService().token() == null) { ((DPActivity)getContext()).accountService().login(null); return; } localObject1 = "0"; localObject2 = "1"; localObject3 = ""; if ((paramView.getTag() instanceof ReviewComment)) { localObject1 = ((ReviewComment)paramView.getTag()).commentId; localObject2 = "2"; localObject3 = ((ReviewComment)paramView.getTag()).commentUsername; } if (this.mCommentListener != null) { this.mCommentListener.onComment(this.mIndex, this.mData.reviewId, (String)localObject1, (String)localObject2, (String)localObject3); return; } } if (i == R.id.review_report) { if ((((DPActivity)getContext()).accountService().token() != null) && (this.mShowMorePopupWindow != null)) this.mShowMorePopupWindow.dismiss(); if (((DPActivity)getContext()).accountService().token() == null) { ((DPActivity)getContext()).accountService().login(null); return; } paramView = new AlertDialog.Builder(getContext()); paramView.setTitle("举报类型"); localObject1 = new DialogInterface.OnClickListener() { public void onClick(DialogInterface paramDialogInterface, int paramInt) { paramDialogInterface = Uri.parse("http://m.api.dianping.com/review/reportugcfeed.bin").buildUpon(); ArrayList localArrayList = new ArrayList(); localArrayList.add("cx"); localArrayList.add(DeviceUtils.cxInfo("shopreport")); localArrayList.add("feedtype"); localArrayList.add("1"); localArrayList.add("causetype"); localArrayList.add(String.valueOf(paramInt + 1)); localArrayList.add("mainid"); localArrayList.add(String.valueOf(ReviewItemView.this.mData.reviewId)); paramDialogInterface = BasicMApiRequest.mapiPost(paramDialogInterface.toString(), (String[])localArrayList.toArray(new String[localArrayList.size()])); DPApplication.instance().mapiService().exec(paramDialogInterface, new RequestHandler() { public void onRequestFailed(Request paramRequest, Response paramResponse) { } public void onRequestFinish(Request paramRequest, Response paramResponse) { Toast.makeText(DPApplication.instance(), "举报已提交!", 0).show(); } }); } }; paramView.setItems(new String[] { "广告", "反动", "色情", "灌水" }, (DialogInterface.OnClickListener)localObject1); paramView.setNegativeButton("取消", null); paramView.show(); return; } if (i == R.id.all_reviews) { paramView = Uri.parse("dianping://additionalreview").buildUpon(); paramView.appendQueryParameter("id", String.valueOf(this.mData.shopId)); paramView.appendQueryParameter("userid", String.valueOf(this.mData.userId)); paramView = new Intent("android.intent.action.VIEW", paramView.build()); ((NovaActivity)getContext()).startActivity(paramView); return; } if (i == R.id.review_edit_btn) { paramView = Uri.parse("dianping://ugcaddreview").buildUpon(); paramView.appendQueryParameter("shopid", String.valueOf(this.mData.shopId)); paramView.appendQueryParameter("reviewID", this.mData.reviewId); paramView = new Intent("android.intent.action.VIEW", paramView.build()); getContext().startActivity(paramView); return; } if ((i != R.id.all_friends_review) || (this.mExpandFriendsListener == null)) continue; this.mExpandFriendsListener.onExpand(); } while (i != R.id.review_delete_btn); label788: label808: label845: label859: label870: label877: paramView = new AlertDialog.Builder(getContext()); label983: label989: label1123: paramView.setTitle("提示").setMessage(getResources().getString(R.string.ugc_temp_review_delete_prompt)).setPositiveButton("确定", new DialogInterface.OnClickListener() { public void onClick(DialogInterface paramDialogInterface, int paramInt) { ReviewItemView.this.deleteOwnReview(ReviewItemView.this.mIndex); } }).setNegativeButton("取消", new DialogInterface.OnClickListener() { public void onClick(DialogInterface paramDialogInterface, int paramInt) { } }); label1117: paramView.show(); } protected void onFinishInflate() { super.onFinishInflate(); this.mUserLayout = findViewById(R.id.review_user_layout); this.mUsername = ((TextView)findViewById(R.id.review_user_name)); this.mUserLabels = ((LinearLayout)findViewById(R.id.review_user_labels)); this.mSource = ((TextView)findViewById(R.id.review_source)); this.mHonorView = ((NetworkImageView)findViewById(R.id.review_honour)); this.mShopPower = ((ShopPower)findViewById(R.id.shop_power)); this.mAvgPrice = ((TextView)findViewById(R.id.shop_average_price)); this.mCreatedTime = ((TextView)findViewById(R.id.review_created_time)); this.mContent = ((TextView)findViewById(R.id.review_content)); this.mContent.setOnClickListener(this); this.mContentExpandView = ((ImageView)findViewById(R.id.review_content_expand)); this.mContentExpandView.setOnClickListener(this); this.mTranslateLayout = findViewById(R.id.review_content_translate_layout); this.mTranslate = ((NovaTextView)findViewById(R.id.review_content_translate)); this.mTranslate.setOnClickListener(this); this.mPhotosView = ((ViewGroup)findViewById(R.id.review_photos)); this.mApproveCount = ((TextView)findViewById(R.id.review_approve_count)); this.mApproveCount.setOnClickListener(this); this.mCommentCount = ((TextView)findViewById(R.id.review_comment_count)); this.mCommentCount.setOnClickListener(this); this.mCommentsLayout = ((ViewGroup)findViewById(R.id.review_comments)); this.mDeleteView = findViewById(R.id.review_delete_btn); this.mEditView = findViewById(R.id.review_edit_btn); this.mCommentView = findViewById(R.id.review_comment_btn); this.mMoreView = findViewById(R.id.review_more); this.mMoreView.setOnClickListener(this); this.mDeleteView = findViewById(R.id.review_delete_btn); this.mDeleteView.setOnClickListener(this); this.mEditView = findViewById(R.id.review_edit_btn); this.mEditView.setOnClickListener(this); this.mCommentView = findViewById(R.id.review_comment_btn); this.mCommentView.setOnClickListener(this); this.mAddApproveAnimView = findViewById(R.id.new_approve); this.mAllReviewsView = findViewById(R.id.all_reviews); this.mAllReviewsView.setOnClickListener(this); this.mAllFriendsReviewsView = ((TextView)findViewById(R.id.all_friends_review)); this.mAllFriendsReviewsView.setOnClickListener(this); } public void setData(ReviewItem paramReviewItem) { this.mData = paramReviewItem; setID(paramReviewItem.ID); label87: Object localObject1; if (this.mUserListener == null) { this.mUserLayout.setOnClickListener(this); this.mUsername.setText(paramReviewItem.username); setUserLabels(paramReviewItem.userLabels); this.mSource.setText(paramReviewItem.sourceName); if (TextUtils.isEmpty(paramReviewItem.honourUrl)) break label393; this.mHonorView.setVisibility(0); this.mHonorView.setImage(paramReviewItem.honourUrl); this.mShopPower.setPower(paramReviewItem.shopPower); this.mAvgPrice.setText(paramReviewItem.avgPrice); this.mCreatedTime.setText(paramReviewItem.createdAt); Object localObject2 = this.mContent; if (!paramReviewItem.isOriginalContent) break label405; localObject1 = paramReviewItem.content; label137: ((TextView)localObject2).setText((CharSequence)localObject1); if (!paramReviewItem.isContentExpanded) break label413; i = 2147483647; label154: setContentMaxLine(i); if (TextUtils.isEmpty(paramReviewItem.translatedContent)) break label441; this.mTranslateLayout.setVisibility(0); localObject2 = this.mTranslate; if (!paramReviewItem.isOriginalContent) break label420; localObject1 = getResources().getString(R.string.ugc_review_translate_to_chinese); label201: ((NovaTextView)localObject2).setText((CharSequence)localObject1); localObject2 = this.mTranslate; if (!paramReviewItem.isOriginalContent) break label434; localObject1 = "translate"; label222: ((NovaTextView)localObject2).setGAString((String)localObject1); label227: if ((paramReviewItem.thumbnailsPhotos == null) || (paramReviewItem.photos == null)) break label453; this.mPhotosView.setVisibility(0); updatePhotos(paramReviewItem); label254: updateComment(); if (paramReviewItem.sourceType != 1) break label465; this.mMoreView.setVisibility(8); this.mDeleteView.setVisibility(8); this.mEditView.setVisibility(8); this.mCommentView.setVisibility(8); label302: paramReviewItem = this.mAllReviewsView; if (!this.mData.hasMoreReviews()) break label567; } label393: label405: label413: label420: label434: label567: for (int i = 0; ; i = 8) { paramReviewItem.setVisibility(i); if (!this.mData.hasMoreFriendReviews()) break label574; this.mAllFriendsReviewsView.setVisibility(0); this.mAllFriendsReviewsView.setText(getResources().getString(R.string.ugc_review_more_friend_review, new Object[] { Integer.valueOf(this.mData.friendCount) })); return; this.mUserLayout.setOnClickListener(this.mUserListener); break; this.mHonorView.setVisibility(8); break label87; localObject1 = paramReviewItem.translatedContent; break label137; i = 8; break label154; localObject1 = getResources().getString(R.string.ugc_review_translate_show_original); break label201; localObject1 = "origin"; break label222; label441: this.mTranslateLayout.setVisibility(8); break label227; label453: this.mPhotosView.setVisibility(8); break label254; label465: if (paramReviewItem.sourceType != 0) break label302; if ((this.mData.belongType == 0) || (this.mData.belongType == 2)) { this.mMoreView.setVisibility(0); this.mDeleteView.setVisibility(8); this.mEditView.setVisibility(8); this.mCommentView.setVisibility(8); break label302; } this.mMoreView.setVisibility(8); this.mDeleteView.setVisibility(0); this.mEditView.setVisibility(0); this.mCommentView.setVisibility(0); break label302; } label574: this.mAllFriendsReviewsView.setVisibility(8); } public void setIndex(int paramInt) { this.mIndex = paramInt; } public void setOnCommentListener(OnCommentListener paramOnCommentListener) { this.mCommentListener = paramOnCommentListener; } public void setOnDeleteOwnReviewListener(OnDeleteOwnReviewListener paramOnDeleteOwnReviewListener) { this.mDeleteListener = paramOnDeleteOwnReviewListener; } public void setOnExpandFriendsListener(OnExpandFriendsListener paramOnExpandFriendsListener) { this.mExpandFriendsListener = paramOnExpandFriendsListener; } public void setOnNotifyUpdateListener(OnNotifyUpdateListener paramOnNotifyUpdateListener) { this.mNotifyListener = paramOnNotifyUpdateListener; } public void setUserListener(View.OnClickListener paramOnClickListener) { this.mUserListener = paramOnClickListener; } public void update(ReviewItem paramReviewItem) { this.mAvgPrice.setText(paramReviewItem.avgPrice); this.mShopPower.setPower(paramReviewItem.shopPower); this.mContent.setText(paramReviewItem.content); updatePhotos(paramReviewItem); } public static abstract interface OnCommentListener { public abstract void onComment(int paramInt, String paramString1, String paramString2, String paramString3, String paramString4); } public static abstract interface OnDeleteOwnReviewListener { public abstract void onDelete(int paramInt); } public static abstract interface OnExpandFriendsListener { public abstract void onExpand(); } public static abstract interface OnNotifyUpdateListener { public abstract void onNotify(int paramInt, String paramString); } } /* Location: C:\Users\xuetong\Desktop\dazhongdianping7.9.6\ProjectSrc\classes-dex2jar.jar * Qualified Name: com.dianping.hotel.ugc.ReviewItemView * JD-Core Version: 0.6.0 */
[ "xuetong@dkhs.com" ]
xuetong@dkhs.com
d025957c4a765d4a41744434d8e51ecc827cf1fe
e9acd62827c3ab9be156519ecc805affa036c66e
/src/main/java/battleship/Score.java
120e791d513c060626b87103313eda9384a606ec
[]
no_license
Auger89/Battleship
1e2fc8a4743cb2c85fc9216d647e7f67a2f74e9a
c94aac08cae197e0d78fe326dc2dae546f32f0e8
refs/heads/master
2021-01-20T09:20:46.259327
2017-06-15T19:21:37
2017-06-15T19:21:37
90,239,928
0
0
null
null
null
null
UTF-8
Java
false
false
2,170
java
package battleship; import javax.persistence.*; import java.util.Set; /** * Created by Auger on 17/05/2017. * Score Class */ @Entity public class Score { @Id @GeneratedValue(strategy=GenerationType.AUTO) private long id; private double score; private String finishDate; @ManyToOne(fetch=FetchType.EAGER) @JoinColumn(name="player_id") private Player player; @ManyToOne(fetch=FetchType.EAGER) @JoinColumn(name="game_id") private Game game; // @OneToMany(mappedBy="score", fetch=FetchType.EAGER) // private Set<Participation> participations; // Constructors public Score() {} public Score(double score, String finishDate, Participation participation) { this.game = participation.getGame(); this.player = participation.getPlayer(); this.score = score; this.finishDate = finishDate; } // ToString @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("Score{"); sb.append(", "); sb.append("id="); sb.append(id); sb.append(", "); sb.append("score="); sb.append(score); sb.append(", "); sb.append("game="); sb.append(game); sb.append(", "); sb.append("player="); sb.append(player); sb.append(", "); sb.append("finishDate="); sb.append(finishDate); sb.append(", "); sb.append("}"); return sb.toString(); } // Getters & Setters public long getId() { return id; } public double getScore() { return score; } public String getFinishDate() { return finishDate; } public Player getPlayer() { return player; } public Game getGame() { return game; } public void setScore(double score) { this.score = score; } public void setFinishDate(String finishDate) { this.finishDate = finishDate; } public void setPlayer(Player player) { this.player = player; } public void setGame(Game game) { this.game = game; } }
[ "auger89@gmail.com" ]
auger89@gmail.com
9d7ee08e6d27f9f559aa5909bcab7da3131aa04a
98e53f3932ecce2a232d0c314527efe49f62e827
/org.rcfaces.core/src/org/rcfaces/core/internal/taglib/ConvertIntegerTag.java
eaf6a87997fa2fb2261e65b38f9e1762a21a15a6
[]
no_license
Vedana/rcfaces-2
f053a4ebb8bbadd02455d89a5f1cb870deade6da
4112cfe1117c4bfcaf42f67fe5af32a84cf52d41
refs/heads/master
2020-04-02T15:03:08.653984
2014-04-18T09:36:54
2014-04-18T09:36:54
11,175,963
1
0
null
null
null
null
UTF-8
Java
false
false
495
java
/* * $Id: ConvertIntegerTag.java,v 1.2 2013/07/03 12:25:06 jbmeslin Exp $ */ package org.rcfaces.core.internal.taglib; /** * * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $) * @version $Revision: 1.2 $ $Date: 2013/07/03 12:25:06 $ */ public class ConvertIntegerTag extends ConvertNumberTag { private static final long serialVersionUID = 2036254497469923597L; protected String getDefaultConverterId() { return "org.rcfaces.Integer"; } }
[ "jbmeslin@vedana.com" ]
jbmeslin@vedana.com
62e1d90d4bb532d1f8a7f9354523e883ac638a59
788868cf7361408518be6ac62f2a843910880bde
/Side.java
05bcf3d775b259cc177b15ba50140e5ce1c0993f
[]
no_license
SpaceAzur/Prog_objet_projet
0c872d113335901cc590449beb90cc091975d71a
0cff04111d35b7d13a3318394a2c6fd20f632d39
refs/heads/master
2021-07-04T18:14:00.142295
2019-06-24T21:30:55
2019-06-24T21:30:55
188,418,439
0
0
null
2020-10-13T14:07:44
2019-05-24T12:30:38
Java
UTF-8
Java
false
false
26,256
java
package a38; import java.awt.Color; import java.awt.Insets; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import javax.swing.BorderFactory; import javax.swing.JComponent; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JTextArea; public class Side extends JPanel { Interface interf; SideControl sctrl; ArrayList<JComponent> fields; JLabel title; DateFormat dateF = new SimpleDateFormat("dd/MM/yyyy"); public Side(Interface interf) { this.interf = interf; this.sctrl = new SideControl(interf); this.fields = new ArrayList<>(); setLocation(interf.MENU + interf.CENTER, 0); setSize(interf.SIDE, interf.HEIGHT); setBackground(interf.blue); setLayout(null); setBorder(BorderFactory.createMatteBorder(0, 0, 0, 0, interf.yellow)); } private void addButtons(A38Object obj) { EditButton edit = new EditButton(this, obj); add(edit); DeleteButton delete = new DeleteButton(this, obj); add(delete); } public void setTitle(String s) { title = new JLabel(s); title.setFont(interf.sideTitleFont); title.setForeground(Color.WHITE); title.setSize(title.getPreferredSize()); title.setLocation(interf.SIDE / 2 - title.getWidth() / 2, 65); add(title); } public void showError(String e) { removeAll(); setTitle("Erreur"); JTextArea err = new JTextArea(e); err.setSize(300, 100); err.setMargin(new Insets(10, 10, 10, 10)); err.setLocation(50, 150); err.setLineWrap(true); err.setEditable(false); add(err); repaint(); } public void showInstitution(Institution inst) { setTitle(inst.getRaisonSociale()); SideLabel idl = new SideLabel("ID : " + inst.getId(), this, 50, 150); SideLabel adresse = new SideLabel("<html>Adresse : <br>" + inst.getAdresse() + "</html>", this, 50, 200); SideLabel email = new SideLabel("<html>Mail : <br>" + inst.getEmail() + "</html>", this, 50, 280); SideLabel telephone = new SideLabel("Tel : " + inst.getTelephone(), this, 50, 360); SideButton materiel = new SideButton(inst, interf.menu.materiels, this, 25, 440); SideButton emprunts = new SideButton(inst, interf.menu.emprunts, this, 215, 440); SideButton batiments = new SideButton(inst, interf.menu.batiments, this, 25, 520); SideButton personnes = new SideButton(inst, interf.menu.personnes, this, 215, 520); SideButton salles = new SideButton(inst, interf.menu.salles, this, 25, 600); SideButton armoires = new SideButton(inst, interf.menu.armoires, this, 215, 600); addButtons(inst); } public void showIndividu(Individu indiv) { setTitle(indiv.getPrenom() + " " + indiv.getNom()); SideLabel idl = new SideLabel("ID : " + indiv.getId(), this, 50, 150); SideLabel status = new SideLabel("Status : " + indiv.getStatus(), this, 50, 200); SideLabel adresse = new SideLabel("<html>Adresse : <br>" + indiv.getAdresse() + "</html>", this, 50, 250); SideLabel email = new SideLabel("<html>Mail : <br>" + indiv.getEmail() + "</html>", this, 50, 330); SideLabel telephone = new SideLabel("Tel : " + indiv.getTelephone(), this, 50, 410); SideLabel institution = new SideLabel("<html>Institution : <br>" + indiv.getInstitution().getRaisonSociale(), this, 50, 460); SideButton materiel = new SideButton(indiv, interf.menu.emprunts, this, 25, 600); SideButton batiment = new SideButton(indiv, interf.menu.batiments, this, 215, 600); addButtons(indiv); } public void showMateriel(Materiel mat) { setTitle(mat.getModele()); SideLabel idl = new SideLabel("ID : " + mat.getId(), this, 50, 150); SideLabel proprio = new SideLabel("Propriétaire : " + mat.getProprietaire().getRaisonSociale(), this, 50, 180); SideLabel marque = new SideLabel("Marque : " + mat.getMarque(), this, 50, 210); SideLabel prix = new SideLabel("Prix : " + mat.getPrixAchat(), this, 50, 240); SideLabel date = new SideLabel("<html>Date d'achat : <br>" + dateF.format(mat.getDateAchat()) + "</html>", this, 50, 270); SideLabel etat = new SideLabel("Etat : " + mat.getEtat(), this, 50, 330); SideLabel nature = new SideLabel("Nature : " + mat.getNature(), this, 50, 360); if (mat instanceof Terminal) { Terminal ter = (Terminal) mat; SideLabel os = new SideLabel("OS : " + ter.getOS(), this, 50, 390); SideLabel taille = new SideLabel("Ecran(\") : " + ter.getTailleEcran(), this, 50, 420); SideLabel reso = new SideLabel("Resolution : " + ter.getXResolution() + "*" + ter.getYResolution(), this, 50, 450); } SideLabel connec = new SideLabel("Connectique : " + mat.getConnectique(), this, 50, 480); SideButton emp = new SideButton(mat, interf.menu.emprunts, this, 215, 600); SideButton armoires = new SideButton(mat, interf.menu.armoires, this, 25, 600); addButtons(mat); } public void showEmprunt(Emprunt emprunt) { setTitle("Emprunt n°" + emprunt.getId()); SideLabel debut = new SideLabel("<html>Début :<br>" + dateF.format(emprunt.getDebut()) + "</html>", this, 50, 150); SideLabel fin = new SideLabel("<html>Fin :<br>" + dateF.format(emprunt.getFin()) + "</html>", this, 50, 210); SideLabel materiel = new SideLabel("Matériel : " + emprunt.getMateriel().getModele(), this, 50, 270); SideLabel emprunteur = new SideLabel("<html>Emprunteur : <br>" + emprunt.getEmprunteur().getPrenom() + " " + emprunt.getEmprunteur().getNom(), this, 50, 300); String statuts = emprunt.isRendu() ? "Rendu" : "Non rendu"; SideLabel statut = new SideLabel("Statut : " + statuts, this, 50, 360); SideLabel raison = new SideLabel("Raison : " + emprunt.getRaison(), this, 50, 390); if (statuts.equals("Non rendu") && emprunt.getFin().before(Calendar.getInstance().getTime())) fin.setForeground(Color.RED); SideButton mat = new SideButton(emprunt, interf.menu.materiels, this, 215, 600); addButtons(emprunt); } public void showBatiment(Batiment batiment) { setTitle(batiment.getNom()); SideLabel idl = new SideLabel("ID : " + batiment.getId(), this, 50, 150); SideLabel proprio = new SideLabel("Propriétaire : " + batiment.getProprietaire().getRaisonSociale(), this, 50, 200); SideLabel adresse = new SideLabel("Adresse : " + batiment.getAdresse(), this, 50, 250); SideLabel respo = new SideLabel( "Responsable : " + batiment.getResponsable().getPrenom() + " " + batiment.getResponsable().getNom(), this, 50, 300); SideButton salle = new SideButton(batiment, interf.menu.salles, this, 215, 600); SideButton armoire = new SideButton(batiment, interf.menu.armoires, this, 25, 600); SideButton materiel = new SideButton(batiment, interf.menu.materiels, this, 215, 520); addButtons(batiment); } public void showSalle(Salle salle) { setTitle(salle.getNom()); SideLabel idl = new SideLabel("ID : " + salle.getId(), this, 50, 150); SideLabel batiment = new SideLabel("Batiment : " + salle.getLocalisation().getNom(), this, 50, 200); SideLabel etage = new SideLabel("Etage : " + salle.getEtage(), this, 50, 250); SideLabel surface = new SideLabel("Surface : " + salle.getSurface(), this, 50, 300); SideButton armoire = new SideButton(salle, interf.menu.armoires, this, 25, 600); SideButton materiel = new SideButton(salle, interf.menu.materiels, this, 215, 600); addButtons(salle); } public void showArmoire(Armoire armoire) { setTitle(armoire.getNom()); SideLabel idl = new SideLabel("ID : " + armoire.getId(), this, 50, 150); SideLabel salle = new SideLabel("Salle : " + armoire.getLocalisation().getNom(), this, 50, 200); SideLabel bat = new SideLabel("Batiment : " + armoire.getLocalisation().getLocalisation().getNom(), this, 50, 250); SideButton materiel = new SideButton(armoire, interf.menu.materiels, this, 215, 600); addButtons(armoire); } public void editIndividu(Individu individu) { setTitle(individu.getPrenom() + " " + individu.getNom()); fields.clear(); createFieldLateral("Prénom", individu.getPrenom(), 175, false); createFieldLateral("Nom", individu.getNom(), 225, false); SideComboBox status = createDropdownLateral("Status", new String[] { "étudiant", "professeur" }, 275, true); status.setSelectedItem(individu.getStatus()); createFieldLateral("Adresse", individu.getAdresse(), 325, false); createFieldLateral("Mail", individu.getEmail(), 375, false); createFieldLateral("Téléphone", individu.getTelephone(), 425, true); ArrayList<Institution> institutions = new ArrayList<Institution>(interf.mod.getInstitutions().values()); String[] insts = new String[institutions.size()]; for (int i = 0; i < institutions.size(); i++) { insts[i] = institutions.get(i).getRaisonSociale(); } SideComboBox institution = createDropdownLateral("Institution", insts, 475, true); institution.setSelectedItem(individu.getInstitution().getRaisonSociale()); SideSaveButton save = new SideSaveButton(this, null, fields); } private void createField(String k, String v, int y) { SideLabel label = new SideLabel(k, this, 50, y); SideTextField field = new SideTextField(k, v, this, 50, y + 30); fields.add(field); } private void createFieldLateral(String k, String v, int y, boolean little) { SideLabel label = new SideLabel(k, this, 50, y); SideTextField field; if (little) { field = new SideTextField(k, v, this, 200, y - 7); field.setSize(150, 30); } else { field = new SideTextField(k, v, this, 150, y - 7); field.setSize(200, 30); } fields.add(field); } private SideComboBox createDropdownLateral(String k, String[] vals, int y, boolean little) { SideLabel label = new SideLabel(k, this, 50, y); SideComboBox combo = new SideComboBox(k, vals); combo.setFont(interf.tableFont); if (little) { combo.setLocation(200, y - 7); combo.setSize(150, 30); } else { combo.setLocation(150, y - 7); combo.setSize(200, 30); } add(combo); fields.add(combo); return combo; } public void editEmprunt(Emprunt emprunt) { setTitle("Emprunt n°" + emprunt.getId()); fields.clear(); ArrayList<Individu> individus = interf.mod.getIndividus(null); String[] indivs = new String[individus.size()]; for (int i = 0; i < individus.size(); i++) { indivs[i] = individus.get(i).getPrenom() + " " + individus.get(i).getNom(); } SideComboBox emprunteur = createDropdownLateral("Emprunteur", indivs, 185, true); emprunteur.setSelectedItem(emprunt.getEmprunteur().getPrenom() + " " + emprunt.getEmprunteur().getNom()); ArrayList<Materiel> materiels = interf.mod.getMateriels(null); String[] matos = new String[materiels.size()]; for (int i = 0; i < materiels.size(); i++) { matos[i] = materiels.get(i).getMarque() + " " + materiels.get(i).getModele() + " (" + materiels.get(i).getId() + ")"; } SideComboBox materiel = createDropdownLateral("Materiel", matos, 235, false); materiel.setSelectedItem(emprunt.getMateriel().getMarque() + " " + emprunt.getMateriel().getModele() + " (" + emprunt.getMateriel().getId() + ")"); createFieldLateral("Date de début", dateF.format(emprunt.getDebut()), 285, true); createFieldLateral("Date de fin", dateF.format(emprunt.getFin()), 335, true); createFieldLateral("Raison", emprunt.getRaison(), 385, true); SideComboBox rendu = createDropdownLateral("Rendu", new String[] { "Oui", "Non" }, 435, true); String renduS = emprunt.isRendu() ? "Oui" : "Non"; rendu.setSelectedItem(renduS); SideSaveButton save = new SideSaveButton(this, emprunt, fields); SideCancelButton cancel = new SideCancelButton(this, emprunt); } public void newIndividu(A38Object filter) { setTitle("Nouvelle personne"); fields.clear(); createFieldLateral("Prénom", "", 175, false); createFieldLateral("Nom", "", 225, false); SideComboBox status = createDropdownLateral("Status", new String[] { "étudiant", "professeur" }, 275, true); createFieldLateral("Adresse", "", 325, false); createFieldLateral("Mail", "", 375, false); createFieldLateral("Téléphone", "", 425, true); ArrayList<Institution> institutions = new ArrayList<Institution>(interf.mod.getInstitutions().values()); String[] insts = new String[institutions.size()]; for (int i = 0; i < institutions.size(); i++) { insts[i] = institutions.get(i).getRaisonSociale(); } SideComboBox institution = createDropdownLateral("Institution", insts, 475, true); if (filter instanceof Institution) { Institution inst = (Institution) filter; institution.setSelectedItem(inst.getRaisonSociale()); } SideSaveButton save = new SideSaveButton(this, null, fields); } public void newEmprunt(A38Object filter) { setTitle("Nouvel emprunt"); fields.clear(); ArrayList<Individu> individus = interf.mod.getIndividus(null); String[] indivs = new String[individus.size()]; for (int i = 0; i < individus.size(); i++) { indivs[i] = individus.get(i).getPrenom() + " " + individus.get(i).getNom(); } SideComboBox emprunteur = createDropdownLateral("Emprunteur", indivs, 185, true); if (filter instanceof Individu) { Individu ind = (Individu) filter; emprunteur.setSelectedItem(ind.getPrenom() + " " + ind.getNom()); } ArrayList<Materiel> materiels = interf.mod.getMateriels(null); String[] matos = new String[materiels.size()]; for (int i = 0; i < materiels.size(); i++) { matos[i] = materiels.get(i).getMarque() + " " + materiels.get(i).getModele() + " (" + materiels.get(i).getId() + ")"; } SideComboBox materiel = createDropdownLateral("Materiel", matos, 235, false); if (filter instanceof Materiel) { Materiel mater = (Materiel) filter; materiel.setSelectedItem(mater.getMarque() + " " + mater.getModele() + " (" + mater.getId() + ")"); } Date today = Calendar.getInstance().getTime(); Calendar tom = Calendar.getInstance(); tom.setTime(today); tom.add(Calendar.DATE, 1); Date tomorrow = tom.getTime(); createFieldLateral("Date de début", dateF.format(today), 285, true); createFieldLateral("Date de fin", dateF.format(tomorrow), 335, true); createFieldLateral("Raison", "", 385, true); SideComboBox rendu = createDropdownLateral("Rendu", new String[] { "Oui", "Non" }, 435, true); SideSaveButton save = new SideSaveButton(this, null, fields); } public void newMateriel(A38Object filter) { setTitle("Nouveau matériel"); title.setLocation((int) title.getLocation().getX(), 15); fields.clear(); ArrayList<Institution> institutions = new ArrayList<Institution>(interf.mod.getInstitutions().values()); String[] proprietaires = new String[institutions.size()]; for (int i = 0; i < institutions.size(); i++) { proprietaires[i] = institutions.get(i).getRaisonSociale(); } SideComboBox proprio = createDropdownLateral("Propriétaire", proprietaires, 75, true); if (filter instanceof Institution) { Institution inst = (Institution) filter; proprio.setSelectedItem(inst.getRaisonSociale()); } createFieldLateral("Nature", "", 115, false); createFieldLateral("Modèle", "", 155, false); createFieldLateral("Marque", "", 195, false); SideComboBox type = createDropdownLateral("Type", new String[] { "peripheriques", "terminaux" }, 235, false); type.addItemListener(new MaterielComboControl(this)); createFieldLateral("Prix d'achat", "", 275, true); createFieldLateral("Date d'achat", "", 315, true); createFieldLateral("Etat", "", 355, false); createFieldLateral("Connectique", "", 555, true); SideSaveButton save = new SideSaveButton(this, null, fields); } public void editMateriel(Materiel materiel) { setTitle(materiel.getModele()); title.setLocation((int) title.getLocation().getX(), 15); fields.clear(); SideLabel idl = new SideLabel("ID : " + materiel.getId(), this, 50, 75); ArrayList<Institution> institutions = new ArrayList<Institution>(interf.mod.getInstitutions().values()); String[] proprietaires = new String[institutions.size()]; for (int i = 0; i < institutions.size(); i++) { proprietaires[i] = institutions.get(i).getRaisonSociale(); } SideComboBox proprio = createDropdownLateral("Propriétaire", proprietaires, 115, true); proprio.setSelectedItem(materiel.getProprietaire().getRaisonSociale()); createFieldLateral("Nature", materiel.getNature(), 155, false); createFieldLateral("Modèle", materiel.getModele(), 195, false); createFieldLateral("Marque", materiel.getMarque(), 235, false); createFieldLateral("Prix d'achat", Double.toString(materiel.getPrixAchat()), 275, true); createFieldLateral("Date d'achat", dateF.format(materiel.getDateAchat()), 315, true); createFieldLateral("Etat", materiel.getEtat(), 355, false); createFieldLateral("Connectique", "", 555, true); if (materiel instanceof Terminal) showTerminalOptions((Terminal) materiel); SideSaveButton save = new SideSaveButton(this, materiel, fields); SideCancelButton cancel = new SideCancelButton(this, materiel); } public void showTerminalOptions(Terminal t) { createFieldLateral("OS", t == null ? "" : t.getOS(), 395, false); createFieldLateral("Taille écran", t == null ? "" : Double.toString(t.getTailleEcran()), 435, true); createFieldLateral("Résolution X", t == null ? "" : Integer.toString(t.getXResolution()), 475, true); createFieldLateral("Résolution Y", t == null ? "" : Integer.toString(t.getYResolution()), 515, true); repaint(); } public void newInstitution(A38Object filter) { setTitle("Nouvelle Institution"); fields.clear(); createField("Raison sociale", "", 200); createField("Adresse", "", 280); createField("Mail", "", 360); createField("Téléphone", "", 440); SideSaveButton save = new SideSaveButton(this, null, fields); } public void editInstitution(Institution institution) { setTitle(institution.getRaisonSociale()); fields.clear(); SideLabel idl = new SideLabel("ID : " + institution.getId(), this, 50, 150); createField("Raison sociale", institution.getRaisonSociale(), 200); createField("Adresse", institution.getAdresse(), 280); createField("Mail", institution.getEmail(), 360); createField("Téléphone", institution.getTelephone(), 440); SideSaveButton save = new SideSaveButton(this, institution, fields); SideCancelButton cancel = new SideCancelButton(this, institution); } public void newBatiment(A38Object filter) { setTitle("Nouveau bâtiment"); fields.clear(); createField("Nom", "", 200); createField("Adresse", "", 280); ArrayList<Institution> institutions = new ArrayList<Institution>(interf.mod.getInstitutions().values()); String[] proprietaires = new String[institutions.size()]; for (int i = 0; i < institutions.size(); i++) { proprietaires[i] = institutions.get(i).getRaisonSociale(); } SideComboBox proprio = createDropdownLateral("Propriétaire", proprietaires, 380, true); if (filter instanceof Institution) { Institution inst = (Institution) filter; proprio.setSelectedItem(inst.getRaisonSociale()); } ArrayList<Individu> individus = interf.mod.getIndividus(null); String[] indivs = new String[individus.size()]; for (int i = 0; i < individus.size(); i++) { indivs[i] = individus.get(i).getPrenom() + " " + individus.get(i).getNom(); } SideComboBox indiv = createDropdownLateral("Responsable", indivs, 430, true); SideSaveButton save = new SideSaveButton(this, null, fields); } public void editBatiment(Batiment batiment) { setTitle(batiment.getNom()); fields.clear(); SideLabel idl = new SideLabel("ID : " + batiment.getId(), this, 50, 150); createField("Nom", batiment.getNom(), 200); createField("Adresse", batiment.getAdresse(), 280); ArrayList<Institution> institutions = new ArrayList<Institution>(interf.mod.getInstitutions().values()); String[] proprietaires = new String[institutions.size()]; for (int i = 0; i < institutions.size(); i++) { proprietaires[i] = institutions.get(i).getRaisonSociale(); } SideComboBox proprio = createDropdownLateral("Propriétaire", proprietaires, 380, true); proprio.setSelectedItem(batiment.getProprietaire().getRaisonSociale()); ArrayList<Individu> individus = interf.mod.getIndividus(null); String[] indivs = new String[individus.size()]; for (int i = 0; i < individus.size(); i++) { indivs[i] = individus.get(i).getPrenom() + " " + individus.get(i).getNom(); } SideComboBox indiv = createDropdownLateral("Responsable", indivs, 430, true); indiv.setSelectedItem(batiment.getResponsable().getPrenom() + " " + batiment.getResponsable().getNom()); SideSaveButton save = new SideSaveButton(this, batiment, fields); SideCancelButton cancel = new SideCancelButton(this, batiment); } public void newSalle(A38Object filter) { setTitle("Nouvelle salle"); fields.clear(); createField("Nom", "", 200); createField("Etage", "", 280); createField("Surface", "", 360); ArrayList<Batiment> batiments = interf.mod.getBatiments(null); String[] bats = new String[batiments.size()]; for (int i = 0; i < batiments.size(); i++) { bats[i] = batiments.get(i).getNom(); } SideComboBox batiment = createDropdownLateral("Batiment", bats, 460, true); if (filter instanceof Batiment) { Batiment bat = (Batiment) filter; batiment.setSelectedItem(bat.getNom()); } SideSaveButton save = new SideSaveButton(this, null, fields); } public void newArmoire(A38Object filter) { setTitle("Nouvelle armoire"); fields.clear(); createField("Nom", "", 200); ArrayList<Salle> salles = interf.mod.getSalles(null); String[] sals = new String[salles.size()]; for (int i = 0; i < salles.size(); i++) { sals[i] = salles.get(i).getNom() + " (" + salles.get(i).getId() + ")"; } SideComboBox salle = createDropdownLateral("Salle", sals, 460, true); if (filter instanceof Salle) { Salle sal = (Salle) filter; salle.setSelectedItem(sal.getNom() + " (" + sal.getId() + ")"); } SideSaveButton save = new SideSaveButton(this, null, fields); } public void editArmoire(Armoire armoire) { setTitle("Nouvelle armoire"); fields.clear(); SideLabel idl = new SideLabel("ID : " + armoire.getId(), this, 50, 150); createField("Nom", armoire.getNom(), 200); ArrayList<Salle> salles = interf.mod.getSalles(null); String[] sals = new String[salles.size()]; for (int i = 0; i < salles.size(); i++) { sals[i] = salles.get(i).getNom() + " (" + salles.get(i).getId() + ")"; } SideComboBox salle = createDropdownLateral("Salle", sals, 460, true); salle.setSelectedItem(armoire.getLocalisation().getNom() + " (" + armoire.getLocalisation().getId() + ")"); SideSaveButton save = new SideSaveButton(this, null, fields); } public void editSalle(Salle salle) { setTitle("Nouvelle salle"); fields.clear(); SideLabel idl = new SideLabel("ID : " + salle.getId(), this, 50, 150); createField("Nom", salle.getNom(), 200); createField("Etage", Integer.toString(salle.getEtage()), 280); createField("Surface", Integer.toString(salle.getSurface()), 360); ArrayList<Batiment> batiments = new ArrayList<Batiment>(interf.mod.getBatiments(null)); String[] bats = new String[batiments.size()]; for (int i = 0; i < batiments.size(); i++) { bats[i] = batiments.get(i).getNom(); } SideComboBox batiment = createDropdownLateral("Batiment", bats, 460, true); batiment.setSelectedItem(salle.getLocalisation()); SideSaveButton save = new SideSaveButton(this, salle, fields); SideCancelButton cancel = new SideCancelButton(this, salle); } }
[ "pierre.g.danel@gmail.com" ]
pierre.g.danel@gmail.com
330d97354ec690aa8bf7cd5ea45ccb335958e257
b036f8c1381585753bfddb8c3d2d248af8dd11ee
/CustomPlayerModels-1.17/src/main/java/com/tom/cpm/common/CommandCPM.java
c79926649f24bb1b4290d1f36a46b2463c671532
[ "MIT" ]
permissive
Skinforge/CustomPlayerModels
661e33a6d5c862397f4486237ae0c1135e723d26
6c81155d564acd005c00ab47f0cb6f0e7c894d2b
refs/heads/master
2023-08-28T05:13:16.755688
2021-10-03T17:32:49
2021-10-03T17:32:49
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,502
java
package com.tom.cpm.common; import net.minecraft.commands.CommandSourceStack; import net.minecraft.commands.Commands; import net.minecraft.commands.arguments.EntityArgument; import net.minecraft.network.chat.TranslatableComponent; import net.minecraft.server.level.ServerPlayer; import com.mojang.brigadier.CommandDispatcher; import com.mojang.brigadier.arguments.StringArgumentType; import com.mojang.brigadier.builder.LiteralArgumentBuilder; import com.mojang.brigadier.context.CommandContext; import com.mojang.brigadier.exceptions.CommandSyntaxException; public class CommandCPM { public static void register(CommandDispatcher<CommandSourceStack> dispatcher) { LiteralArgumentBuilder<CommandSourceStack> cpm = Commands.literal("cpm"). requires(CommandSource -> CommandSource.hasPermission(2)). then(Commands.literal("setskin"). then(Commands.literal("-f"). then(Commands.argument("target", EntityArgument.player()). then(Commands.argument("skin", StringArgumentType.greedyString()). executes(c -> execute(c, StringArgumentType.getString(c, "skin"), true, true)) ) ) ). then(Commands.literal("-t"). then(Commands.argument("target", EntityArgument.player()). then(Commands.argument("skin", StringArgumentType.greedyString()). executes(c -> execute(c, StringArgumentType.getString(c, "skin"), false, false)) ) ) ). then(Commands.literal("-r"). then(Commands.argument("target", EntityArgument.player()). executes(c -> execute(c, null, false, true)) ) ). then(Commands.argument("target", EntityArgument.player()). then(Commands.argument("skin", StringArgumentType.greedyString()). executes(c -> execute(c, StringArgumentType.getString(c, "skin"), false, true)) ) ) ); dispatcher.register(cpm); } private static int execute(CommandContext<CommandSourceStack> context, String skin, boolean force, boolean save) throws CommandSyntaxException { ServerPlayer player = EntityArgument.getPlayer(context, "target"); ServerHandler.netHandler.onCommand(player, skin, force, save); if(force)context.getSource().sendSuccess(new TranslatableComponent("commands.cpm.setskin.success.force", player.getDisplayName()), true); else context.getSource().sendSuccess(new TranslatableComponent("commands.cpm.setskin.success", player.getDisplayName()), true); return 1; } }
[ "tom5454a@gmail.com" ]
tom5454a@gmail.com
d8623c4c86a6a7ad4169658e1d3acceac29b4574
47f464cb0b5f5ce90b64512261718e6558da5180
/src/main/java/dao/SubjectDaoImpl.java
15bb9a1ef9e21e15f66d0ea09fe65f7ce28f76de
[]
no_license
YuliiaDenn/College2
c92ed07026bc98d0cbd555ffdf74ef8fe549c75e
21436aa1f3d9137c5d453744c6bef574f8dafcfa
refs/heads/master
2023-03-17T06:10:55.373461
2021-03-13T10:22:09
2021-03-13T10:22:09
341,932,586
0
0
null
null
null
null
UTF-8
Java
false
false
1,958
java
package dao; import java.util.List; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.Transaction; import entity.Subject; import util.HibernateUtil; public class SubjectDaoImpl extends HibernateUtil implements SubjectDao { private SessionFactory sessionFactory = getSessionFactory(); public void addSubject(Subject subject) { Session session = sessionFactory.getCurrentSession(); Transaction transaction = session.beginTransaction(); session.save(subject); transaction.commit(); session.close(); } public void updateSubject(Subject subject) { Session session = sessionFactory.getCurrentSession(); Transaction transaction = session.beginTransaction(); session.merge(subject); transaction.commit(); session.close(); } public void deleteSubject(Subject subject) { Session session = sessionFactory.getCurrentSession(); Transaction transaction = session.beginTransaction(); session.delete(subject); transaction.commit(); session.close(); } public Subject getSubjectById(int id) { Session session = sessionFactory.getCurrentSession(); Transaction transaction = session.beginTransaction(); Subject subject = session.get(Subject.class, id); transaction.commit(); session.close(); return subject; } public Subject getSubjectByName(String name) { Session session = sessionFactory.getCurrentSession(); Transaction transaction = session.beginTransaction(); Subject subject = session.createQuery("from Subject where name = '" + name + "'", Subject.class) .getSingleResult(); transaction.commit(); session.close(); return subject; } public List<Subject> getAllSubjects() { Session session = sessionFactory.getCurrentSession(); Transaction transaction = session.beginTransaction(); List<Subject> subjects = session.createQuery("from Subject", Subject.class).getResultList(); transaction.commit(); session.close(); return subjects; } }
[ "bnk4722@gmail.com" ]
bnk4722@gmail.com
4bed63d82d051c662a9b6e61619c11893f2ded4b
8bb8fc97ce3b836b45af8a5399085bd7e387330e
/mall-coupon/src/main/java/com/future/newmall/coupon/dao/HomeAdvDao.java
afba0ad513882191b677978e182c94b40243a5a5
[ "Apache-2.0" ]
permissive
wsq2025/Mall
be83a926d24c6071fee82b0a3c4b86d3b8da298a
d7080f869a00daea425eaa32a6fb31dbd871e444
refs/heads/master
2022-12-24T22:56:09.850029
2020-09-21T14:50:07
2020-09-21T14:50:07
297,369,651
0
0
null
null
null
null
UTF-8
Java
false
false
378
java
package com.future.newmall.coupon.dao; import com.future.newmall.coupon.entity.HomeAdvEntity; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; /** * 首页轮播广告 * * @author wsq * @email 673372988@qq.com * @date 2020-09-02 19:32:29 */ @Mapper public interface HomeAdvDao extends BaseMapper<HomeAdvEntity> { }
[ "673372988@qq.com" ]
673372988@qq.com
1e5312a6e220fc33cf59067c6bddd1518141661e
516415b223ad3943837ce34eacfe341e34a6aea9
/src/main/java/com/internet/shop/service/ProductService.java
5bccad3b633dfacd939a1e5d1806a4db310db24d
[]
no_license
Alkey/Shop
308b73166353228e15a4ef451d04541c712254db
7fe3edc7e6f1e951cb71b40c76a470b175475c38
refs/heads/master
2022-12-29T20:17:59.855695
2020-10-19T15:10:41
2020-10-19T15:10:41
292,245,525
0
0
null
null
null
null
UTF-8
Java
false
false
298
java
package com.internet.shop.service; import com.internet.shop.models.Product; import java.util.List; public interface ProductService { Product create(Product product); Product get(Long id); List<Product> getAll(); Product update(Product product); boolean delete(Long id); }
[ "noreply@github.com" ]
Alkey.noreply@github.com
4f63c20271097b16340c653854e1b72f04948c37
0be76764a7f188330f05cd813042bb1ef57ad209
/src/main/java/me/whiteship/demospringmvc/EventController.java
169566badb309fd65cf51b73828922297932eb9f
[]
no_license
eggme/demo-spring-mvc
39bb789e9248ad1b8d478fda4760893565d75d36
224dda531f4905eff72505291a4730c38318348c
refs/heads/master
2022-12-12T16:51:43.808022
2020-09-15T07:45:46
2020-09-15T07:45:46
295,653,035
0
0
null
null
null
null
UTF-8
Java
false
false
754
java
package me.whiteship.demospringmvc; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; @Controller public class EventController { @Autowired EventService eventService; //@RequestMapping(value="/events", method = RequestMethod.GET) // 옛날버전.. @GetMapping("/events") // 요즘은 이렇게 쓴답니다. Spring 4.3부터 지원 public String events(Model model){ //model.addAttribute("eventList", ); model.addAttribute("events", eventService.getEvents()); System.out.println(eventService.getEvents().size()); return "events"; } }
[ "kyyeto9984@naver.com" ]
kyyeto9984@naver.com
725d3424949620b2c20bff6491985ba83986277a
ceb38e9262c2933a4df0883d826062930de17842
/alien4cloud-core/src/test/java/alien4cloud/tosca/properties/constraints/PropertiesConstraintsTest.java
00483b61c502918991aa158cf7a9d7de9a4bff42
[ "Apache-2.0" ]
permissive
OresteVisari/alien4cloud
f7a80d89c0d20357eae5e53b63006a219f1dbf3a
6ac799fa686f7e7b5dd2a8618ba971cf20ec80d7
refs/heads/master
2021-01-17T22:08:36.857002
2015-03-12T16:28:14
2015-03-12T16:28:14
24,894,510
0
0
null
null
null
null
UTF-8
Java
false
false
10,443
java
package alien4cloud.tosca.properties.constraints; import alien4cloud.model.components.constraints.*; import lombok.Getter; import lombok.Setter; import org.junit.Test; import alien4cloud.tosca.normative.ToscaType; import alien4cloud.tosca.properties.constraints.exception.ConstraintValueDoNotMatchPropertyTypeException; import alien4cloud.tosca.properties.constraints.exception.ConstraintViolationException; import alien4cloud.utils.VersionUtil; import com.google.common.collect.Lists; public class PropertiesConstraintsTest { @Getter @Setter private static class TestClass { private Toto toto; } @Getter @Setter private static class Toto { private String tata; private String[] titi; } @Test public void testEqualConstraintSatisfied() throws Exception { EqualConstraint constraint = new EqualConstraint(); constraint.setEqual("1"); constraint.initialize(ToscaType.INTEGER); constraint.validate(1l); constraint.setEqual("toto"); constraint.initialize(ToscaType.STRING); constraint.validate("toto"); constraint.setEqual("1.6"); constraint.initialize(ToscaType.VERSION); constraint.validate(VersionUtil.parseVersion("1.6")); } @Test(expected = ConstraintViolationException.class) public void testEqualConstraintFailed() throws Exception { EqualConstraint constraint = new EqualConstraint(); constraint.setEqual("1"); constraint.initialize(ToscaType.INTEGER); constraint.validate(2l); } @Test(expected = ConstraintViolationException.class) public void testComplexEqualConstraintFailed() throws Exception { EqualConstraint constraint = new EqualConstraint(); constraint.setEqual( "toto:\n" + " tata: tata\n" + " titi:\n" + " - titi1\n" + " - titi2\n"); TestClass testClass = new TestClass(); testClass.setToto(new Toto()); testClass.getToto().setTata("tata"); testClass.getToto().setTiti(new String[] { "titi11", "titi22" }); constraint.validate(testClass); } @Test public void testInRangeConstraintSatisfied() throws Exception { InRangeConstraint constraint = new InRangeConstraint(); constraint.setInRange(Lists.newArrayList("1", "4")); constraint.initialize(ToscaType.INTEGER); constraint.setInRange(Lists.newArrayList("1.6", "1.8")); constraint.initialize(ToscaType.VERSION); constraint.validate(VersionUtil.parseVersion("1.7")); } @Test(expected = ConstraintViolationException.class) public void testInRangeConstraintFailed() throws Exception { InRangeConstraint constraint = new InRangeConstraint(); constraint.setInRange(Lists.newArrayList("1", "4")); constraint.initialize(ToscaType.INTEGER); constraint.validate(0l); } @Test(expected = ConstraintViolationException.class) public void testVersionInRangeConstraintFailed() throws Exception { InRangeConstraint constraint = new InRangeConstraint(); constraint.setInRange(Lists.newArrayList("1.6", "1.8")); constraint.initialize(ToscaType.VERSION); constraint.validate(VersionUtil.parseVersion("1.9")); } @Test public void testLengthMinLengthMaxLengthConstraintSatisfied() throws Exception { LengthConstraint lengthConstraint = new LengthConstraint(); lengthConstraint.setLength(5); lengthConstraint.validate("abcde"); MinLengthConstraint minLengthConstraint = new MinLengthConstraint(); minLengthConstraint.setMinLength(5); minLengthConstraint.validate("abcdef"); MaxLengthConstraint maxLengthConstraint = new MaxLengthConstraint(); maxLengthConstraint.setMaxLength(5); maxLengthConstraint.validate("abc"); } @Test(expected = ConstraintViolationException.class) public void testLengthConstraintFailed() throws Exception { LengthConstraint lengthConstraint = new LengthConstraint(); lengthConstraint.setLength(4); lengthConstraint.validate("abcde"); } @Test(expected = ConstraintViolationException.class) public void testMinLengthConstraintFailed() throws Exception { MinLengthConstraint lengthConstraint = new MinLengthConstraint(); lengthConstraint.setMinLength(5); lengthConstraint.validate("abc"); } @Test(expected = ConstraintViolationException.class) public void testMaxLengthConstraintFailed() throws Exception { MaxLengthConstraint lengthConstraint = new MaxLengthConstraint(); lengthConstraint.setMaxLength(5); lengthConstraint.validate("abcdefgh"); } @Test public void testGeConstraintSatisfied() throws Exception { GreaterOrEqualConstraint constraint = new GreaterOrEqualConstraint(); constraint.setGreaterOrEqual("2"); constraint.initialize(ToscaType.INTEGER); constraint.validate(2l); constraint.validate(3l); constraint.validate(Long.MAX_VALUE); constraint.setGreaterOrEqual("5"); constraint.initialize(ToscaType.INTEGER); constraint.validate(5l); constraint.validate(6l); constraint.validate(7l); constraint.setGreaterOrEqual("1.6.1"); constraint.initialize(ToscaType.VERSION); constraint.validate(VersionUtil.parseVersion("1.6.1")); constraint.validate(VersionUtil.parseVersion("1.6.1.1")); } @Test(expected = ConstraintViolationException.class) public void testGeConstraintFailed() throws Exception { GreaterOrEqualConstraint constraint = new GreaterOrEqualConstraint(); constraint.setGreaterOrEqual("1.6.1"); constraint.initialize(ToscaType.VERSION); constraint.validate(VersionUtil.parseVersion("1.6.0")); } @Test(expected = ConstraintValueDoNotMatchPropertyTypeException.class) public void testGeConstraintStringFailed() throws Exception { GreaterOrEqualConstraint constraint = new GreaterOrEqualConstraint(); constraint.setGreaterOrEqual("b"); constraint.initialize(ToscaType.STRING); constraint.validate("a"); } @Test(expected = ConstraintViolationException.class) public void testGeConstraintVersionFailed() throws Exception { GreaterOrEqualConstraint constraint = new GreaterOrEqualConstraint(); constraint.setGreaterOrEqual("2"); constraint.initialize(ToscaType.INTEGER); constraint.validate(1l); } @Test public void testLeConstraintSatisfied() throws Exception { LessOrEqualConstraint constraint = new LessOrEqualConstraint(); constraint.setLessOrEqual("2"); constraint.initialize(ToscaType.INTEGER); constraint.validate(2l); constraint.validate(1l); constraint.validate(Long.MIN_VALUE); constraint.setLessOrEqual("5"); constraint.initialize(ToscaType.INTEGER); constraint.validate(5l); constraint.validate(4l); constraint.validate(3l); } @Test(expected = ConstraintViolationException.class) public void testLeConstraintFailed() throws Exception { LessOrEqualConstraint constraint = new LessOrEqualConstraint(); constraint.setLessOrEqual("2"); constraint.initialize(ToscaType.INTEGER); constraint.validate(3l); } @Test public void testGtConstraintSatisfied() throws Exception { GreaterThanConstraint constraint = new GreaterThanConstraint(); constraint.setGreaterThan("2"); constraint.initialize(ToscaType.INTEGER); constraint.validate(3l); constraint.validate(Long.MAX_VALUE); constraint.setGreaterThan("5"); constraint.initialize(ToscaType.INTEGER); constraint.validate(6l); constraint.validate(7l); } @Test(expected = ConstraintViolationException.class) public void testGtConstraintFailed() throws Exception { GreaterThanConstraint constraint = new GreaterThanConstraint(); constraint.setGreaterThan("2"); constraint.initialize(ToscaType.INTEGER); constraint.validate(1l); } @Test public void testLtConstraintSatisfied() throws Exception { LessThanConstraint constraint = new LessThanConstraint(); constraint.setLessThan("2"); constraint.initialize(ToscaType.INTEGER); constraint.validate(1l); constraint.validate(Long.MIN_VALUE); constraint.setLessThan("5"); constraint.initialize(ToscaType.INTEGER); constraint.validate(4l); constraint.validate(3l); } @Test(expected = ConstraintViolationException.class) public void testLtConstraintFailed() throws Exception { LessThanConstraint constraint = new LessThanConstraint(); constraint.setLessThan("2"); constraint.initialize(ToscaType.INTEGER); constraint.validate(3l); } @Test public void testRegexpConstraintSatisfied() throws Exception { PatternConstraint constraint = new PatternConstraint(); constraint.initialize(ToscaType.STRING); constraint.setPattern("\\d+"); constraint.validate("123456"); } @Test(expected = ConstraintViolationException.class) public void testRegexpConstraintFailed() throws Exception { PatternConstraint constraint = new PatternConstraint(); constraint.setPattern("\\d+"); constraint.validate("1234er56"); } @Test public void testValidValuesConstraintStatisfied() throws Exception { ValidValuesConstraint constraint = new ValidValuesConstraint(); constraint.setValidValues(Lists.newArrayList("1", "2", "3", "4")); constraint.initialize(ToscaType.INTEGER); constraint.validate(1l); constraint.validate(2l); constraint.validate(3l); constraint.validate(4l); } @Test(expected = ConstraintViolationException.class) public void testValidValuesConstraintFailed() throws Exception { ValidValuesConstraint constraint = new ValidValuesConstraint(); constraint.setValidValues(Lists.newArrayList("1", "2", "3", "4")); constraint.initialize(ToscaType.INTEGER); constraint.validate(5l); } }
[ "luc.boutier@me.com" ]
luc.boutier@me.com
b2d302aec93d1f26fc0f7febb248a2d0315d4649
47957fadf0830d8a3c25e69ad4cf370c0b21c406
/android/app/src/androidTest/java/com/list/contact/example/contactlist/ApplicationTest.java
3af80d44c3fd430c8d245ce04062477216519357
[]
no_license
wsyssantos/FriendExchanger
3ed4704b38870b4d9fd6f49231603194f7a2ee8d
fab247d4268275e077a7f30d2a475de0b9eb2477
refs/heads/master
2021-01-12T13:59:59.556873
2016-09-30T16:44:14
2016-09-30T16:44:14
69,684,149
0
0
null
null
null
null
UTF-8
Java
false
false
367
java
package com.list.contact.example.contactlist; import android.app.Application; import android.test.ApplicationTestCase; /** * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> */ public class ApplicationTest extends ApplicationTestCase<Application> { public ApplicationTest() { super(Application.class); } }
[ "cloudwsy@gmail.com" ]
cloudwsy@gmail.com
d79733649ef0ac3645c0836af4720ec6c8aeb2ed
793bba6d90d971738c1e429e67e175fe6465f9c2
/src/test/java/com/tests/NVR03VerifyTheEmailTest.java
ea09f076e8e807f5c7a7c496b7b4f6c8c2e5f5f7
[]
no_license
vvoicu/t4greenkites
1fbada8fee25692ce86658ff76afe5a0ae79e425
6c002bef38c64f302230e4ee98f76319c45b71a7
refs/heads/master
2021-01-20T19:34:20.007542
2016-07-20T05:05:13
2016-07-20T05:05:13
63,049,741
0
0
null
null
null
null
UTF-8
Java
false
false
1,812
java
package com.tests; import org.junit.Test; import org.junit.runner.RunWith; import com.selenium.steps.EmailVerificationSteps; import com.selenium.steps.HeaderNavigationSteps; import com.selenium.steps.HomePageSteps; import com.selenium.steps.LeftMenuSteps; import com.selenium.steps.LoginSteps; import com.selenium.steps.NewVacationRequestSteps; import net.serenitybdd.junit.runners.SerenityParameterizedRunner; import net.thucydides.core.annotations.Steps; import net.thucydides.junit.annotations.UseTestDataFrom; import tools.Constants; @RunWith(SerenityParameterizedRunner.class) @UseTestDataFrom(value = Constants.CSV_FILES_PATH + "NewVacationRequestTest.csv", separator = Constants.CSV_SEPARATOR) public class NVR03VerifyTheEmailTest extends BaseTest { @Steps public LoginSteps userSteps; @Steps public HomePageSteps homeSteps; @Steps public HeaderNavigationSteps headerNavigationSteps; @Steps public LeftMenuSteps leftMenuSteps; @Steps public NewVacationRequestSteps newVacationSteps; @Steps public EmailVerificationSteps email; public String year, month, day, futureYear, futureMonth, futureDay, vacationTypeName, specialVacationName; @Test public void verifyTheEmail(){ homeSteps.isTheHomePage(); homeSteps.clickOnSignInButton(); userSteps.performLogin(userName, password); headerNavigationSteps.selectVacationMenuItem(); leftMenuSteps.clickNewVacationRequest(); newVacationSteps.selectStartDate(year, month, day); newVacationSteps.selectEndDate(futureYear, futureMonth, futureDay); newVacationSteps.selectVacationType(vacationTypeName); newVacationSteps.selectSpecialVacation(specialVacationName); newVacationSteps.clickOnSaveButton(); email.checkEmailSubject(Constants.EMAILSUBJECT); } }
[ "bodea_nelly@yahoo.com" ]
bodea_nelly@yahoo.com
3efffc12c23aa6d2e635778a9d88927ae67611f7
ff436809bc0141dd4e7fb9719be11234e0e68bb9
/qianye.Core/src/qianye/core/domain/model/Notice.java
66229a72a1eee555ad1041eac159a38c15e8a7f7
[]
no_license
qianqianyeye/qgzxxt
154208eae3bd62a43b5b07ea1e4813075cdcf4f9
9745a3be26908ba511f28c78428283893bb34bca
refs/heads/master
2020-03-22T01:43:36.205091
2018-10-02T09:10:56
2018-10-02T09:10:56
139,325,684
3
0
null
null
null
null
UTF-8
Java
false
false
1,501
java
package qianye.core.domain.model; public class Notice { private String id; private String workname; private String content; private String time; private String suserid; private String fuserid; private String workid; private String susername; private String fusername; private String statue; public String getStatue() { return statue; } public void setStatue(String statue) { this.statue = statue; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getWorkname() { return workname; } public void setWorkname(String workname) { this.workname = workname; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getTime() { return time; } public void setTime(String time) { this.time = time; } public String getSuserid() { return suserid; } public void setSuserid(String suserid) { this.suserid = suserid; } public String getFuserid() { return fuserid; } public void setFuserid(String fuserid) { this.fuserid = fuserid; } public String getWorkid() { return workid; } public void setWorkid(String workid) { this.workid = workid; } public String getSusername() { return susername; } public void setSusername(String susername) { this.susername = susername; } public String getFusername() { return fusername; } public void setFusername(String fusername) { this.fusername = fusername; } }
[ "996888231@qq.com" ]
996888231@qq.com
fa5bf136989cc1615f15841774fe6c7f5ab1a0ce
6d4b19b800e6a77d36e5c0595fc97ec0a05cf499
/src/main/java/br/com/kproj/salesman/products_catalog/delivery_definition/view/support/builders/TaskResourceBuilder.java
84dde8c75e8f260a20b9cd8db9ee4832e54bd428
[]
no_license
mmaico/salesman-crm
5252d72bb90130c6d4eff5e11990c1fa16bcc842
16614306f486b3ecdb78e202277e14b55b116774
refs/heads/master
2023-03-12T11:01:51.567003
2023-02-25T12:53:29
2023-02-25T12:53:29
92,890,395
7
3
null
null
null
null
UTF-8
Java
false
false
2,732
java
package br.com.kproj.salesman.products_catalog.delivery_definition.view.support.builders; import br.com.kproj.salesman.infrastructure.http.response.handler.resources.ResourceItem; import br.com.kproj.salesman.infrastructure.http.response.handler.resources.ResourceItems; import br.com.kproj.salesman.products_catalog.delivery_definition.domain.model.tasks.Represent; import br.com.kproj.salesman.products_catalog.delivery_definition.domain.model.tasks.Task; import br.com.kproj.salesman.products_catalog.delivery_definition.view.support.resources.TaskResource; import br.com.uol.rest.apiconverter.ConverterToResource; import br.com.uol.rest.apiconverter.resources.Link; import br.com.uol.rest.infrastructure.libraries.ContextArguments; import org.springframework.stereotype.Component; import java.util.Collection; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.stream.Collectors; import static br.com.uol.rest.infrastructure.libraries.SelectableArguments.createEmpty; import static org.apache.commons.lang3.StringUtils.EMPTY; @Component public class TaskResourceBuilder { private static Map<Represent, SelectLink> selectLink = new HashMap<>(); static { selectLink.put(Represent.ROOTTASK, ((task, context) -> { Link link = Link.createLink("is-a-roottask", "/rs/saleables/task-definitions/root-task-definitions/" + task.getId()); context.addLinkConf(TaskResource.class, link); })); selectLink.put(Represent.SUBTASK, ((task, context) -> { Link link = Link.createLink("is-a-subtask", "/rs/saleables/task-definitions/root-task-definitions/subtask-definitions/" + task.getId()); context.addLinkConf(TaskResource.class, link); })); selectLink.put(Represent.NO_REPRESENT, ((task, context) -> {})); } public ResourceItem build(Task saleableUnit, String uri) { TaskResource resource = buildItem(saleableUnit); return new ResourceItem(resource, uri); } public ResourceItems build(Collection<Task> saleables, String uri) { List<TaskResource> resources = saleables.stream() .map(item -> buildItem(item)).collect(Collectors.toList()); return new ResourceItems(resources, uri); } public TaskResource buildItem(Task task) { ContextArguments context = ContextArguments.create(createEmpty(), EMPTY); selectLink.get(task.getRepresent()).select(task, context); TaskResource resource = new TaskResource(); ConverterToResource.convert(task, resource, context); return resource; } private interface SelectLink { void select(Task task, ContextArguments context); } }
[ "mmaico@gmail.com" ]
mmaico@gmail.com
869324a3bccfe2a929335651e00d92227a61609e
d61a9c2858e4af99fa9bec30e524e209866e1eff
/blockchain_courses/SCUT_2021/group2_project/第二组项目代码/back/src/main/java/com/fisco/app/dto/QueryARForAdminDTO.java
fce347b07ad9c321cb24dfe3c7e8ddba1ced716c
[ "Apache-2.0" ]
permissive
WeBankBlockchain/Community-Activities
56bc085ee2f8ef1dde4b5a2e5d0a4f6e87e876a3
246c9666bb61ee3e7d9c9539cd888a1206970544
refs/heads/main
2023-06-27T21:40:58.497944
2021-07-13T06:11:49
2021-07-13T06:11:49
381,594,566
1
22
Apache-2.0
2021-07-22T17:19:27
2021-06-30T06:11:40
Java
UTF-8
Java
false
false
973
java
package com.fisco.app.dto; import com.fisco.app.pojo.ApplyAgency; import com.fisco.app.pojo.ApplyAgencyForAdmin; import com.fisco.app.utils.TransApplyRole; import com.fisco.app.utils.TransResult; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @Data @NoArgsConstructor @AllArgsConstructor public class QueryARForAdminDTO { private int id; private String applyId; private String name; private String applyRole; private String USCC; private String result; public QueryARForAdminDTO(ApplyAgencyForAdmin applyAgency, TransResult transResult, TransApplyRole transApplyRole){ this.id = applyAgency.getId(); this.applyId = applyAgency.getApplyId(); this.name = applyAgency.getName(); this.applyRole = transApplyRole.transition(applyAgency.getApplyRole()); this.USCC = applyAgency.getUSCC(); this.result = transResult.transition(applyAgency.getResult()); } }
[ "noreply@github.com" ]
WeBankBlockchain.noreply@github.com
41f64dd5a3f7a9a08195bf7f3e4985b34bbd1120
2e853aa64a5830ca7f36f2904d2e6aee1d91b293
/src/main/java/com/fh/lw/pojo/smallcoment/Address.java
2688854c0cf4d676759f6b9c39319e43f9bdfa18
[]
no_license
pdmall/mallServiceBack
a072dbce5024b7ae95936fbf2ae769b3a00d293c
b74a9e4fa4b83e019ea27df289351230d0f524aa
refs/heads/master
2020-03-21T02:13:25.161696
2018-06-20T09:12:12
2018-06-20T09:12:12
137,988,126
0
0
null
null
null
null
UTF-8
Java
false
false
1,583
java
package com.fh.lw.pojo.smallcoment; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; @Table(name = "tb_address") public class Address extends BasePojo { /** * 地址表` * */ private static final long serialVersionUID = 1L; @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private Integer adIsDefault;// 是否默认地址 private String adName;// 收件人姓名 private String adPhone;// 收件人电话 private String adMsgAddress;// 收件人详细地址 private String adUserId;// 地址用户id private String adRemark;// 用户备注: public String getAdRemark() { return adRemark; } public void setAdRemark(String adRemark) { this.adRemark = adRemark; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Integer getAdIsDefault() { return adIsDefault; } public void setAdIsDefault(Integer adIsDefault) { this.adIsDefault = adIsDefault; } public String getAdName() { return adName; } public void setAdName(String adName) { this.adName = adName; } public String getAdPhone() { return adPhone; } public void setAdPhone(String adPhone) { this.adPhone = adPhone; } public String getAdMsgAddress() { return adMsgAddress; } public void setAdMsgAddress(String adMsgAddress) { this.adMsgAddress = adMsgAddress; } public String getAdUserId() { return adUserId; } public void setAdUserId(String adUserId) { this.adUserId = adUserId; } }
[ "40415174+309989924@users.noreply.github.com" ]
40415174+309989924@users.noreply.github.com
b098c050bc74aaa84e9d7ee5d88e3084cd972adf
f28dce60491e33aefb5c2187871c1df784ccdb3a
/src/main/java/com/zxinsight/r.java
bbb596ba274d67f0601ff618d41d7ad8b4187a36
[ "Apache-2.0" ]
permissive
JackChan1999/boohee_v5.6
861a5cad79f2bfbd96d528d6a2aff84a39127c83
221f7ea237f491e2153039a42941a515493ba52c
refs/heads/master
2021-06-11T23:32:55.977231
2017-02-14T18:07:04
2017-02-14T18:07:04
81,962,585
8
6
null
null
null
null
UTF-8
Java
false
false
668
java
package com.zxinsight; import android.content.DialogInterface; import android.content.DialogInterface.OnClickListener; import com.zxinsight.common.util.e; import java.io.File; class r implements OnClickListener { final /* synthetic */ ProgressWebView a; r(ProgressWebView progressWebView) { this.a = progressWebView; } public void onClick(DialogInterface dialogInterface, int i) { switch (i) { case 0: this.a.a(this.a.g); break; case 1: this.a.b(); break; } this.a.c = e.a(this.a.g) + File.separator + "compress.jpg"; } }
[ "jackychan2040@gmail.com" ]
jackychan2040@gmail.com
5173c45546cd5250e1e205dd64bdf9d0b17d81ad
0a50f16b6a1e2877c0839b1aa2c99091c58c7f5a
/Portable_Fingerprint_Scanner_Server/src/EntityPackage/Batch.java
1c419ff63fb6bedc65131fb0038353ec2e4081f1
[]
no_license
hareshnanarkar/Student-Attendance-Mangement-using-Portable-IoT-Fingerprint-Biometric-Device
faacf94525a8dae1e621296d793a901087064ff7
922d67d6ef965b7bf11f8a4d656cd389e317724c
refs/heads/master
2020-03-12T04:46:03.393635
2018-07-25T15:27:50
2018-07-25T15:27:50
130,451,275
0
0
null
null
null
null
UTF-8
Java
false
false
541
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 EntityPackage; import java.io.Serializable; /** * * @author admin */ public class Batch implements Serializable{ public int BatchId; public String BatchName; public int Semester; public int AcademicYear; public int BatchYear; public boolean IsActive; public Course course; }
[ "noreply@github.com" ]
hareshnanarkar.noreply@github.com
e6e0c848a75873feb854f4a13bd7cb5868fe15ce
fbdd7b6b1c671f6909139eab50cbf821ade7c2a9
/Android/ScienceisFun/src/com/belwadi/sciencefun/utils/ConnectionDetector.java
3a424b10fe6adc8d35fe4c87182a0834d9346615
[]
no_license
mingji/digitalbook
c12e27efdf04a8840c02d6b69162d9f45e272332
095689ae570c3ac72b57963c4285a3137a43fdb0
refs/heads/master
2020-06-08T10:26:38.583286
2015-05-14T15:44:09
2015-05-14T15:44:09
35,618,771
0
0
null
null
null
null
UTF-8
Java
false
false
955
java
package com.belwadi.sciencefun.utils; import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo; public class ConnectionDetector { private Context _context; public ConnectionDetector(Context context){ this._context = context; } /** * Checking for all possible internet providers * **/ public boolean isConnectingToInternet(){ ConnectivityManager connectivity = (ConnectivityManager) _context.getSystemService(Context.CONNECTIVITY_SERVICE); if (connectivity != null) { NetworkInfo[] info = connectivity.getAllNetworkInfo(); if (info != null) for (int i = 0; i < info.length; i++) if (info[i].getState() == NetworkInfo.State.CONNECTED) { return true; } } return false; } }
[ "mingji1116@live.com" ]
mingji1116@live.com
5b9190d437f83b81b456adf5ea5fa91287e3d3f1
382762e05a5a9e81375198a97eb1028997e1f78c
/src/jfi/geometry/Polyhedron.java
bea7a51e2a61bf30e3fab346970a85b3eacfcb5c
[]
no_license
jesuschamorro/JFI
3d1ac9af40f4ab0f5e05cddc07a1d1934ee9128e
c0693fb13bccc0f1182bcc4367adfdddc8cc141f
refs/heads/master
2021-06-20T07:56:11.488944
2021-02-13T21:55:10
2021-02-13T21:55:10
54,067,269
4
2
null
null
null
null
UTF-8
Java
false
false
5,229
java
package jfi.geometry; import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; /** * Class representing a polyhedron in 3D spaces. A polytope is defined by a * collection of planes. * * @author Míriam Mengíbar Rodríguez (mirismr@correo.ugr.es) */ public class Polyhedron { /** * Set of faces */ private List<PlanarPolygon> faces; /** * needed for checking if a point is inside of polytope */ private Point3D innerPoint; /** * Creates a new polyhedron throught a faces set. * @param faces the face set */ public Polyhedron(List<PlanarPolygon> faces) { this.faces = faces; // FUTURE WORK // calculate point inside just one time as the middle point // between the line from two vertices of differents faces // this.calculatePointInside(); } /** * Returns the faces forming the polyhedron. * @return the faces forming the polyhedron. */ public List<PlanarPolygon> getFaces() { return faces; } /** * Set the faces forming the polyhedron. * @param faces the faces forming the polyhedron. */ public void setFaces(List<PlanarPolygon> faces) { this.faces = faces; } /** * Returns a polyhedron inner point. * @return the polyhedron inner point. */ public Point3D getInnerPoint(){ return this.innerPoint; } /** * Set the polyhedron inner point. * @param innerPoint the point inside of the polyhedron. */ public void setInnerPoint(Point3D innerPoint) { this.innerPoint = innerPoint; } /** * Calculate one point inside of polytope. Its needed for check is a point * is inside. */ private void calculatePointInside() { throw new NoSuchMethodError("Not implemented yet."); } /** * Give the minimum intersection point with a line. We check intersection * with each polytope's face. * * @param line to insersect the polytope * @return the insersection point, null if no intersection. */ public Point3D getIntersectionPoint(Line3D line) { double minDistance = Double.MAX_VALUE; Point3D out = null; Vector3D directionVector = line.getDirectorVector(); for (PlanarPolygon hface : this.faces) { Point3D pIntersection = hface.getPlane().getIntersectionPoint(line); try { // distance with line's origin double distance = pIntersection.distance(line.getBelongerPoint()); if (directionVector.isSameDirection(new Vector3D(line.getBelongerPoint(), pIntersection)) && distance < minDistance) { minDistance = distance; out = pIntersection; } } catch (Exception ex) { Logger.getLogger(Polyhedron.class.getName()).log(Level.SEVERE, null, ex); } } return out; } /** * Check if a point is in the polytope. Polytope's inner point should be not * null. * * @param point point to check * @return true if the point is in the polytope, false otherwise. */ public boolean isPointInside(Point3D point) throws Exception { if (this.innerPoint == null) { throw new Exception("Inner point is null. Inner point should be fill, please use setInnerPoint before call this method."); } boolean in = true; double EPSILON = 0.00001; // If the sign of the result is > 0 the point is of the same side as // the orthogonal for (int i = 0; i < this.faces.size() && in; i++) { try { PlanarPolygon hp = this.faces.get(i); Double eval = hp.getPlane().evaluatePoint(this.innerPoint) * hp.getPlane().evaluatePoint(point); if (eval < EPSILON * -1.0) { // rounding error in = false; } } catch (Exception ex) { Logger.getLogger(Polyhedron.class.getName()).log(Level.SEVERE, null, ex); } } return in; } /** * Check is a point is in any polytope face. * * @param point point to check * @return true if the point is in the polytope, false otherwise. */ public boolean isPointInFace(Point3D point) { boolean in = false; double EPSILON = 0.00001; // result == 0 point lies in the plane for (int i = 0; i < this.faces.size() && !in; i++) { PlanarPolygon hp = this.faces.get(i); in = hp.getPlane().isInPlane(point); } return in; } /** * Returns a string that represents this polyhedron. * * @return a string representation of this polyhedron. */ public String toString() { String out = ""; if(this.innerPoint == null) { out += "Not inner point\n"; } else { out += this.innerPoint.toString()+"\n"; } for(PlanarPolygon hp : this.faces) { out += hp.toString()+"\n"; } return out; } }
[ "jesus@decsai.ugr.es" ]
jesus@decsai.ugr.es
e274cf8871e3cbd3c3418b5a72df577ddc373511
f75824460a54b0eb56e3b1c00ad3203759f19f44
/src/_3sum/Solution.java
57b5c9f63f2548bb2582ff46c0582b66a1014637
[]
no_license
vision57/leetcode4java.old
3cb6c18fd84b2000afec6fbd8866624387448684
dbe17c8984164ca2c318033483de72f9615a88e6
refs/heads/master
2021-08-14T19:51:32.977839
2017-11-16T15:47:26
2017-11-16T15:47:26
null
0
0
null
null
null
null
UTF-8
Java
false
false
835
java
package _3sum; import java.util.Arrays; import java.util.LinkedList; import java.util.List; public class Solution { public List<List<Integer>> threeSum(int[] num) { Arrays.sort(num); List<List<Integer>> result = new LinkedList<>(); for (int i = num.length - 1; i > 1; i--) { if (i + 1 < num.length && num[i] == num[i + 1]) { continue; } for (int j = 0, k = i - 1; j < k; ) { int sum = num[j] + num[k] + num[i]; if (sum < 0) { j++; } else if (sum > 0) { k--; } else { result.add(Arrays.asList(num[j], num[k], num[i])); do { j++; k--; } while (j < k && num[j - 1] == num[j] && num[k] == num[k + 1]); } } } return result; } public static void main(String[] args) { System.out.println(new Solution().threeSum(new int[]{0, 0, 0, 0, 0, 0, 0})); } }
[ "kxcfzyk@msn.cn" ]
kxcfzyk@msn.cn
9ede53aa6aade365e2226faa751f0396a10bf490
3878a7b8e01bb86d356272d1992c66ce0d619f3b
/Executive.java
bd3685136980fffb1858d8c4f5f5e35ddde8a866
[]
no_license
sangitapadshala/coursera-course
2a068b0d06ea654571c07afc159c1b495a9c1399
c1d0f37aad9dd8a2cd8fb19cd1db825dd716bbc6
refs/heads/master
2021-01-20T13:13:33.081044
2018-08-14T13:29:13
2018-08-14T13:29:13
82,676,080
0
0
null
2017-02-21T12:22:00
2017-02-21T12:15:51
null
UTF-8
Java
false
false
420
java
public class Executive extends Employee { private double bonus; public Executive() { } public Executive(String empName, double salary, double bonus) { super(empName, salary); this.bonus = bonus; } @Override public void payslip() { super.payslip(); System.out.println("Bonus is " + bonus); } @Override public double getSalary() { return super.getSalary() + bonus; } }
[ "noreply@github.com" ]
sangitapadshala.noreply@github.com
3bfb48ab87dd6ae97aaa18f095aa10da954efd1a
82c56a87957fd468baa4c655a74e040a3ff0559d
/src/main/java/br/dev/pedropareschi/cursomc/services/PedidoService.java
24f77c3f488abc345e11a762b1054cc4e89148af
[]
no_license
PedroPareschi/E-commerce-project-back-end
844eeb8be8845e3c359626c7c38f133638798f04
c1b8004e485b2050eeadc8c61f6ea0dd09463a13
refs/heads/main
2023-05-31T23:31:38.710459
2021-06-09T13:09:43
2021-06-09T13:09:43
353,084,998
1
0
null
null
null
null
UTF-8
Java
false
false
3,213
java
package br.dev.pedropareschi.cursomc.services; import br.dev.pedropareschi.cursomc.domain.*; import br.dev.pedropareschi.cursomc.domain.enums.EstadoPagamento; import br.dev.pedropareschi.cursomc.repositories.ItemPedidoRepository; import br.dev.pedropareschi.cursomc.repositories.PagamentoRepository; import br.dev.pedropareschi.cursomc.repositories.PedidoRepository; import br.dev.pedropareschi.cursomc.security.UserSS; import br.dev.pedropareschi.cursomc.services.exceptions.AuthorizationException; import br.dev.pedropareschi.cursomc.services.exceptions.ObjectNotFoundException; import br.dev.pedropareschi.cursomc.services.validation.BoletoService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Sort; import org.springframework.stereotype.Service; import javax.transaction.Transactional; import java.util.Date; import java.util.Optional; @Service public class PedidoService { @Autowired private PedidoRepository repo; @Autowired private BoletoService boletoService; @Autowired private PagamentoRepository pagamentoRepository; @Autowired private ItemPedidoRepository itemPedidoRepository; @Autowired private ProdutoService produtoService; @Autowired private ClienteService clienteService; @Autowired private EmailService emailService; public Pedido find(Integer id){ Optional<Pedido> obj = repo.findById(id); return obj.orElseThrow(()-> new ObjectNotFoundException("Objeto não encontrado! Id: " + id + ", Tipo: " + Pedido.class.getName())); } @Transactional public Pedido insert(Pedido obj) { obj.setId(null); obj.setInstante(new Date()); obj.setCliente(clienteService.find(obj.getCliente().getId())); obj.getPagamento().setEstado(EstadoPagamento.PENDENTE); obj.getPagamento().setPedido(obj); if (obj.getPagamento() instanceof PagamentoComBoleto) { PagamentoComBoleto pagto = (PagamentoComBoleto) obj.getPagamento(); boletoService.preencherPagamentoComBoleto(pagto, obj.getInstante()); } obj = repo.save(obj); pagamentoRepository.save(obj.getPagamento()); for (ItemPedido ip : obj.getItens()) { ip.setDesconto(0.0); ip.setProduto(produtoService.find(ip.getProduto().getId())); ip.setPreco(ip.getProduto().getPreco()); ip.setPedido(obj); } itemPedidoRepository.saveAll(obj.getItens()); emailService.sendOrderConfirmationHtmlEmail(obj); return obj; } public Page<Pedido> findPage(Integer page, Integer linesPerPage, String orderBy, String direction){ UserSS user = UserService.authenticated(); if(user == null){ throw new AuthorizationException("Acesso negado"); } PageRequest pageRequest = PageRequest.of(page, linesPerPage, Sort.Direction.valueOf(direction), orderBy); Cliente cliente = clienteService.find(user.getId()); return repo.findByCliente(cliente, pageRequest); } }
[ "pedropareschi15@gmail.com" ]
pedropareschi15@gmail.com
bb7bfeb08763ab3bd35eea9e26f8057c160a99cd
065c1f648e8dd061a20147ff9c0dbb6b5bc8b9be
/cobertura_cluster/231/tar_0.java
b85b02b2ebc602f1619cfb6c367712ba142568bb
[]
no_license
martinezmatias/GenPat-data-C3
63cfe27efee2946831139747e6c20cf952f1d6f6
b360265a6aa3bb21bd1d64f1fc43c3b37d0da2a4
refs/heads/master
2022-04-25T17:59:03.905613
2020-04-15T14:41:34
2020-04-15T14:41:34
null
0
0
null
null
null
null
UTF-8
Java
false
false
7,268
java
/* * The Apache Software License, Version 1.1 * * Copyright (C) 2000-2002 The Apache Software Foundation. All rights * reserved. * Copyright (C) 2003 jcoverage ltd. * Copyright (C) 2005 Mark Doliner <thekingant@users.sourceforge.net> * Copyright (C) 2005 Joakim Erdfelt <joakim@erdfelt.net> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, if * any, must include the following acknowlegement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowlegement may appear in the software itself, * if and wherever such third-party acknowlegements normally appear. * * 4. The names "Ant" and "Apache Software * Foundation" must not be used to endorse or promote products derived * from this software without prior written permission. For written * permission, please contact apache@apache.org. * * 5. Products derived from this software may not be called "Apache" * nor may "Apache" appear in their names without prior written * permission of the Apache Group. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. */ package net.sourceforge.cobertura.ant; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.net.URL; import java.net.URLClassLoader; import java.util.LinkedList; import java.util.List; import org.apache.tools.ant.AntClassLoader; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.DirectoryScanner; import org.apache.tools.ant.Project; import org.apache.tools.ant.taskdefs.Java; import org.apache.tools.ant.taskdefs.MatchingTask; import org.apache.tools.ant.types.FileSet; import org.apache.tools.ant.types.Path; import org.apache.tools.ant.types.Reference; import org.apache.tools.ant.util.IdentityMapper; import org.apache.tools.ant.util.SourceFileScanner; public abstract class CommonMatchingTask extends MatchingTask { private static final String LINESEP = System .getProperty("line.separator"); final String className; final List fileSets = new LinkedList(); private Java java = null; private File commandLineFile = null; private FileWriter commandLineWriter = null; File toDir = null; public CommonMatchingTask(String className) { this.className = className; } private String getClassName() { return className; } protected void initArgs() { try { commandLineFile = File.createTempFile("cobertura.", ".cmdline"); commandLineFile.deleteOnExit(); commandLineWriter = new FileWriter(commandLineFile); } catch (IOException ioe) { getProject().log( "Error initializing commands file " + commandLineFile.getAbsolutePath(), Project.MSG_ERR); throw new BuildException("Unable to initialize commands file."); } } protected void addArg(String arg) { try { commandLineWriter.write(arg + LINESEP); } catch (IOException ioe) { getProject().log( "Error writing commands file " + commandLineFile.getAbsolutePath(), Project.MSG_ERR); throw new BuildException("Unable to write to commands file."); } } protected void saveArgs() { try { commandLineWriter.flush(); commandLineWriter.close(); } catch (IOException ioe) { getProject().log( "Error saving commands file " + commandLineFile.getAbsolutePath(), Project.MSG_ERR); throw new BuildException("Unable to save the commands file."); } /* point to commands file */ getJava().createArg().setValue("-commandsfile"); getJava().createArg().setValue(commandLineFile.getAbsolutePath()); } protected void unInitArgs() { commandLineFile.delete(); } protected Java getJava() { if (java == null) { java = (Java)getProject().createTask("java"); java.setTaskName(getTaskName()); java.setClassname(getClassName()); java.setFork(true); java.setDir(getProject().getBaseDir()); if (getClass().getClassLoader() instanceof AntClassLoader) { String classpath = ((AntClassLoader)getClass() .getClassLoader()).getClasspath(); createClasspath().setPath(classpath.replaceAll("%20", " ")); } else if (getClass().getClassLoader() instanceof URLClassLoader) { URL[] earls = ((URLClassLoader)getClass().getClassLoader()) .getURLs(); for (int i = 0; i < earls.length; i++) { String classpath = earls[i].getFile(); createClasspath().setPath( classpath.replaceAll("%20", " ")); } } } return java; } public void setTodir(File toDir) { this.toDir = toDir; } public Path createClasspath() { return getJava().createClasspath().createPath(); } public void setClasspath(Path classpath) { createClasspath().append(classpath); } public void setClasspathRef(Reference r) { createClasspath().setRefid(r); } DirectoryScanner getDirectoryScanner(FileSet fileSet) { return fileSet.getDirectoryScanner(getProject()); } String[] getIncludedFiles(FileSet fileSet) { return getDirectoryScanner(fileSet).getIncludedFiles(); } String[] getExcludedFiles(FileSet fileSet) { return getDirectoryScanner(fileSet).getExcludedFiles(); } String[] getFilenames(FileSet fileSet) { String[] filesToReturn = getIncludedFiles(fileSet); if (toDir != null) { IdentityMapper m = new IdentityMapper(); SourceFileScanner sfs = new SourceFileScanner(this); filesToReturn = sfs.restrict(getIncludedFiles(fileSet), fileSet .getDir(getProject()), toDir, m); } return filesToReturn; } String baseDir(FileSet fileSet) { return fileSet.getDirectoryScanner(getProject()).getBasedir() .toString(); } public void addFileset(FileSet fileSet) { fileSets.add(fileSet); } }
[ "375833274@qq.com" ]
375833274@qq.com
8aa41a360bd74fe1e6dd27996e95ac0f4ac25003
17305389c24530c65527499632b170084b430353
/QuickStart.java
952de1676eebea9212116b6c45f395e8d59b366b
[]
no_license
ramankarki/learning-java
a3bfb82422e7e0b5b2961da780205d35d78f16d9
8c75bb1f059a2fd589ef03cea6c0b7ff6eeeed46
refs/heads/master
2023-02-24T01:46:52.343252
2021-01-26T08:24:44
2021-01-26T08:24:44
301,492,365
0
0
null
null
null
null
UTF-8
Java
false
false
119
java
class QuickStart { public static void main(String[] args) { System.out.println("\nHello, World."); } }
[ "ramankarki40@gmail.com" ]
ramankarki40@gmail.com
ee1273adef66ada10113e5ebb9d291a33232c852
218fef5fc073bb0bf8c406a14cf361d9dd24cedf
/app/build/generated/source/r/debug/com/example/stefanelez/infonmation/R.java
e7963e6679758959810a174d53b1c54b0d650be0
[]
no_license
elezcfc/InFONmation
e734015c2b5803c4204a278134363cd752bcd753
51c63d0112fcec28f6b9a44462b1ed9fc1c11c36
refs/heads/master
2021-01-18T11:51:00.557048
2016-09-23T07:08:55
2016-09-23T07:08:56
68,627,461
0
0
null
null
null
null
UTF-8
Java
false
false
436,456
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.example.stefanelez.infonmation; public final class R { public static final class anim { public static final int abc_fade_in=0x7f050000; public static final int abc_fade_out=0x7f050001; public static final int abc_grow_fade_in_from_bottom=0x7f050002; public static final int abc_popup_enter=0x7f050003; public static final int abc_popup_exit=0x7f050004; public static final int abc_shrink_fade_out_from_bottom=0x7f050005; public static final int abc_slide_in_bottom=0x7f050006; public static final int abc_slide_in_top=0x7f050007; public static final int abc_slide_out_bottom=0x7f050008; public static final int abc_slide_out_top=0x7f050009; } public static final class attr { /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarDivider=0x7f010040; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarItemBackground=0x7f010041; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f01003a; /** <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=0x7f01003f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarSplitStyle=0x7f01003c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarStyle=0x7f01003b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabBarStyle=0x7f010036; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f010035; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f010037; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTheme=0x7f01003d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarWidgetTheme=0x7f01003e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionButtonStyle=0x7f01005b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionDropDownStyle=0x7f010057; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionLayout=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 actionMenuTextAppearance=0x7f010042; /** <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=0x7f010043; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeBackground=0x7f010046; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseButtonStyle=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 actionModeCloseDrawable=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 actionModeCopyDrawable=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 actionModeCutDrawable=0x7f010049; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeFindDrawable=0x7f01004e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePasteDrawable=0x7f01004b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePopupWindowStyle=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 actionModeSelectAllDrawable=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 actionModeShareDrawable=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 actionModeSplitBackground=0x7f010047; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeStyle=0x7f010044; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeWebSearchDrawable=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 actionOverflowButtonStyle=0x7f010038; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010039; /** <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=0x7f0100b3; /** <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=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 activityChooserViewStyle=0x7f010063; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f010087; /** <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=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 alertDialogStyle=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 alertDialogTheme=0x7f010089; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int allowStacking=0x7f01009c; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int alpha=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 arrowHeadLength=0x7f0100a4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100a5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=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 background=0x7f01000c; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundSplit=0x7f01000e; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundStacked=0x7f01000d; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int backgroundTint=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=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 borderlessButtonStyle=0x7f010060; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarButtonStyle=0x7f01005d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=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 buttonBarNeutralButtonStyle=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 buttonBarPositiveButtonStyle=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 buttonBarStyle=0x7f01005c; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> */ public static final int buttonGravity=0x7f0100d9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonPanelSideLayout=0x7f010021; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01008f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010090; /** <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=0x7f01009e; /** <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=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 checkboxStyle=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 checkedTextViewStyle=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 closeIcon=0x7f0100bc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeItemLayout=0x7f01001e; /** <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=0x7f0100a0; /** <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=0x7f01007e; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorBackgroundFloating=0x7f010085; /** <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=0x7f010082; /** <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=0x7f010080; /** <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=0x7f010081; /** <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=0x7f01007f; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimary=0x7f01007c; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimaryDark=0x7f01007d; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorSwitchThumbNormal=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 commitIcon=0x7f0100c1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int 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 contentInsetEndWithActions=0x7f01001b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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 dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetStartWithNavigation=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 controlBackground=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 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=0x7f0100bb; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dialogPreferredPadding=0x7f010055; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dialogTheme=0x7f010054; /** <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=0x7f010062; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100af; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010061; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 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=0x7f010074; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 editTextBackground=0x7f010069; /** <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=0x7f010068; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextStyle=0x7f010093; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01001c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010020; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int font_large=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 font_medium=0x7f0100a9; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int font_small=0x7f0100a8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int font_xlarge=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 font_xxlarge=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 gapBetweenBars=0x7f0100a3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int goIcon=0x7f0100bd; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01005a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int 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=0x7f0100b9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int imageButtonStyle=0x7f01006a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int 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=0x7f01001f; /** <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=0x7f0100b8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=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 listDividerAlertDialog=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 listItemLayout=0x7f010025; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listLayout=0x7f010022; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listMenuViewStyle=0x7f01009b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listPopupWindowStyle=0x7f010075; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01006f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightLarge=0x7f010071; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightSmall=0x7f010070; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010072; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingRight=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 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=0x7f0100d8; /** <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=0x7f0100ad; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010023; /** <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=0x7f0100b6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 panelMenuListTheme=0x7f01007a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 popupMenuStyle=0x7f010066; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01001d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010067; /** <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=0x7f0100b4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100c3; /** <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=0x7f0100ba; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int radioButtonStyle=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 ratingBarStyle=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 ratingBarStyleIndicator=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 ratingBarStyleSmall=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 searchHintIcon=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 searchIcon=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 searchViewStyle=0x7f01006e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int seekBarStyle=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 selectableItemBackground=0x7f01005e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01005f; /** <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=0x7f0100b0; /** <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=0x7f0100ae; /** <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=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 singleChoiceItemLayout=0x7f010024; /** <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=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 spinnerDropDownItemStyle=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 spinnerStyle=0x7f010099; /** <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=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 srcCompat=0x7f010026; /** <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=0x7f0100b7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subMenuArrow=0x7f0100b5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int submitBackground=0x7f0100c4; /** <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=0x7f0100d1; /** <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=0x7f0100c2; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100cc; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100cd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 switchTextAppearance=0x7f0100cb; /** <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=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 textAppearanceLargePopupMenu=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 textAppearanceListItem=0x7f010076; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItemSmall=0x7f010077; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearancePopupMenuHeader=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 textAppearanceSearchResultSubtitle=0x7f01006c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f01006b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f010052; /** <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=0x7f01008a; /** <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=0x7f01006d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int 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=0x7f0100a7; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thumbTextPadding=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 thumbTint=0x7f0100c5; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int thumbTintMode=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 tickMark=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 tickMarkTint=0x7f010028; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int tickMarkTintMode=0x7f010029; /** <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 titleMargin=0x7f0100d2; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 titleMarginEnd=0x7f0100d4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginStart=0x7f0100d3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 titleMargins=0x7f0100d7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextAppearance=0x7f0100d0; /** <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=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 toolbarStyle=0x7f010064; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int track=0x7f0100c7; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int trackTint=0x7f0100c8; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int trackTintMode=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 voiceIcon=0x7f0100c0; /** <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=0x7f01002b; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBarOverlay=0x7f01002d; /** <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=0x7f01002e; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedHeightMajor=0x7f010032; /** <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=0x7f010030; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedWidthMajor=0x7f01002f; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedWidthMinor=0x7f010031; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowMinWidthMajor=0x7f010033; /** <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=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 windowNoTitle=0x7f01002c; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f090000; public static final int abc_allow_stacked_button_bar=0x7f090001; public static final int abc_config_actionMenuItemAllCaps=0x7f090002; public static final int abc_config_closeDialogWhenTouchOutside=0x7f090003; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f090004; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f0a0046; public static final int abc_background_cache_hint_selector_material_light=0x7f0a0047; public static final int abc_btn_colored_borderless_text_material=0x7f0a0048; public static final int abc_color_highlight_material=0x7f0a0049; public static final int abc_input_method_navigation_guard=0x7f0a0000; public static final int abc_primary_text_disable_only_material_dark=0x7f0a004a; public static final int abc_primary_text_disable_only_material_light=0x7f0a004b; public static final int abc_primary_text_material_dark=0x7f0a004c; public static final int abc_primary_text_material_light=0x7f0a004d; public static final int abc_search_url_text=0x7f0a004e; public static final int abc_search_url_text_normal=0x7f0a0001; public static final int abc_search_url_text_pressed=0x7f0a0002; public static final int abc_search_url_text_selected=0x7f0a0003; public static final int abc_secondary_text_material_dark=0x7f0a004f; public static final int abc_secondary_text_material_light=0x7f0a0050; public static final int abc_tint_btn_checkable=0x7f0a0051; public static final int abc_tint_default=0x7f0a0052; public static final int abc_tint_edittext=0x7f0a0053; public static final int abc_tint_seek_thumb=0x7f0a0054; public static final int abc_tint_spinner=0x7f0a0055; public static final int abc_tint_switch_thumb=0x7f0a0056; public static final int abc_tint_switch_track=0x7f0a0057; public static final int accent_material_dark=0x7f0a0004; public static final int accent_material_light=0x7f0a0005; public static final int background_floating_material_dark=0x7f0a0006; public static final int background_floating_material_light=0x7f0a0007; public static final int background_material_dark=0x7f0a0008; public static final int background_material_light=0x7f0a0009; public static final int bg_transparent=0x7f0a000a; public static final int blackTransparent=0x7f0a000b; public static final int bright_foreground_disabled_material_dark=0x7f0a000c; public static final int bright_foreground_disabled_material_light=0x7f0a000d; public static final int bright_foreground_inverse_material_dark=0x7f0a000e; public static final int bright_foreground_inverse_material_light=0x7f0a000f; public static final int bright_foreground_material_dark=0x7f0a0010; public static final int bright_foreground_material_light=0x7f0a0011; public static final int button_material_dark=0x7f0a0012; public static final int button_material_light=0x7f0a0013; public static final int colorAccent=0x7f0a0014; public static final int colorAccentTransp=0x7f0a0015; public static final int colorPrimary=0x7f0a0016; public static final int colorPrimaryDark=0x7f0a0017; public static final int colorPrimaryLight=0x7f0a0018; public static final int dim_foreground_disabled_material_dark=0x7f0a0019; public static final int dim_foreground_disabled_material_light=0x7f0a001a; public static final int dim_foreground_material_dark=0x7f0a001b; public static final int dim_foreground_material_light=0x7f0a001c; public static final int foreground_material_dark=0x7f0a001d; public static final int foreground_material_light=0x7f0a001e; public static final int highlighted_text_material_dark=0x7f0a001f; public static final int highlighted_text_material_light=0x7f0a0020; public static final int hint_foreground_material_dark=0x7f0a0021; public static final int hint_foreground_material_light=0x7f0a0022; public static final int main_button_bg_pressed=0x7f0a0023; public static final int main_divider_bg=0x7f0a0024; public static final int material_blue_grey_800=0x7f0a0025; public static final int material_blue_grey_900=0x7f0a0026; public static final int material_blue_grey_950=0x7f0a0027; public static final int material_deep_teal_200=0x7f0a0028; public static final int material_deep_teal_500=0x7f0a0029; public static final int material_grey_100=0x7f0a002a; public static final int material_grey_300=0x7f0a002b; public static final int material_grey_50=0x7f0a002c; public static final int material_grey_600=0x7f0a002d; public static final int material_grey_800=0x7f0a002e; public static final int material_grey_850=0x7f0a002f; public static final int material_grey_900=0x7f0a0030; public static final int primary_dark_material_dark=0x7f0a0031; public static final int primary_dark_material_light=0x7f0a0032; public static final int primary_material_dark=0x7f0a0033; public static final int primary_material_light=0x7f0a0034; public static final int primary_text_default_material_dark=0x7f0a0035; public static final int primary_text_default_material_light=0x7f0a0036; public static final int primary_text_disabled_material_dark=0x7f0a0037; public static final int primary_text_disabled_material_light=0x7f0a0038; public static final int random=0x7f0a0039; public static final int ripple_material_dark=0x7f0a003a; public static final int ripple_material_light=0x7f0a003b; public static final int secondary_text_default_material_dark=0x7f0a003c; public static final int secondary_text_default_material_light=0x7f0a003d; public static final int secondary_text_disabled_material_dark=0x7f0a003e; public static final int secondary_text_disabled_material_light=0x7f0a003f; public static final int switch_thumb_disabled_material_dark=0x7f0a0040; public static final int switch_thumb_disabled_material_light=0x7f0a0041; public static final int switch_thumb_material_dark=0x7f0a0058; public static final int switch_thumb_material_light=0x7f0a0059; public static final int switch_thumb_normal_material_dark=0x7f0a0042; public static final int switch_thumb_normal_material_light=0x7f0a0043; public static final int text_color_white=0x7f0a0044; public static final int text_hint_color=0x7f0a0045; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f07000c; public static final int abc_action_bar_content_inset_with_nav=0x7f07000d; public static final int abc_action_bar_default_height_material=0x7f070001; public static final int abc_action_bar_default_padding_end_material=0x7f07000e; public static final int abc_action_bar_default_padding_start_material=0x7f07000f; public static final int abc_action_bar_elevation_material=0x7f070012; public static final int abc_action_bar_icon_vertical_padding_material=0x7f070013; public static final int abc_action_bar_overflow_padding_end_material=0x7f070014; public static final int abc_action_bar_overflow_padding_start_material=0x7f070015; public static final int abc_action_bar_progress_bar_size=0x7f070002; public static final int abc_action_bar_stacked_max_height=0x7f070016; public static final int abc_action_bar_stacked_tab_max_width=0x7f070017; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070018; public static final int abc_action_bar_subtitle_top_margin_material=0x7f070019; public static final int abc_action_button_min_height_material=0x7f07001a; public static final int abc_action_button_min_width_material=0x7f07001b; public static final int abc_action_button_min_width_overflow_material=0x7f07001c; public static final int abc_alert_dialog_button_bar_height=0x7f070000; public static final int abc_button_inset_horizontal_material=0x7f07001d; public static final int abc_button_inset_vertical_material=0x7f07001e; public static final int abc_button_padding_horizontal_material=0x7f07001f; public static final int abc_button_padding_vertical_material=0x7f070020; public static final int abc_cascading_menus_min_smallest_width=0x7f070021; public static final int abc_config_prefDialogWidth=0x7f070005; public static final int abc_control_corner_material=0x7f070022; public static final int abc_control_inset_material=0x7f070023; public static final int abc_control_padding_material=0x7f070024; public static final int abc_dialog_fixed_height_major=0x7f070006; public static final int abc_dialog_fixed_height_minor=0x7f070007; public static final int abc_dialog_fixed_width_major=0x7f070008; public static final int abc_dialog_fixed_width_minor=0x7f070009; public static final int abc_dialog_list_padding_vertical_material=0x7f070025; public static final int abc_dialog_min_width_major=0x7f07000a; public static final int abc_dialog_min_width_minor=0x7f07000b; public static final int abc_dialog_padding_material=0x7f070026; public static final int abc_dialog_padding_top_material=0x7f070027; public static final int abc_disabled_alpha_material_dark=0x7f070028; public static final int abc_disabled_alpha_material_light=0x7f070029; public static final int abc_dropdownitem_icon_width=0x7f07002a; public static final int abc_dropdownitem_text_padding_left=0x7f07002b; public static final int abc_dropdownitem_text_padding_right=0x7f07002c; public static final int abc_edit_text_inset_bottom_material=0x7f07002d; public static final int abc_edit_text_inset_horizontal_material=0x7f07002e; public static final int abc_edit_text_inset_top_material=0x7f07002f; public static final int abc_floating_window_z=0x7f070030; public static final int abc_list_item_padding_horizontal_material=0x7f070031; public static final int abc_panel_menu_list_width=0x7f070032; public static final int abc_progress_bar_height_material=0x7f070033; public static final int abc_search_view_preferred_height=0x7f070034; public static final int abc_search_view_preferred_width=0x7f070035; public static final int abc_seekbar_track_background_height_material=0x7f070036; public static final int abc_seekbar_track_progress_height_material=0x7f070037; public static final int abc_select_dialog_padding_start_material=0x7f070038; public static final int abc_switch_padding=0x7f070010; 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=0x7f070003; public static final int abc_text_size_title_material=0x7f070048; public static final int abc_text_size_title_material_toolbar=0x7f070004; public static final int activity_horizontal_margin=0x7f070011; public static final int activity_vertical_margin=0x7f070049; public static final int btn_long_side_padding=0x7f07004a; public static final int btn_long_text_size=0x7f07004b; public static final int btn_long_width=0x7f07004c; public static final int disabled_alpha_material_dark=0x7f07004d; public static final int disabled_alpha_material_light=0x7f07004e; public static final int fab_margin=0x7f07004f; public static final int highlight_alpha_material_colored=0x7f070050; public static final int highlight_alpha_material_dark=0x7f070051; public static final int highlight_alpha_material_light=0x7f070052; public static final int image_buttom_dim=0x7f070053; public static final int main_social_buttons_margin=0x7f070054; public static final int main_text_bottom_margin=0x7f070055; public static final int notification_large_icon_height=0x7f070056; public static final int notification_large_icon_width=0x7f070057; public static final int notification_subtext_size=0x7f070058; public static final int onepieceofnews_big_height=0x7f070059; public static final int onepieceofnews_normal_height=0x7f07005a; public static final int onepieceofnews_side_margin=0x7f07005b; public static final int onepieceofnews_title_height=0x7f07005c; public static final int onepieceofnews_top_margin=0x7f07005d; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; public static final int abc_action_bar_item_background_material=0x7f020001; public static final int abc_btn_borderless_material=0x7f020002; public static final int abc_btn_check_material=0x7f020003; public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; public static final int abc_btn_colored_material=0x7f020006; public static final int abc_btn_default_mtrl_shape=0x7f020007; public static final int abc_btn_radio_material=0x7f020008; public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; public static final int abc_cab_background_internal_bg=0x7f02000d; public static final int abc_cab_background_top_material=0x7f02000e; public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; public static final int abc_control_background_material=0x7f020010; public static final int abc_dialog_material_background=0x7f020011; public static final int abc_edit_text_material=0x7f020012; public static final int abc_ic_ab_back_material=0x7f020013; public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; public static final int abc_ic_clear_material=0x7f020015; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; public static final int abc_ic_go_search_api_material=0x7f020017; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; public static final int abc_ic_menu_overflow_material=0x7f02001a; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; public static final int abc_ic_search_api_material=0x7f02001e; public static final int abc_ic_star_black_16dp=0x7f02001f; public static final int abc_ic_star_black_36dp=0x7f020020; public static final int abc_ic_star_black_48dp=0x7f020021; public static final int abc_ic_star_half_black_16dp=0x7f020022; public static final int abc_ic_star_half_black_36dp=0x7f020023; public static final int abc_ic_star_half_black_48dp=0x7f020024; public static final int abc_ic_voice_search_api_material=0x7f020025; public static final int abc_item_background_holo_dark=0x7f020026; public static final int abc_item_background_holo_light=0x7f020027; public static final int abc_list_divider_mtrl_alpha=0x7f020028; public static final int abc_list_focused_holo=0x7f020029; public static final int abc_list_longpressed_holo=0x7f02002a; public static final int abc_list_pressed_holo_dark=0x7f02002b; public static final int abc_list_pressed_holo_light=0x7f02002c; public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; public static final int abc_list_selector_disabled_holo_light=0x7f020030; public static final int abc_list_selector_holo_dark=0x7f020031; public static final int abc_list_selector_holo_light=0x7f020032; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; public static final int abc_popup_background_mtrl_mult=0x7f020034; public static final int abc_ratingbar_indicator_material=0x7f020035; public static final int abc_ratingbar_material=0x7f020036; public static final int abc_ratingbar_small_material=0x7f020037; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; public static final int abc_seekbar_thumb_material=0x7f02003d; public static final int abc_seekbar_tick_mark_material=0x7f02003e; public static final int abc_seekbar_track_material=0x7f02003f; public static final int abc_spinner_mtrl_am_alpha=0x7f020040; public static final int abc_spinner_textfield_background_material=0x7f020041; public static final int abc_switch_thumb_material=0x7f020042; public static final int abc_switch_track_mtrl_alpha=0x7f020043; public static final int abc_tab_indicator_material=0x7f020044; public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; public static final int abc_text_cursor_material=0x7f020046; public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; public static final int abc_textfield_search_material=0x7f020051; public static final int abc_vector_test=0x7f020052; public static final int border=0x7f020053; public static final int button_main=0x7f020054; public static final int button_odabir=0x7f020055; public static final int citac_vesti=0x7f020056; public static final int empty_photo=0x7f020057; public static final int facebook=0x7f020058; public static final int facebook_pressed=0x7f020059; public static final int fonis=0x7f02005a; public static final int ic_agenda=0x7f02005b; public static final int ic_email=0x7f02005c; public static final int ic_people=0x7f02005d; public static final int infonmationpocetna=0x7f02005e; public static final int instagram=0x7f02005f; public static final int instagram_pressed=0x7f020060; public static final int linkedin=0x7f020061; public static final int linkedin_pressed=0x7f020062; public static final int main_b_bg=0x7f020063; public static final int main_b_social_fb=0x7f020064; public static final int main_b_social_instagram=0x7f020065; public static final int main_b_social_li=0x7f020066; public static final int main_b_social_twitter=0x7f020067; public static final int main_b_social_yt=0x7f020068; public static final int main_bstyle_default=0x7f020069; public static final int main_bstyle_pressed=0x7f02006a; public static final int msdnaa=0x7f02006b; public static final int msdnaa_b_camera=0x7f02006c; public static final int msdnaa_b_gallery=0x7f02006d; public static final int msdnaa_b_long=0x7f02006e; public static final int msdnaa_b_uploadpic=0x7f02006f; public static final int msdnaa_bstyle_camera=0x7f020070; public static final int msdnaa_bstyle_camera_pressed=0x7f020071; public static final int msdnaa_bstyle_gallery=0x7f020072; public static final int msdnaa_bstyle_gallery_pressed=0x7f020073; public static final int msdnaa_bstyle_long=0x7f020074; public static final int msdnaa_bstyle_long_pressed=0x7f020075; public static final int msdnaa_bstyle_uploadpic=0x7f020076; public static final int msdnaa_bstyle_uploadpic_pressed=0x7f020077; public static final int msdnaa_inputform_bg=0x7f020078; public static final int msdnaa_long_text_color=0x7f020079; public static final int news_onenews_bg=0x7f02007a; public static final int news_smallpic_bg=0x7f02007b; public static final int notification_template_icon_bg=0x7f020086; public static final int onama=0x7f02007c; public static final int projects_background=0x7f02007d; public static final int projekti=0x7f02007e; public static final int refresh123=0x7f02007f; public static final int splash1=0x7f020080; public static final int twitter=0x7f020081; public static final int twitter_pressed=0x7f020082; public static final int vesti=0x7f020083; public static final int youtube=0x7f020084; public static final int youtube_pressed=0x7f020085; } public static final class id { public static final int Exp=0x7f0b0054; public static final int action0=0x7f0b0062; public static final int action_bar=0x7f0b0045; public static final int action_bar_activity_content=0x7f0b0000; public static final int action_bar_container=0x7f0b0044; public static final int action_bar_root=0x7f0b0040; public static final int action_bar_spinner=0x7f0b0001; public static final int action_bar_subtitle=0x7f0b0025; public static final int action_bar_title=0x7f0b0024; public static final int action_context_bar=0x7f0b0046; public static final int action_divider=0x7f0b0066; public static final int action_menu_divider=0x7f0b0002; public static final int action_menu_presenter=0x7f0b0003; public static final int action_mode_bar=0x7f0b0042; public static final int action_mode_bar_stub=0x7f0b0041; public static final int action_mode_close_button=0x7f0b0026; public static final int activity_chooser_view_content=0x7f0b0027; public static final int add=0x7f0b0013; public static final int alertTitle=0x7f0b0033; public static final int always=0x7f0b001d; public static final int aros_checkBox=0x7f0b0057; public static final int back_button=0x7f0b005b; public static final int beginning=0x7f0b001a; public static final int bottom=0x7f0b0022; public static final int bp_checkBox=0x7f0b0059; public static final int buttonPanel=0x7f0b002e; public static final int cancel_action=0x7f0b0063; public static final int checkbox=0x7f0b003c; public static final int choose_id=0x7f0b005f; public static final int chronometer=0x7f0b0069; public static final int collapseActionView=0x7f0b001e; public static final int contentPanel=0x7f0b0034; public static final int custom=0x7f0b003a; public static final int customPanel=0x7f0b0039; public static final int decor_content_parent=0x7f0b0043; public static final int default_activity_button=0x7f0b002a; public static final int desc_id=0x7f0b0061; public static final int disableHome=0x7f0b000c; public static final int edit_query=0x7f0b0047; public static final int end=0x7f0b001b; public static final int end_padder=0x7f0b006e; public static final int expand_activities_button=0x7f0b0028; public static final int expanded_menu=0x7f0b003b; public static final int home=0x7f0b0004; public static final int homeAsUp=0x7f0b000d; public static final int icon=0x7f0b002c; public static final int ifRoom=0x7f0b001f; public static final int image=0x7f0b0029; public static final int info=0x7f0b006d; public static final int line1=0x7f0b0067; public static final int line3=0x7f0b006b; public static final int linearLayout=0x7f0b0055; public static final int listMode=0x7f0b0009; public static final int list_item=0x7f0b002b; public static final int media_actions=0x7f0b0065; public static final int middle=0x7f0b001c; public static final int multiply=0x7f0b0014; public static final int never=0x7f0b0020; public static final int none=0x7f0b000e; public static final int normal=0x7f0b000a; public static final int obavestenja_button=0x7f0b005d; public static final int obavestenja_id=0x7f0b005e; public static final int oikt_checkBox=0x7f0b0058; public static final int parentPanel=0x7f0b0030; public static final int pj_checkBox=0x7f0b005a; public static final int progress_circular=0x7f0b0005; public static final int progress_horizontal=0x7f0b0006; public static final int radio=0x7f0b003e; public static final int rezultati_button=0x7f0b005c; public static final int rmt_checkBox=0x7f0b0056; public static final int screen=0x7f0b0015; public static final int scrollIndicatorDown=0x7f0b0038; public static final int scrollIndicatorUp=0x7f0b0035; public static final int scrollView=0x7f0b0036; public static final int search_badge=0x7f0b0049; public static final int search_bar=0x7f0b0048; public static final int search_button=0x7f0b004a; public static final int search_close_btn=0x7f0b004f; public static final int search_edit_frame=0x7f0b004b; public static final int search_go_btn=0x7f0b0051; public static final int search_mag_icon=0x7f0b004c; public static final int search_plate=0x7f0b004d; public static final int search_src_text=0x7f0b004e; public static final int search_voice_btn=0x7f0b0052; public static final int select_dialog_listview=0x7f0b0053; public static final int shortcut=0x7f0b003d; public static final int showCustom=0x7f0b000f; public static final int showHome=0x7f0b0010; public static final int showTitle=0x7f0b0011; public static final int spacer=0x7f0b002f; public static final int split_action_bar=0x7f0b0007; public static final int src_atop=0x7f0b0016; public static final int src_in=0x7f0b0017; public static final int src_over=0x7f0b0018; public static final int status_bar_latest_event_content=0x7f0b0064; public static final int submenuarrow=0x7f0b003f; public static final int submit_area=0x7f0b0050; public static final int tabMode=0x7f0b000b; public static final int text=0x7f0b006c; public static final int text2=0x7f0b006a; public static final int textSpacerNoButtons=0x7f0b0037; public static final int time=0x7f0b0068; public static final int title=0x7f0b002d; public static final int title_id=0x7f0b0060; public static final int title_template=0x7f0b0032; public static final int top=0x7f0b0023; public static final int topPanel=0x7f0b0031; public static final int up=0x7f0b0008; public static final int useLogo=0x7f0b0012; public static final int withText=0x7f0b0021; public static final int wrap_content=0x7f0b0019; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f0c0000; public static final int abc_config_activityShortDur=0x7f0c0001; public static final int cancel_button_image_alpha=0x7f0c0002; public static final int status_bar_notification_info_maxnum=0x7f0c0003; } public static final class layout { public static final int abc_action_bar_title_item=0x7f040000; public static final int abc_action_bar_up_container=0x7f040001; public static final int abc_action_bar_view_list_nav_layout=0x7f040002; public static final int abc_action_menu_item_layout=0x7f040003; public static final int abc_action_menu_layout=0x7f040004; public static final int abc_action_mode_bar=0x7f040005; public static final int abc_action_mode_close_item_material=0x7f040006; public static final int abc_activity_chooser_view=0x7f040007; public static final int abc_activity_chooser_view_list_item=0x7f040008; public static final int abc_alert_dialog_button_bar_material=0x7f040009; public static final int abc_alert_dialog_material=0x7f04000a; public static final int abc_dialog_title_material=0x7f04000b; public static final int abc_expanded_menu_layout=0x7f04000c; public static final int abc_list_menu_item_checkbox=0x7f04000d; public static final int abc_list_menu_item_icon=0x7f04000e; public static final int abc_list_menu_item_layout=0x7f04000f; public static final int abc_list_menu_item_radio=0x7f040010; public static final int abc_popup_menu_header_item_layout=0x7f040011; public static final int abc_popup_menu_item_layout=0x7f040012; public static final int abc_screen_content_include=0x7f040013; public static final int abc_screen_simple=0x7f040014; public static final int abc_screen_simple_overlay_action_mode=0x7f040015; public static final int abc_screen_toolbar=0x7f040016; public static final int abc_search_dropdown_item_icons_2line=0x7f040017; public static final int abc_search_view=0x7f040018; public static final int abc_select_dialog_material=0x7f040019; public static final int activity_main=0x7f04001a; public static final int activity_odabir=0x7f04001b; public static final int activity_pocetna=0x7f04001c; public static final int news_list_item=0x7f04001d; public static final int notification_media_action=0x7f04001e; public static final int notification_media_cancel_action=0x7f04001f; public static final int notification_template_big_media=0x7f040020; public static final int notification_template_big_media_narrow=0x7f040021; public static final int notification_template_lines=0x7f040022; public static final int notification_template_media=0x7f040023; public static final int notification_template_part_chronometer=0x7f040024; public static final int notification_template_part_time=0x7f040025; public static final int select_dialog_item_material=0x7f040026; public static final int select_dialog_multichoice_material=0x7f040027; public static final int select_dialog_singlechoice_material=0x7f040028; public static final int support_simple_spinner_dropdown_item=0x7f040029; } public static final class mipmap { public static final int ic_launcher=0x7f030000; } public static final class string { public static final int abc_action_bar_home_description=0x7f060000; public static final int abc_action_bar_home_description_format=0x7f060001; public static final int abc_action_bar_home_subtitle_description_format=0x7f060002; public static final int abc_action_bar_up_description=0x7f060003; public static final int abc_action_menu_overflow_description=0x7f060004; public static final int abc_action_mode_done=0x7f060005; public static final int abc_activity_chooser_view_see_all=0x7f060006; public static final int abc_activitychooserview_choose_application=0x7f060007; public static final int abc_capital_off=0x7f060008; public static final int abc_capital_on=0x7f060009; public static final int abc_font_family_body_1_material=0x7f060015; public static final int abc_font_family_body_2_material=0x7f060016; public static final int abc_font_family_button_material=0x7f060017; public static final int abc_font_family_caption_material=0x7f060018; public static final int abc_font_family_display_1_material=0x7f060019; public static final int abc_font_family_display_2_material=0x7f06001a; public static final int abc_font_family_display_3_material=0x7f06001b; public static final int abc_font_family_display_4_material=0x7f06001c; public static final int abc_font_family_headline_material=0x7f06001d; public static final int abc_font_family_menu_material=0x7f06001e; public static final int abc_font_family_subhead_material=0x7f06001f; public static final int abc_font_family_title_material=0x7f060020; public static final int abc_search_hint=0x7f06000a; public static final int abc_searchview_description_clear=0x7f06000b; public static final int abc_searchview_description_query=0x7f06000c; public static final int abc_searchview_description_search=0x7f06000d; public static final int abc_searchview_description_submit=0x7f06000e; public static final int abc_searchview_description_voice=0x7f06000f; public static final int abc_shareactionprovider_share_with=0x7f060010; public static final int abc_shareactionprovider_share_with_application=0x7f060011; public static final int abc_toolbar_collapse_description=0x7f060012; public static final int action_settings=0x7f060021; public static final int app_name=0x7f060022; public static final int loadmore_btn_txt=0x7f060023; public static final int search_hint=0x7f060024; public static final int search_menu_title=0x7f060013; public static final int search_title=0x7f060025; public static final int status_bar_notification_info_overflow=0x7f060014; } public static final class style { public static final int AlertDialog_AppCompat=0x7f08008a; public static final int AlertDialog_AppCompat_Light=0x7f08008b; public static final int Animation_AppCompat_Dialog=0x7f08008c; public static final int Animation_AppCompat_DropDownUp=0x7f08008d; public static final int AppTheme=0x7f08008e; public static final int Base_AlertDialog_AppCompat=0x7f08008f; public static final int Base_AlertDialog_AppCompat_Light=0x7f080090; public static final int Base_Animation_AppCompat_Dialog=0x7f080091; public static final int Base_Animation_AppCompat_DropDownUp=0x7f080092; public static final int Base_DialogWindowTitle_AppCompat=0x7f080093; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f080094; public static final int Base_TextAppearance_AppCompat=0x7f080038; public static final int Base_TextAppearance_AppCompat_Body1=0x7f080039; public static final int Base_TextAppearance_AppCompat_Body2=0x7f08003a; public static final int Base_TextAppearance_AppCompat_Button=0x7f080022; public static final int Base_TextAppearance_AppCompat_Caption=0x7f08003b; public static final int Base_TextAppearance_AppCompat_Display1=0x7f08003c; public static final int Base_TextAppearance_AppCompat_Display2=0x7f08003d; public static final int Base_TextAppearance_AppCompat_Display3=0x7f08003e; public static final int Base_TextAppearance_AppCompat_Display4=0x7f08003f; public static final int Base_TextAppearance_AppCompat_Headline=0x7f080040; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f08000b; public static final int Base_TextAppearance_AppCompat_Large=0x7f080041; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08000c; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080042; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080043; public static final int Base_TextAppearance_AppCompat_Medium=0x7f080044; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08000d; public static final int Base_TextAppearance_AppCompat_Menu=0x7f080045; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f080095; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080046; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080047; public static final int Base_TextAppearance_AppCompat_Small=0x7f080048; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08000e; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080049; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08000f; public static final int Base_TextAppearance_AppCompat_Title=0x7f08004a; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f080010; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f080083; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08004b; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08004c; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08004d; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08004e; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08004f; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080050; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080051; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080084; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f080096; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080052; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080053; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080054; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080055; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080056; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080097; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080057; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080058; public static final int Base_Theme_AppCompat=0x7f080059; public static final int Base_Theme_AppCompat_CompactMenu=0x7f080098; public static final int Base_Theme_AppCompat_Dialog=0x7f080011; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080099; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f08009a; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f08009b; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f080001; public static final int Base_Theme_AppCompat_Light=0x7f08005a; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f08009c; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080012; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f08009d; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f08009e; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f08009f; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080002; public static final int Base_ThemeOverlay_AppCompat=0x7f0800a0; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800a1; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800a2; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800a3; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080013; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0800a4; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800a5; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080014; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080015; public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f080016; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f08001e; public static final int Base_V12_Widget_AppCompat_EditText=0x7f08001f; public static final int Base_V21_Theme_AppCompat=0x7f08005b; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08005c; public static final int Base_V21_Theme_AppCompat_Light=0x7f08005d; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08005e; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08005f; public static final int Base_V22_Theme_AppCompat=0x7f080081; public static final int Base_V22_Theme_AppCompat_Light=0x7f080082; public static final int Base_V23_Theme_AppCompat=0x7f080085; public static final int Base_V23_Theme_AppCompat_Light=0x7f080086; public static final int Base_V7_Theme_AppCompat=0x7f0800a6; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800a7; public static final int Base_V7_Theme_AppCompat_Light=0x7f0800a8; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800a9; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800aa; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800ab; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800ac; public static final int Base_Widget_AppCompat_ActionBar=0x7f0800ad; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800ae; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800af; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f080060; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080061; public static final int Base_Widget_AppCompat_ActionButton=0x7f080062; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080063; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080064; public static final int Base_Widget_AppCompat_ActionMode=0x7f0800b0; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800b1; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080020; public static final int Base_Widget_AppCompat_Button=0x7f080065; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080066; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080067; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800b2; public static final int Base_Widget_AppCompat_Button_Colored=0x7f080087; public static final int Base_Widget_AppCompat_Button_Small=0x7f080068; public static final int Base_Widget_AppCompat_ButtonBar=0x7f080069; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800b3; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f08006a; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08006b; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800b4; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080000; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800b5; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08006c; public static final int Base_Widget_AppCompat_EditText=0x7f080021; public static final int Base_Widget_AppCompat_ImageButton=0x7f08006d; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800b6; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800b7; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800b8; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08006e; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08006f; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f080070; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080071; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080072; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800b9; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080073; public static final int Base_Widget_AppCompat_ListView=0x7f080074; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080075; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080076; public static final int Base_Widget_AppCompat_PopupMenu=0x7f080077; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080078; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800ba; public static final int Base_Widget_AppCompat_ProgressBar=0x7f080017; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f080018; public static final int Base_Widget_AppCompat_RatingBar=0x7f080079; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f080088; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f080089; public static final int Base_Widget_AppCompat_SearchView=0x7f0800bb; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800bc; public static final int Base_Widget_AppCompat_SeekBar=0x7f08007a; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800bd; public static final int Base_Widget_AppCompat_Spinner=0x7f08007b; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080003; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08007c; public static final int Base_Widget_AppCompat_Toolbar=0x7f0800be; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08007d; public static final int FontStyle=0x7f0800bf; public static final int FontStyle_Large=0x7f0800c0; public static final int FontStyle_Medium=0x7f0800c1; public static final int FontStyle_Small=0x7f0800c2; public static final int Platform_AppCompat=0x7f080019; public static final int Platform_AppCompat_Light=0x7f08001a; public static final int Platform_ThemeOverlay_AppCompat=0x7f08007e; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08007f; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f080080; public static final int Platform_V11_AppCompat=0x7f08001b; public static final int Platform_V11_AppCompat_Light=0x7f08001c; public static final int Platform_V14_AppCompat=0x7f080023; public static final int Platform_V14_AppCompat_Light=0x7f080024; public static final int Platform_Widget_AppCompat_Spinner=0x7f08001d; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f08002a; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08002b; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08002c; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08002d; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08002e; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08002f; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f080030; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080031; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080032; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080033; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080034; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080035; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080036; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080037; public static final int TextAppearance_AppCompat=0x7f0800c3; public static final int TextAppearance_AppCompat_Body1=0x7f0800c4; public static final int TextAppearance_AppCompat_Body2=0x7f0800c5; public static final int TextAppearance_AppCompat_Button=0x7f0800c6; public static final int TextAppearance_AppCompat_Caption=0x7f0800c7; public static final int TextAppearance_AppCompat_Display1=0x7f0800c8; public static final int TextAppearance_AppCompat_Display2=0x7f0800c9; public static final int TextAppearance_AppCompat_Display3=0x7f0800ca; public static final int TextAppearance_AppCompat_Display4=0x7f0800cb; public static final int TextAppearance_AppCompat_Headline=0x7f0800cc; public static final int TextAppearance_AppCompat_Inverse=0x7f0800cd; public static final int TextAppearance_AppCompat_Large=0x7f0800ce; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800cf; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800d0; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800d1; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800d2; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800d3; public static final int TextAppearance_AppCompat_Medium=0x7f0800d4; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800d5; public static final int TextAppearance_AppCompat_Menu=0x7f0800d6; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0800d7; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0800d8; public static final int TextAppearance_AppCompat_Small=0x7f0800d9; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0800da; public static final int TextAppearance_AppCompat_Subhead=0x7f0800db; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0800dc; public static final int TextAppearance_AppCompat_Title=0x7f0800dd; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0800de; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800df; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0800e0; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0800e1; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0800e2; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0800e3; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0800e4; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0800e5; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0800e6; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0800e7; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0800e8; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800e9; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800ea; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0800eb; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0800ec; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0800ed; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0800ee; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0800ef; public static final int TextAppearance_StatusBar_EventContent=0x7f080025; public static final int TextAppearance_StatusBar_EventContent_Info=0x7f080026; public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f080027; public static final int TextAppearance_StatusBar_EventContent_Time=0x7f080028; public static final int TextAppearance_StatusBar_EventContent_Title=0x7f080029; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800f0; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0800f1; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0800f2; public static final int Theme_AppCompat=0x7f0800f3; public static final int Theme_AppCompat_CompactMenu=0x7f0800f4; public static final int Theme_AppCompat_DayNight=0x7f080004; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080005; public static final int Theme_AppCompat_DayNight_Dialog=0x7f080006; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080007; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080008; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080009; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f08000a; public static final int Theme_AppCompat_Dialog=0x7f0800f5; public static final int Theme_AppCompat_Dialog_Alert=0x7f0800f6; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0800f7; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0800f8; public static final int Theme_AppCompat_Light=0x7f0800f9; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0800fa; public static final int Theme_AppCompat_Light_Dialog=0x7f0800fb; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0800fc; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0800fd; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0800fe; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0800ff; public static final int Theme_AppCompat_NoActionBar=0x7f080100; public static final int ThemeOverlay_AppCompat=0x7f080101; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080102; public static final int ThemeOverlay_AppCompat_Dark=0x7f080103; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080104; public static final int ThemeOverlay_AppCompat_Dialog=0x7f080105; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080106; public static final int ThemeOverlay_AppCompat_Light=0x7f080107; public static final int Widget_AppCompat_ActionBar=0x7f080108; public static final int Widget_AppCompat_ActionBar_Solid=0x7f080109; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f08010a; public static final int Widget_AppCompat_ActionBar_TabText=0x7f08010b; public static final int Widget_AppCompat_ActionBar_TabView=0x7f08010c; public static final int Widget_AppCompat_ActionButton=0x7f08010d; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08010e; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08010f; public static final int Widget_AppCompat_ActionMode=0x7f080110; public static final int Widget_AppCompat_ActivityChooserView=0x7f080111; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080112; public static final int Widget_AppCompat_Button=0x7f080113; public static final int Widget_AppCompat_Button_Borderless=0x7f080114; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080115; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080116; public static final int Widget_AppCompat_Button_Colored=0x7f080117; public static final int Widget_AppCompat_Button_Small=0x7f080118; public static final int Widget_AppCompat_ButtonBar=0x7f080119; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f08011a; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f08011b; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08011c; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08011d; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08011e; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08011f; public static final int Widget_AppCompat_EditText=0x7f080120; public static final int Widget_AppCompat_ImageButton=0x7f080121; public static final int Widget_AppCompat_Light_ActionBar=0x7f080122; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080123; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080124; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080125; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080126; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080127; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080128; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080129; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f08012a; public static final int Widget_AppCompat_Light_ActionButton=0x7f08012b; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08012c; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08012d; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08012e; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08012f; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f080130; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f080131; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080132; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080133; public static final int Widget_AppCompat_Light_PopupMenu=0x7f080134; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080135; public static final int Widget_AppCompat_Light_SearchView=0x7f080136; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080137; public static final int Widget_AppCompat_ListMenuView=0x7f080138; public static final int Widget_AppCompat_ListPopupWindow=0x7f080139; public static final int Widget_AppCompat_ListView=0x7f08013a; public static final int Widget_AppCompat_ListView_DropDown=0x7f08013b; public static final int Widget_AppCompat_ListView_Menu=0x7f08013c; public static final int Widget_AppCompat_PopupMenu=0x7f08013d; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08013e; public static final int Widget_AppCompat_PopupWindow=0x7f08013f; public static final int Widget_AppCompat_ProgressBar=0x7f080140; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f080141; public static final int Widget_AppCompat_RatingBar=0x7f080142; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080143; public static final int Widget_AppCompat_RatingBar_Small=0x7f080144; public static final int Widget_AppCompat_SearchView=0x7f080145; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080146; public static final int Widget_AppCompat_SeekBar=0x7f080147; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080148; public static final int Widget_AppCompat_Spinner=0x7f080149; public static final int Widget_AppCompat_Spinner_DropDown=0x7f08014a; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f08014b; public static final int Widget_AppCompat_Spinner_Underlined=0x7f08014c; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08014d; public static final int Widget_AppCompat_Toolbar=0x7f08014e; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08014f; } 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.example.stefanelez.infonmation:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit com.example.stefanelez.infonmation:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked com.example.stefanelez.infonmation:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd com.example.stefanelez.infonmation:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.example.stefanelez.infonmation:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft com.example.stefanelez.infonmation:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight com.example.stefanelez.infonmation:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart com.example.stefanelez.infonmation:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.example.stefanelez.infonmation:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout com.example.stefanelez.infonmation:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions com.example.stefanelez.infonmation:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider com.example.stefanelez.infonmation:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation com.example.stefanelez.infonmation:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height com.example.stefanelez.infonmation:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll com.example.stefanelez.infonmation:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.example.stefanelez.infonmation:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout com.example.stefanelez.infonmation:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon com.example.stefanelez.infonmation:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.example.stefanelez.infonmation:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding com.example.stefanelez.infonmation:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo com.example.stefanelez.infonmation:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode com.example.stefanelez.infonmation:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme com.example.stefanelez.infonmation:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding com.example.stefanelez.infonmation:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle com.example.stefanelez.infonmation:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle com.example.stefanelez.infonmation:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle com.example.stefanelez.infonmation:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title com.example.stefanelez.infonmation:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle com.example.stefanelez.infonmation:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionBar_background @see #ActionBar_backgroundSplit @see #ActionBar_backgroundStacked @see #ActionBar_contentInsetEnd @see #ActionBar_contentInsetEndWithActions @see #ActionBar_contentInsetLeft @see #ActionBar_contentInsetRight @see #ActionBar_contentInsetStart @see #ActionBar_contentInsetStartWithNavigation @see #ActionBar_customNavigationLayout @see #ActionBar_displayOptions @see #ActionBar_divider @see #ActionBar_elevation @see #ActionBar_height @see #ActionBar_hideOnContentScroll @see #ActionBar_homeAsUpIndicator @see #ActionBar_homeLayout @see #ActionBar_icon @see #ActionBar_indeterminateProgressStyle @see #ActionBar_itemPadding @see #ActionBar_logo @see #ActionBar_navigationMode @see #ActionBar_popupTheme @see #ActionBar_progressBarPadding @see #ActionBar_progressBarStyle @see #ActionBar_subtitle @see #ActionBar_subtitleTextStyle @see #ActionBar_title @see #ActionBar_titleTextStyle */ public static final int[] ActionBar = { 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, 0x7f01001c, 0x7f01001d, 0x7f01005a }; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:background */ public static final int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions = 25; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation = 24; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:divider */ public static final int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:elevation */ public static final int ActionBar_elevation = 26; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:height */ public static final int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 28; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:icon */ public static final int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:logo */ public static final int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:popupTheme */ public static final int ActionBar_popupTheme = 27; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:subtitle */ public static final int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:title */ public static final int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation: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.example.stefanelez.infonmation:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit com.example.stefanelez.infonmation:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout com.example.stefanelez.infonmation:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height com.example.stefanelez.infonmation:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle com.example.stefanelez.infonmation:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle com.example.stefanelez.infonmation: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, 0x7f01001e }; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:background */ public static final int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:height */ public static final int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation: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.example.stefanelez.infonmation:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.example.stefanelez.infonmation:initialActivityCount}</code></td><td></td></tr> </table> @see #ActivityChooserView_expandActivityOverflowButtonDrawable @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { 0x7f01001f, 0x7f010020 }; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation: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.example.stefanelez.infonmation:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout com.example.stefanelez.infonmation:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout com.example.stefanelez.infonmation:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.example.stefanelez.infonmation:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.example.stefanelez.infonmation: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, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025 }; /** <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.example.stefanelez.infonmation.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.example.stefanelez.infonmation:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:listItemLayout */ public static final int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:listLayout */ public static final int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout = 4; /** Attributes that can be used with a AppCompatImageView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_srcCompat com.example.stefanelez.infonmation:srcCompat}</code></td><td></td></tr> </table> @see #AppCompatImageView_android_src @see #AppCompatImageView_srcCompat */ public static final int[] AppCompatImageView = { 0x01010119, 0x7f010026 }; /** <p>This symbol is the offset where the {@link android.R.attr#src} attribute's value can be found in the {@link #AppCompatImageView} array. @attr name android:src */ public static final int AppCompatImageView_android_src = 0; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#srcCompat} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:srcCompat */ public static final int AppCompatImageView_srcCompat = 1; /** Attributes that can be used with a AppCompatSeekBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMark com.example.stefanelez.infonmation:tickMark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.example.stefanelez.infonmation:tickMarkTint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.example.stefanelez.infonmation:tickMarkTintMode}</code></td><td></td></tr> </table> @see #AppCompatSeekBar_android_thumb @see #AppCompatSeekBar_tickMark @see #AppCompatSeekBar_tickMarkTint @see #AppCompatSeekBar_tickMarkTintMode */ public static final int[] AppCompatSeekBar = { 0x01010142, 0x7f010027, 0x7f010028, 0x7f010029 }; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #AppCompatSeekBar} array. @attr name android:thumb */ public static final int AppCompatSeekBar_android_thumb = 0; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#tickMark} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:tickMark */ public static final int AppCompatSeekBar_tickMark = 1; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#tickMarkTint} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint = 2; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#tickMarkTintMode} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.example.stefanelez.infonmation:tickMarkTintMode */ public static final int AppCompatSeekBar_tickMarkTintMode = 3; /** Attributes that can be used with a AppCompatTextHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr> </table> @see #AppCompatTextHelper_android_drawableBottom @see #AppCompatTextHelper_android_drawableEnd @see #AppCompatTextHelper_android_drawableLeft @see #AppCompatTextHelper_android_drawableRight @see #AppCompatTextHelper_android_drawableStart @see #AppCompatTextHelper_android_drawableTop @see #AppCompatTextHelper_android_textAppearance */ public static final int[] AppCompatTextHelper = { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; /** <p>This symbol is the offset where the {@link android.R.attr#drawableBottom} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableBottom */ public static final int AppCompatTextHelper_android_drawableBottom = 2; /** <p>This symbol is the offset where the {@link android.R.attr#drawableEnd} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableEnd */ public static final int AppCompatTextHelper_android_drawableEnd = 6; /** <p>This symbol is the offset where the {@link android.R.attr#drawableLeft} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableLeft */ public static final int AppCompatTextHelper_android_drawableLeft = 3; /** <p>This symbol is the offset where the {@link android.R.attr#drawableRight} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableRight */ public static final int AppCompatTextHelper_android_drawableRight = 4; /** <p>This symbol is the offset where the {@link android.R.attr#drawableStart} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableStart */ public static final int AppCompatTextHelper_android_drawableStart = 5; /** <p>This symbol is the offset where the {@link android.R.attr#drawableTop} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableTop */ public static final int AppCompatTextHelper_android_drawableTop = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:textAppearance */ public static final int AppCompatTextHelper_android_textAppearance = 0; /** Attributes that can be used with a AppCompatTextView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_textAllCaps com.example.stefanelez.infonmation:textAllCaps}</code></td><td></td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f01002a }; /** <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.example.stefanelez.infonmation.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.example.stefanelez.infonmation:textAllCaps */ public static final int AppCompatTextView_textAllCaps = 1; /** Attributes that can be used with a AppCompatTheme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTheme_actionBarDivider com.example.stefanelez.infonmation:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.example.stefanelez.infonmation:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.example.stefanelez.infonmation:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSize com.example.stefanelez.infonmation:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.example.stefanelez.infonmation:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.example.stefanelez.infonmation:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.example.stefanelez.infonmation:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.example.stefanelez.infonmation:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.example.stefanelez.infonmation:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.example.stefanelez.infonmation:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.example.stefanelez.infonmation:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.example.stefanelez.infonmation:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.example.stefanelez.infonmation:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.example.stefanelez.infonmation:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.example.stefanelez.infonmation:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.example.stefanelez.infonmation:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.example.stefanelez.infonmation:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.example.stefanelez.infonmation:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.example.stefanelez.infonmation:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.example.stefanelez.infonmation:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.example.stefanelez.infonmation:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.example.stefanelez.infonmation:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.example.stefanelez.infonmation:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.example.stefanelez.infonmation:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.example.stefanelez.infonmation:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.example.stefanelez.infonmation:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.example.stefanelez.infonmation:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.example.stefanelez.infonmation:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.example.stefanelez.infonmation:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.example.stefanelez.infonmation:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.example.stefanelez.infonmation:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.example.stefanelez.infonmation:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.example.stefanelez.infonmation:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.example.stefanelez.infonmation:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.example.stefanelez.infonmation:alertDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.example.stefanelez.infonmation:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.example.stefanelez.infonmation:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.example.stefanelez.infonmation:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.example.stefanelez.infonmation:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.example.stefanelez.infonmation:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.example.stefanelez.infonmation:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.example.stefanelez.infonmation:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyle com.example.stefanelez.infonmation:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.example.stefanelez.infonmation:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.example.stefanelez.infonmation:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.example.stefanelez.infonmation:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorAccent com.example.stefanelez.infonmation:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.example.stefanelez.infonmation:colorBackgroundFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.example.stefanelez.infonmation:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.example.stefanelez.infonmation:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.example.stefanelez.infonmation:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.example.stefanelez.infonmation:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimary com.example.stefanelez.infonmation:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.example.stefanelez.infonmation:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.example.stefanelez.infonmation:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_controlBackground com.example.stefanelez.infonmation:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.example.stefanelez.infonmation:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogTheme com.example.stefanelez.infonmation:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.example.stefanelez.infonmation:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerVertical com.example.stefanelez.infonmation:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.example.stefanelez.infonmation:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.example.stefanelez.infonmation:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextBackground com.example.stefanelez.infonmation:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextColor com.example.stefanelez.infonmation:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextStyle com.example.stefanelez.infonmation:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.example.stefanelez.infonmation:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.example.stefanelez.infonmation:imageButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.example.stefanelez.infonmation:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.example.stefanelez.infonmation:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.example.stefanelez.infonmation:listMenuViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.example.stefanelez.infonmation:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.example.stefanelez.infonmation:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.example.stefanelez.infonmation:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.example.stefanelez.infonmation:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.example.stefanelez.infonmation:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.example.stefanelez.infonmation:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelBackground com.example.stefanelez.infonmation:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.example.stefanelez.infonmation:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.example.stefanelez.infonmation:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.example.stefanelez.infonmation:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.example.stefanelez.infonmation:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.example.stefanelez.infonmation:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.example.stefanelez.infonmation:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.example.stefanelez.infonmation:ratingBarStyleIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.example.stefanelez.infonmation:ratingBarStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.example.stefanelez.infonmation:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.example.stefanelez.infonmation:seekBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.example.stefanelez.infonmation:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.example.stefanelez.infonmation:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.example.stefanelez.infonmation:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.example.stefanelez.infonmation:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_switchStyle com.example.stefanelez.infonmation:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.example.stefanelez.infonmation:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.example.stefanelez.infonmation:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.example.stefanelez.infonmation:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.example.stefanelez.infonmation:textAppearancePopupMenuHeader}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.example.stefanelez.infonmation:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.example.stefanelez.infonmation:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.example.stefanelez.infonmation:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.example.stefanelez.infonmation:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.example.stefanelez.infonmation:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.example.stefanelez.infonmation:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.example.stefanelez.infonmation:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBar com.example.stefanelez.infonmation:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.example.stefanelez.infonmation:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.example.stefanelez.infonmation:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.example.stefanelez.infonmation:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.example.stefanelez.infonmation:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.example.stefanelez.infonmation:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.example.stefanelez.infonmation:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.example.stefanelez.infonmation:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.example.stefanelez.infonmation:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.example.stefanelez.infonmation:windowNoTitle}</code></td><td></td></tr> </table> @see #AppCompatTheme_actionBarDivider @see #AppCompatTheme_actionBarItemBackground @see #AppCompatTheme_actionBarPopupTheme @see #AppCompatTheme_actionBarSize @see #AppCompatTheme_actionBarSplitStyle @see #AppCompatTheme_actionBarStyle @see #AppCompatTheme_actionBarTabBarStyle @see #AppCompatTheme_actionBarTabStyle @see #AppCompatTheme_actionBarTabTextStyle @see #AppCompatTheme_actionBarTheme @see #AppCompatTheme_actionBarWidgetTheme @see #AppCompatTheme_actionButtonStyle @see #AppCompatTheme_actionDropDownStyle @see #AppCompatTheme_actionMenuTextAppearance @see #AppCompatTheme_actionMenuTextColor @see #AppCompatTheme_actionModeBackground @see #AppCompatTheme_actionModeCloseButtonStyle @see #AppCompatTheme_actionModeCloseDrawable @see #AppCompatTheme_actionModeCopyDrawable @see #AppCompatTheme_actionModeCutDrawable @see #AppCompatTheme_actionModeFindDrawable @see #AppCompatTheme_actionModePasteDrawable @see #AppCompatTheme_actionModePopupWindowStyle @see #AppCompatTheme_actionModeSelectAllDrawable @see #AppCompatTheme_actionModeShareDrawable @see #AppCompatTheme_actionModeSplitBackground @see #AppCompatTheme_actionModeStyle @see #AppCompatTheme_actionModeWebSearchDrawable @see #AppCompatTheme_actionOverflowButtonStyle @see #AppCompatTheme_actionOverflowMenuStyle @see #AppCompatTheme_activityChooserViewStyle @see #AppCompatTheme_alertDialogButtonGroupStyle @see #AppCompatTheme_alertDialogCenterButtons @see #AppCompatTheme_alertDialogStyle @see #AppCompatTheme_alertDialogTheme @see #AppCompatTheme_android_windowAnimationStyle @see #AppCompatTheme_android_windowIsFloating @see #AppCompatTheme_autoCompleteTextViewStyle @see #AppCompatTheme_borderlessButtonStyle @see #AppCompatTheme_buttonBarButtonStyle @see #AppCompatTheme_buttonBarNegativeButtonStyle @see #AppCompatTheme_buttonBarNeutralButtonStyle @see #AppCompatTheme_buttonBarPositiveButtonStyle @see #AppCompatTheme_buttonBarStyle @see #AppCompatTheme_buttonStyle @see #AppCompatTheme_buttonStyleSmall @see #AppCompatTheme_checkboxStyle @see #AppCompatTheme_checkedTextViewStyle @see #AppCompatTheme_colorAccent @see #AppCompatTheme_colorBackgroundFloating @see #AppCompatTheme_colorButtonNormal @see #AppCompatTheme_colorControlActivated @see #AppCompatTheme_colorControlHighlight @see #AppCompatTheme_colorControlNormal @see #AppCompatTheme_colorPrimary @see #AppCompatTheme_colorPrimaryDark @see #AppCompatTheme_colorSwitchThumbNormal @see #AppCompatTheme_controlBackground @see #AppCompatTheme_dialogPreferredPadding @see #AppCompatTheme_dialogTheme @see #AppCompatTheme_dividerHorizontal @see #AppCompatTheme_dividerVertical @see #AppCompatTheme_dropDownListViewStyle @see #AppCompatTheme_dropdownListPreferredItemHeight @see #AppCompatTheme_editTextBackground @see #AppCompatTheme_editTextColor @see #AppCompatTheme_editTextStyle @see #AppCompatTheme_homeAsUpIndicator @see #AppCompatTheme_imageButtonStyle @see #AppCompatTheme_listChoiceBackgroundIndicator @see #AppCompatTheme_listDividerAlertDialog @see #AppCompatTheme_listMenuViewStyle @see #AppCompatTheme_listPopupWindowStyle @see #AppCompatTheme_listPreferredItemHeight @see #AppCompatTheme_listPreferredItemHeightLarge @see #AppCompatTheme_listPreferredItemHeightSmall @see #AppCompatTheme_listPreferredItemPaddingLeft @see #AppCompatTheme_listPreferredItemPaddingRight @see #AppCompatTheme_panelBackground @see #AppCompatTheme_panelMenuListTheme @see #AppCompatTheme_panelMenuListWidth @see #AppCompatTheme_popupMenuStyle @see #AppCompatTheme_popupWindowStyle @see #AppCompatTheme_radioButtonStyle @see #AppCompatTheme_ratingBarStyle @see #AppCompatTheme_ratingBarStyleIndicator @see #AppCompatTheme_ratingBarStyleSmall @see #AppCompatTheme_searchViewStyle @see #AppCompatTheme_seekBarStyle @see #AppCompatTheme_selectableItemBackground @see #AppCompatTheme_selectableItemBackgroundBorderless @see #AppCompatTheme_spinnerDropDownItemStyle @see #AppCompatTheme_spinnerStyle @see #AppCompatTheme_switchStyle @see #AppCompatTheme_textAppearanceLargePopupMenu @see #AppCompatTheme_textAppearanceListItem @see #AppCompatTheme_textAppearanceListItemSmall @see #AppCompatTheme_textAppearancePopupMenuHeader @see #AppCompatTheme_textAppearanceSearchResultSubtitle @see #AppCompatTheme_textAppearanceSearchResultTitle @see #AppCompatTheme_textAppearanceSmallPopupMenu @see #AppCompatTheme_textColorAlertDialogListItem @see #AppCompatTheme_textColorSearchUrl @see #AppCompatTheme_toolbarNavigationButtonStyle @see #AppCompatTheme_toolbarStyle @see #AppCompatTheme_windowActionBar @see #AppCompatTheme_windowActionBarOverlay @see #AppCompatTheme_windowActionModeOverlay @see #AppCompatTheme_windowFixedHeightMajor @see #AppCompatTheme_windowFixedHeightMinor @see #AppCompatTheme_windowFixedWidthMajor @see #AppCompatTheme_windowFixedWidthMinor @see #AppCompatTheme_windowMinWidthMajor @see #AppCompatTheme_windowMinWidthMinor @see #AppCompatTheme_windowNoTitle */ public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b }; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionBarDivider} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionBarItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionBarPopupTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionBarSize} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> @attr name com.example.stefanelez.infonmation:actionBarSize */ public static final int AppCompatTheme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionBarSplitStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionBarTabBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionBarTabStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionBarTabTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionBarTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionBarWidgetTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle = 50; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionDropDownStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle = 46; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionMenuTextAppearance} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionMenuTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.stefanelez.infonmation:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionModeBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionModeCloseButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionModeCloseDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionModeCopyDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionModeCutDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionModeFindDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionModePasteDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionModePopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionModeSelectAllDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionModeShareDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionModeSplitBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionModeStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionModeWebSearchDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionOverflowButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#actionOverflowMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#activityChooserViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle = 58; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#alertDialogButtonGroupStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle = 94; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#alertDialogCenterButtons} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons = 95; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#alertDialogStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle = 93; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#alertDialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme = 96; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowAnimationStyle */ public static final int AppCompatTheme_android_windowAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowIsFloating */ public static final int AppCompatTheme_android_windowIsFloating = 0; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#autoCompleteTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle = 101; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#borderlessButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle = 55; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#buttonBarButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle = 52; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#buttonBarNegativeButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 99; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#buttonBarNeutralButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 100; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#buttonBarPositiveButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 98; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#buttonBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle = 51; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#buttonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:buttonStyle */ public static final int AppCompatTheme_buttonStyle = 102; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#buttonStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall = 103; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#checkboxStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle = 104; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#checkedTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle = 105; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#colorAccent} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:colorAccent */ public static final int AppCompatTheme_colorAccent = 85; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#colorBackgroundFloating} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating = 92; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#colorButtonNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal = 89; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#colorControlActivated} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated = 87; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#colorControlHighlight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight = 88; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#colorControlNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal = 86; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#colorPrimary} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:colorPrimary */ public static final int AppCompatTheme_colorPrimary = 83; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#colorPrimaryDark} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark = 84; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#colorSwitchThumbNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal = 90; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#controlBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:controlBackground */ public static final int AppCompatTheme_controlBackground = 91; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#dialogPreferredPadding} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding = 44; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#dialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:dialogTheme */ public static final int AppCompatTheme_dialogTheme = 43; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#dividerHorizontal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal = 57; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#dividerVertical} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:dividerVertical */ public static final int AppCompatTheme_dividerVertical = 56; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#dropDownListViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle = 75; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#dropdownListPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#editTextBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:editTextBackground */ public static final int AppCompatTheme_editTextBackground = 64; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#editTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.stefanelez.infonmation:editTextColor */ public static final int AppCompatTheme_editTextColor = 63; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#editTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:editTextStyle */ public static final int AppCompatTheme_editTextStyle = 106; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator = 49; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#imageButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle = 65; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#listChoiceBackgroundIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator = 82; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#listDividerAlertDialog} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog = 45; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#listMenuViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle = 114; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#listPopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle = 76; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#listPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight = 70; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#listPreferredItemHeightLarge} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#listPreferredItemHeightSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#listPreferredItemPaddingLeft} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#listPreferredItemPaddingRight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#panelBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:panelBackground */ public static final int AppCompatTheme_panelBackground = 79; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#panelMenuListTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme = 81; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#panelMenuListWidth} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth = 80; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#popupMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle = 61; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#popupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle = 62; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#radioButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle = 107; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#ratingBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle = 108; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#ratingBarStyleIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator = 109; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#ratingBarStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall = 110; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#searchViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle = 69; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#seekBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle = 111; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#selectableItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground = 53; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#selectableItemBackgroundBorderless} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#spinnerDropDownItemStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#spinnerStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle = 112; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#switchStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:switchStyle */ public static final int AppCompatTheme_switchStyle = 113; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#textAppearanceLargePopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#textAppearanceListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem = 77; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#textAppearanceListItemSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall = 78; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#textAppearancePopupMenuHeader} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#textAppearanceSearchResultSubtitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#textAppearanceSearchResultTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#textAppearanceSmallPopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#textColorAlertDialogListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.stefanelez.infonmation:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem = 97; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#textColorSearchUrl} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.stefanelez.infonmation:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl = 68; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#toolbarNavigationButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#toolbarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle = 59; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#windowActionBar} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:windowActionBar */ public static final int AppCompatTheme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#windowActionBarOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#windowActionModeOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#windowFixedHeightMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#windowFixedHeightMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#windowFixedWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#windowFixedWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#windowMinWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#windowMinWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#windowNoTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle = 3; /** Attributes that can be used with a ButtonBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ButtonBarLayout_allowStacking com.example.stefanelez.infonmation:allowStacking}</code></td><td></td></tr> </table> @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout = { 0x7f01009c }; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#allowStacking} attribute's value can be found in the {@link #ButtonBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:allowStacking */ public static final int ButtonBarLayout_allowStacking = 0; /** Attributes that can be used with a ColorStateListItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ColorStateListItem_alpha com.example.stefanelez.infonmation:alpha}</code></td><td></td></tr> <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr> <tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr> </table> @see #ColorStateListItem_alpha @see #ColorStateListItem_android_alpha @see #ColorStateListItem_android_color */ public static final int[] ColorStateListItem = { 0x010101a5, 0x0101031f, 0x7f01009d }; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:alpha */ public static final int ColorStateListItem_alpha = 2; /** <p>This symbol is the offset where the {@link android.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:alpha */ public static final int ColorStateListItem_android_alpha = 1; /** <p>This symbol is the offset where the {@link android.R.attr#color} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:color */ public static final int ColorStateListItem_android_color = 0; /** Attributes that can be used with a CompoundButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTint com.example.stefanelez.infonmation:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode com.example.stefanelez.infonmation:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f01009e, 0x7f01009f }; /** <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.example.stefanelez.infonmation.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.example.stefanelez.infonmation:buttonTint */ public static final int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation: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.example.stefanelez.infonmation:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.example.stefanelez.infonmation:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength com.example.stefanelez.infonmation:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color com.example.stefanelez.infonmation:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.example.stefanelez.infonmation:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.example.stefanelez.infonmation:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars com.example.stefanelez.infonmation:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness com.example.stefanelez.infonmation: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 = { 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7 }; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:barLength */ public static final int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:color */ public static final int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:thickness */ public static final int DrawerArrowToggle_thickness = 7; /** Attributes that can be used with a FontStyle. <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 #FontStyle_font_large com.example.stefanelez.infonmation:font_large}</code></td><td></td></tr> <tr><td><code>{@link #FontStyle_font_medium com.example.stefanelez.infonmation:font_medium}</code></td><td></td></tr> <tr><td><code>{@link #FontStyle_font_small com.example.stefanelez.infonmation:font_small}</code></td><td></td></tr> <tr><td><code>{@link #FontStyle_font_xlarge com.example.stefanelez.infonmation:font_xlarge}</code></td><td></td></tr> <tr><td><code>{@link #FontStyle_font_xxlarge com.example.stefanelez.infonmation:font_xxlarge}</code></td><td></td></tr> </table> @see #FontStyle_font_large @see #FontStyle_font_medium @see #FontStyle_font_small @see #FontStyle_font_xlarge @see #FontStyle_font_xxlarge */ public static final int[] FontStyle = { 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac }; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#font_large} attribute's value can be found in the {@link #FontStyle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:font_large */ public static final int FontStyle_font_large = 2; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#font_medium} attribute's value can be found in the {@link #FontStyle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:font_medium */ public static final int FontStyle_font_medium = 1; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#font_small} attribute's value can be found in the {@link #FontStyle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:font_small */ public static final int FontStyle_font_small = 0; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#font_xlarge} attribute's value can be found in the {@link #FontStyle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:font_xlarge */ public static final int FontStyle_font_xlarge = 3; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#font_xxlarge} attribute's value can be found in the {@link #FontStyle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:font_xxlarge */ public static final int FontStyle_font_xxlarge = 4; /** 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.example.stefanelez.infonmation:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.example.stefanelez.infonmation:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.example.stefanelez.infonmation:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers com.example.stefanelez.infonmation: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, 0x7f0100ad, 0x7f0100ae, 0x7f0100af }; /** <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.example.stefanelez.infonmation.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.example.stefanelez.infonmation:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation: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.example.stefanelez.infonmation:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass com.example.stefanelez.infonmation:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass com.example.stefanelez.infonmation: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.example.stefanelez.infonmation: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, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3 }; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:actionLayout */ public static final int MenuItem_actionLayout = 14; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:actionProviderClass */ public static final int MenuItem_actionProviderClass = 16; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation: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.example.stefanelez.infonmation.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.example.stefanelez.infonmation: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.example.stefanelez.infonmation:preserveIconSpacing}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_subMenuArrow com.example.stefanelez.infonmation:subMenuArrow}</code></td><td></td></tr> </table> @see #MenuView_android_headerBackground @see #MenuView_android_horizontalDivider @see #MenuView_android_itemBackground @see #MenuView_android_itemIconDisabledAlpha @see #MenuView_android_itemTextAppearance @see #MenuView_android_verticalDivider @see #MenuView_android_windowAnimationStyle @see #MenuView_preserveIconSpacing @see #MenuView_subMenuArrow */ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100b4, 0x7f0100b5 }; /** <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.example.stefanelez.infonmation.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.example.stefanelez.infonmation:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#subMenuArrow} attribute's value can be found in the {@link #MenuView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.stefanelez.infonmation:subMenuArrow */ public static final int MenuView_subMenuArrow = 8; /** Attributes that can be used with a PopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_overlapAnchor com.example.stefanelez.infonmation:overlapAnchor}</code></td><td></td></tr> </table> @see #PopupWindow_android_popupAnimationStyle @see #PopupWindow_android_popupBackground @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { 0x01010176, 0x010102c9, 0x7f0100b6 }; /** <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupAnimationStyle */ public static final int PopupWindow_android_popupAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupBackground */ public static final int PopupWindow_android_popupBackground = 0; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:overlapAnchor */ public static final int PopupWindow_overlapAnchor = 2; /** Attributes that can be used with a PopupWindowBackgroundState. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.example.stefanelez.infonmation:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f0100b7 }; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation: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.example.stefanelez.infonmation:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon com.example.stefanelez.infonmation:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint com.example.stefanelez.infonmation:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon com.example.stefanelez.infonmation:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault com.example.stefanelez.infonmation:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout com.example.stefanelez.infonmation:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground com.example.stefanelez.infonmation:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint com.example.stefanelez.infonmation:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon com.example.stefanelez.infonmation:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon com.example.stefanelez.infonmation:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground com.example.stefanelez.infonmation:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout com.example.stefanelez.infonmation:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon com.example.stefanelez.infonmation: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, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4 }; /** <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.example.stefanelez.infonmation.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.example.stefanelez.infonmation:closeIcon */ public static final int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:commitIcon */ public static final int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:defaultQueryHint */ public static final int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:goIcon */ public static final int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:layout */ public static final int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:queryBackground */ public static final int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:queryHint */ public static final int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:searchHintIcon */ public static final int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:searchIcon */ public static final int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:submitBackground */ public static final int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:voiceIcon */ public static final int SearchView_voiceIcon = 12; /** Attributes that can be used with a Spinner. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_popupTheme com.example.stefanelez.infonmation:popupTheme}</code></td><td></td></tr> </table> @see #Spinner_android_dropDownWidth @see #Spinner_android_entries @see #Spinner_android_popupBackground @see #Spinner_android_prompt @see #Spinner_popupTheme */ public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001d }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth} attribute's value can be found in the {@link #Spinner} array. @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth = 3; /** <p>This symbol is the offset where the {@link android.R.attr#entries} attribute's value can be found in the {@link #Spinner} array. @attr name android:entries */ public static final int Spinner_android_entries = 0; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #Spinner} array. @attr name android:popupBackground */ public static final int Spinner_android_popupBackground = 1; /** <p>This symbol is the offset where the {@link android.R.attr#prompt} attribute's value can be found in the {@link #Spinner} array. @attr name android:prompt */ public static final int Spinner_android_prompt = 2; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:popupTheme */ public static final int Spinner_popupTheme = 4; /** Attributes that can be used with a SwitchCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_showText com.example.stefanelez.infonmation:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack com.example.stefanelez.infonmation:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth com.example.stefanelez.infonmation:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding com.example.stefanelez.infonmation:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.example.stefanelez.infonmation:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.example.stefanelez.infonmation:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTint com.example.stefanelez.infonmation:thumbTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTintMode com.example.stefanelez.infonmation:thumbTintMode}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track com.example.stefanelez.infonmation:track}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTint com.example.stefanelez.infonmation:trackTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTintMode com.example.stefanelez.infonmation:trackTintMode}</code></td><td></td></tr> </table> @see #SwitchCompat_android_textOff @see #SwitchCompat_android_textOn @see #SwitchCompat_android_thumb @see #SwitchCompat_showText @see #SwitchCompat_splitTrack @see #SwitchCompat_switchMinWidth @see #SwitchCompat_switchPadding @see #SwitchCompat_switchTextAppearance @see #SwitchCompat_thumbTextPadding @see #SwitchCompat_thumbTint @see #SwitchCompat_thumbTintMode @see #SwitchCompat_track @see #SwitchCompat_trackTint @see #SwitchCompat_trackTintMode */ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf }; /** <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.example.stefanelez.infonmation.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.example.stefanelez.infonmation:showText */ public static final int SwitchCompat_showText = 13; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:splitTrack */ public static final int SwitchCompat_splitTrack = 12; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 10; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:switchPadding */ public static final int SwitchCompat_switchPadding = 11; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 9; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 8; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#thumbTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:thumbTint */ public static final int SwitchCompat_thumbTint = 3; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#thumbTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.example.stefanelez.infonmation:thumbTintMode */ public static final int SwitchCompat_thumbTintMode = 4; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:track */ public static final int SwitchCompat_track = 5; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#trackTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:trackTint */ public static final int SwitchCompat_trackTint = 6; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#trackTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.example.stefanelez.infonmation:trackTintMode */ public static final int SwitchCompat_trackTintMode = 7; /** Attributes that can be used with a TextAppearance. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_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.example.stefanelez.infonmation: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, 0x7f01002a }; /** <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.example.stefanelez.infonmation.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.example.stefanelez.infonmation:textAllCaps */ public static final int TextAppearance_textAllCaps = 8; /** Attributes that can be used with a Toolbar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_buttonGravity com.example.stefanelez.infonmation:buttonGravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseContentDescription com.example.stefanelez.infonmation:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon com.example.stefanelez.infonmation:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd com.example.stefanelez.infonmation:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.example.stefanelez.infonmation:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft com.example.stefanelez.infonmation:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight com.example.stefanelez.infonmation:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart com.example.stefanelez.infonmation:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.example.stefanelez.infonmation:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo com.example.stefanelez.infonmation:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription com.example.stefanelez.infonmation:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight com.example.stefanelez.infonmation:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription com.example.stefanelez.infonmation:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon com.example.stefanelez.infonmation:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme com.example.stefanelez.infonmation:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle com.example.stefanelez.infonmation:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.example.stefanelez.infonmation:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor com.example.stefanelez.infonmation:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title com.example.stefanelez.infonmation:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargin com.example.stefanelez.infonmation:titleMargin}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom com.example.stefanelez.infonmation:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd com.example.stefanelez.infonmation:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart com.example.stefanelez.infonmation:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop com.example.stefanelez.infonmation:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins com.example.stefanelez.infonmation:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance com.example.stefanelez.infonmation:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor com.example.stefanelez.infonmation:titleTextColor}</code></td><td></td></tr> </table> @see #Toolbar_android_gravity @see #Toolbar_android_minHeight @see #Toolbar_buttonGravity @see #Toolbar_collapseContentDescription @see #Toolbar_collapseIcon @see #Toolbar_contentInsetEnd @see #Toolbar_contentInsetEndWithActions @see #Toolbar_contentInsetLeft @see #Toolbar_contentInsetRight @see #Toolbar_contentInsetStart @see #Toolbar_contentInsetStartWithNavigation @see #Toolbar_logo @see #Toolbar_logoDescription @see #Toolbar_maxButtonHeight @see #Toolbar_navigationContentDescription @see #Toolbar_navigationIcon @see #Toolbar_popupTheme @see #Toolbar_subtitle @see #Toolbar_subtitleTextAppearance @see #Toolbar_subtitleTextColor @see #Toolbar_title @see #Toolbar_titleMargin @see #Toolbar_titleMarginBottom @see #Toolbar_titleMarginEnd @see #Toolbar_titleMarginStart @see #Toolbar_titleMarginTop @see #Toolbar_titleMargins @see #Toolbar_titleTextAppearance @see #Toolbar_titleTextColor */ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001d, 0x7f0100d0, 0x7f0100d1, 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.example.stefanelez.infonmation.R.attr#buttonGravity} attribute's value can be found in the {@link #Toolbar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> @attr name com.example.stefanelez.infonmation:buttonGravity */ public static final int Toolbar_buttonGravity = 21; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 23; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:collapseIcon */ public static final int Toolbar_collapseIcon = 22; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions = 10; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:contentInsetRight */ public static final int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:contentInsetStart */ public static final int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation = 9; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:logo */ public static final int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:logoDescription */ public static final int Toolbar_logoDescription = 26; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 20; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 25; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:navigationIcon */ public static final int Toolbar_navigationIcon = 24; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:popupTheme */ public static final int Toolbar_popupTheme = 11; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 13; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:subtitleTextColor */ public static final int Toolbar_subtitleTextColor = 28; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:title */ public static final int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.R.attr#titleMargin} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.stefanelez.infonmation:titleMargin */ public static final int Toolbar_titleMargin = 14; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 18; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 16; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:titleMarginStart */ public static final int Toolbar_titleMarginStart = 15; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:titleMarginTop */ public static final int Toolbar_titleMarginTop = 17; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:titleMargins */ public static final int Toolbar_titleMargins = 19; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 12; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:titleTextColor */ public static final int Toolbar_titleTextColor = 27; /** Attributes that can be used with a View. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingEnd com.example.stefanelez.infonmation:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart com.example.stefanelez.infonmation:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme com.example.stefanelez.infonmation: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.example.stefanelez.infonmation.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.example.stefanelez.infonmation:paddingEnd */ public static final int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation:paddingStart */ public static final int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation: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.example.stefanelez.infonmation:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.example.stefanelez.infonmation: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.example.stefanelez.infonmation.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.example.stefanelez.infonmation:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link com.example.stefanelez.infonmation.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.example.stefanelez.infonmation: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; }; }
[ "elez.stefan@outlook.com" ]
elez.stefan@outlook.com
00778e12a029755412f04b01a58df2a677557390
95fa6df71f9ea34cf636f2b0d7caf6e048a03851
/common/src/main/java/com/windyroad/nghia/common/IntentUtil.java
598c62471b6de6443d23def36642bc1733efea3c
[]
no_license
Phoenix-Suns/AlarmTasks
5310ead05fc8790f0d13c489a91ab47d962e082a
7bcbcccdfc42b99c4bfb85873c351c47cd6b7253
refs/heads/master
2020-03-22T08:43:44.210547
2019-06-20T08:28:48
2019-06-20T08:28:48
139,786,612
0
0
null
null
null
null
UTF-8
Java
false
false
5,947
java
package com.windyroad.nghia.common; import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.content.pm.PackageManager; import android.content.pm.ResolveInfo; import android.net.Uri; import android.os.Build; import android.os.Parcelable; import android.provider.MediaStore; import android.provider.Settings; import android.support.v4.content.FileProvider; import android.webkit.MimeTypeMap; import android.widget.Toast; import com.windyroad.nghia.common.file.FileUtil; import java.io.File; import java.util.ArrayList; import java.util.List; public class IntentUtil { public void openFileWithType(Context context, String filePath) { MimeTypeMap myMime = MimeTypeMap.getSingleton(); Intent newIntent = new Intent(Intent.ACTION_VIEW); newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); String mimeType = myMime.getMimeTypeFromExtension(FileUtil.getFileExt(filePath)); Uri fileUri = Uri.fromFile(new File(filePath)); if (Build.VERSION.SDK_INT >= 21) fileUri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".fileprovider", new File(filePath)); newIntent.setDataAndType(fileUri, mimeType); try { context.startActivity(newIntent); } catch (Exception ex) { Toast.makeText(context, "No handler for this type of file.", Toast.LENGTH_LONG).show(); } } public static Intent createOpenFileIntent(Context context, Uri fileUri) { String mime = context.getContentResolver().getType(fileUri); // Open file with user selected app Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(fileUri, mime); intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); return intent; } /** * Create a chooser intent to select the source to get image from.<br/> * The source can be camera's (ACTION_IMAGE_CAPTURE) or gallery's (ACTION_GET_CONTENT).<br/> * All possible sources are added to the intent chooser. * @param: filename "pickImageResult.jpeg" */ public Intent createPickImageIntent(Context context, String fileName) { // Determine Uri of camera image to save. Uri outputFileUri = getCaptureImageOutputUri(context, fileName); List<Intent> allIntents = new ArrayList<>(); PackageManager packageManager = context.getPackageManager(); // collect all camera intents Intent captureIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); List<ResolveInfo> listCam = packageManager.queryIntentActivities(captureIntent, 0); for (ResolveInfo res : listCam) { Intent intent = new Intent(captureIntent); intent.setComponent(new ComponentName(res.activityInfo.packageName, res.activityInfo.name)); intent.setPackage(res.activityInfo.packageName); if (outputFileUri != null) { intent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri); } allIntents.add(intent); } // collect all gallery intents Intent galleryIntent = new Intent(Intent.ACTION_GET_CONTENT); galleryIntent.setType("image/*"); List<ResolveInfo> listGallery = packageManager.queryIntentActivities(galleryIntent, 0); for (ResolveInfo res : listGallery) { Intent intent = new Intent(galleryIntent); intent.setComponent(new ComponentName(res.activityInfo.packageName, res.activityInfo.name)); intent.setPackage(res.activityInfo.packageName); allIntents.add(intent); } // the main intent is the last in the list (fucking android) so pickup the useless one Intent mainIntent = allIntents.get(allIntents.size() - 1); for (Intent intent : allIntents) { if (intent.getComponent().getClassName().equals("com.android.documentsui.DocumentsActivity")) { mainIntent = intent; break; } } allIntents.remove(mainIntent); // Create a chooser from the main intent Intent chooserIntent = Intent.createChooser(mainIntent, "Select source"); // Add all other intents chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, allIntents.toArray(new Parcelable[allIntents.size()])); return chooserIntent; } /** * Get URI to image received from capture by camera. * @param context * @param fileName "pickImageResult.jpeg" */ private Uri getCaptureImageOutputUri(Context context, String fileName) { Uri outputFileUri = null; File getImage = context.getExternalCacheDir(); if (getImage != null) { outputFileUri = Uri.fromFile(new File(getImage.getPath(), fileName)); } return outputFileUri; } /** * Go to Setting Permission * @param context getApplicationContext() */ public static Intent createOpenSettingIntent(Context context){ final Intent i = new Intent(); i.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS); i.addCategory(Intent.CATEGORY_DEFAULT); i.setData(Uri.parse("package:" + context.getPackageName())); i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); i.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY); i.addFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS); return i; } public static void shareText(Context context, String title, String subject, String text) { Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND); sharingIntent.setType("text/plain"); sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject); sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, text); context.startActivity(Intent.createChooser(sharingIntent, title)); } }
[ "luunghiatran@gmail.com" ]
luunghiatran@gmail.com
973f710df3454a9eba0e65c8cdf3aa9860675971
69083ceaeeb76777764b1826016947702265074f
/app/src/main/java/com/example/linbin/retrofit/ProductBean.java
83f7ae118b5002d61cb15c2cc55af4eb383c4e4c
[]
no_license
linbin91/Retrofit
44f373204577c5fde250957b918f0bbb5755d079
c3fcf3d54c3384adf1ff273c8143c485b469dcb1
refs/heads/master
2016-09-14T02:21:35.270890
2016-05-18T05:54:03
2016-05-18T05:54:03
59,079,197
0
0
null
null
null
null
UTF-8
Java
false
false
3,097
java
package com.example.linbin.retrofit; import java.util.List; /** * Created by Administrator on 2016/5/6. */ public class ProductBean { /** * respCode : 0 * resources : [{"id":2,"leftCount":9668,"status":1,"yield":12,"name":"伯利宝理财定期一期","type":"2","recommend":5},{"id":1,"leftCount":9995,"status":1,"yield":8,"name":"伯利宝理财活期一期","type":"1","recommend":5},{"id":3,"leftCount":0,"status":3,"yield":12,"name":"伯利宝理财定期二期","type":"2","recommend":5}] * hasNextPage : false * totalCount : 3 * respMsg : OK */ private int respCode; private boolean hasNextPage; private int totalCount; private String respMsg; /** * id : 2 * leftCount : 9668 * status : 1 * yield : 12 * name : 伯利宝理财定期一期 * type : 2 * recommend : 5 */ private List<ResourcesBean> resources; public int getRespCode() { return respCode; } public void setRespCode(int respCode) { this.respCode = respCode; } public boolean isHasNextPage() { return hasNextPage; } public void setHasNextPage(boolean hasNextPage) { this.hasNextPage = hasNextPage; } public int getTotalCount() { return totalCount; } public void setTotalCount(int totalCount) { this.totalCount = totalCount; } public String getRespMsg() { return respMsg; } public void setRespMsg(String respMsg) { this.respMsg = respMsg; } public List<ResourcesBean> getResources() { return resources; } public void setResources(List<ResourcesBean> resources) { this.resources = resources; } public static class ResourcesBean { private int id; private int leftCount; private int status; private int yield; private String name; private String type; private int recommend; public int getId() { return id; } public void setId(int id) { this.id = id; } public int getLeftCount() { return leftCount; } public void setLeftCount(int leftCount) { this.leftCount = leftCount; } public int getStatus() { return status; } public void setStatus(int status) { this.status = status; } public int getYield() { return yield; } public void setYield(int yield) { this.yield = yield; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getType() { return type; } public void setType(String type) { this.type = type; } public int getRecommend() { return recommend; } public void setRecommend(int recommend) { this.recommend = recommend; } } }
[ "774520452@qq.com" ]
774520452@qq.com
17af1da6c968d0b140b3729392028afe50510e51
caa0f7d5e859ec129e02432f7abe7c4f1f05ab32
/support_upload_attachment_sample/src/main/java/com/zendesk/sample/uploadattachment/Global.java
60c8e47c80aa85f75117ac20218f4ea7415d52dc
[ "Apache-2.0" ]
permissive
UsmanGhauri/android_sdk_demo_apps
3be18f6ed53241ab14fc6183a6ef3c154968d1af
9b2bba1f8bb6746f5d7fba872332007630fec295
refs/heads/master
2021-01-17T12:27:46.282241
2017-01-12T16:54:20
2017-01-12T16:54:20
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,524
java
package com.zendesk.sample.uploadattachment; import android.app.Application; import com.zendesk.logger.Logger; import com.zendesk.sdk.model.access.AnonymousIdentity; import com.zendesk.sdk.model.access.JwtIdentity; import com.zendesk.sdk.network.impl.ZendeskConfig; public class Global extends Application { @Override public void onCreate() { super.onCreate(); // Enable logging Logger.setLoggable(true); /** * Initialize the SDK with your Zendesk subdomain, mobile SDK app ID, and client ID. * * Get these details from your Zendesk dashboard: Admin -> Channels -> MobileSDK */ ZendeskConfig.INSTANCE.init(this, "https://{subdomain}.zendesk.com", "{applicationId}", "{oauthClientId}"); /** * Set an identity (authentication). * * Set either Anonymous or JWT identity, as below: */ // a). Anonymous (All fields are optional.) ZendeskConfig.INSTANCE.setIdentity( new AnonymousIdentity.Builder() .withNameIdentifier("{optional name}") .withEmailIdentifier("{optional email}") .withExternalIdentifier("{optional external identifier}") .build() ); // b). JWT (Must be initialized with your JWT identifier) ZendeskConfig.INSTANCE.setIdentity(new JwtIdentity("{JWT User Identifier}")); } }
[ "eporebski@zendesk.com" ]
eporebski@zendesk.com
c2dd346e8edb29a112c099b470f1bfb5150eb6ac
72fbdb3888acb56c1978f498b6f9e471ecb11448
/src/test/java/com/cs527project/holstest/htmlelements/getting_started_with_azure/CostManagementPage.java
53729d174b38d1845eae33b326e008d16dbc7c8d
[]
no_license
yiyuli/AzureHOLsAutomation
a16359dbb81239806b63ae61e1be09f97bfc431b
2a2fbb4441eb27e0c29270995e1eab21c237c3d8
refs/heads/master
2021-08-30T11:50:34.067151
2017-12-17T20:42:21
2017-12-17T20:42:21
114,448,006
0
0
null
null
null
null
UTF-8
Java
false
false
1,439
java
package com.cs527project.holstest.htmlelements.getting_started_with_azure; import com.cs527project.holstest.htmlelements.annotations.Name; import com.cs527project.holstest.htmlelements.element.HtmlElement; import com.cs527project.holstest.htmlelements.exceptions.HtmlElementsException; import com.cs527project.holstest.htmlelements.loader.HtmlElementLoader; import com.cs527project.holstest.htmlelements.page.Page; import org.openqa.selenium.WebDriver; import org.openqa.selenium.support.FindBy; public class CostManagementPage extends Page { private final String pageError = "Cost Management page is not displayed"; private final String expectedTitle = "Billing overview - Microsoft Azure"; @Name("SUBSCRIPTIONS_LINK") @FindBy(xpath = "//*[@id=\"web-container\"]/div[3]/main/div[2]/div[2]/section/div[1]/div[1]/div[4]/div[2]/div[2]/div/div[2]/div/div[2]/div[2]/div/div[2]/div/div[1]/section[2]/div[2]/ul/li[1]/div[2]") private HtmlElement subScriptionsLink; public CostManagementPage(WebDriver driver) { super(driver); HtmlElementLoader.populatePageObject(this, driver); if (!titleContains(expectedTitle)) throw new HtmlElementsException(pageError); } public SubScriptionsPage goToSubScriptionsPage() { subScriptionsLink.click(); SubScriptionsPage subScriptionsPage = new SubScriptionsPage(getDriver()); return subScriptionsPage; } }
[ "yiyuli002@gmail.com" ]
yiyuli002@gmail.com
c1382ec8ba4f8d3571e045a337a586eabbd52a22
97833463f48798da9bb76cf605168c574b5e7ba6
/src/main/java/com/siva/tdswork/security/UserNotActivatedException.java
49fc438960c5f24d2f32120309a668a18e085415
[]
no_license
shivaa511/tds-trail-work-two
2171b89b29b63d63c9820cf51abd295da46e2d64
084016de5e0500d61c7ea7f2204dc4bf68d2e4c4
refs/heads/master
2023-04-07T04:10:31.850911
2021-04-16T12:17:53
2021-04-16T12:17:53
358,590,209
0
0
null
null
null
null
UTF-8
Java
false
false
512
java
package com.siva.tdswork.security; import org.springframework.security.core.AuthenticationException; /** * This exception is thrown in case of a not activated user trying to authenticate. */ public class UserNotActivatedException extends AuthenticationException { private static final long serialVersionUID = 1L; public UserNotActivatedException(String message) { super(message); } public UserNotActivatedException(String message, Throwable t) { super(message, t); } }
[ "39061133+shivaa511@users.noreply.github.com" ]
39061133+shivaa511@users.noreply.github.com
2bea16046797ef8ebfe92fccff96ba4c9cd82654
f01894ef4a32b2e6c3e7325a885eac2359a67af3
/hibernate3/src/empresaz/entity/Departamentos.java
387caadb2bbaffac00cf84f4a3b65a653329a17e
[]
no_license
likendero/accesoDatos
431c306a4d1bd0c2059640b7b516f93b6915c98a
acf47c53796daae85b2790c716e659ae9e1d4fed
refs/heads/master
2020-03-29T08:55:09.861523
2019-01-15T07:19:37
2019-01-15T07:19:37
149,732,904
0
0
null
null
null
null
UTF-8
Java
false
false
1,322
java
package empresaz.entity; // Generated 13-nov-2018 8:39:51 by Hibernate Tools 4.3.1 import java.util.HashSet; import java.util.Set; /** * Departamentos generated by hbm2java */ public class Departamentos implements java.io.Serializable { private byte deptNo; private String dnombre; private String loc; private Set empleadoses = new HashSet(0); public Departamentos() { } public Departamentos(byte deptNo) { this.deptNo = deptNo; } public Departamentos(byte deptNo, String dnombre, String loc, Set empleadoses) { this.deptNo = deptNo; this.dnombre = dnombre; this.loc = loc; this.empleadoses = empleadoses; } public byte getDeptNo() { return this.deptNo; } public void setDeptNo(byte deptNo) { this.deptNo = deptNo; } public String getDnombre() { return this.dnombre; } public void setDnombre(String dnombre) { this.dnombre = dnombre; } public String getLoc() { return this.loc; } public void setLoc(String loc) { this.loc = loc; } public Set getEmpleadoses() { return this.empleadoses; } public void setEmpleadoses(Set empleadoses) { this.empleadoses = empleadoses; } }
[ "likendero11@gmail.com" ]
likendero11@gmail.com
acd98fa25a48e533d6af536d3b67baef08328b61
32e8c9da2b5bea2e77d1e4551900ac76cddb28d6
/src/cs3500/marblesolitaire/controller/MarbleSolitaireControllerImpl.java
ab8505153c9ceec82a0e374ee113dc1872f0eaf0
[]
no_license
creighton42/Marble-Solitaire
83f30956087feb0f5f92d62603a6dd486e9264e7
aa9d83cbae2d9095814219f45c85ebdecb30b43f
refs/heads/master
2022-11-23T05:06:02.729926
2020-07-24T00:30:44
2020-07-24T00:30:44
280,252,002
0
0
null
null
null
null
UTF-8
Java
false
false
5,288
java
package cs3500.marblesolitaire.controller; import cs3500.marblesolitaire.model.hw02.MarbleSolitaireModel; import java.io.IOException; import java.util.Scanner; /** * Class representing a Console Controller for the MarbleSolitaireModel. Must be provided a non-null * readable and appendable type. */ public class MarbleSolitaireControllerImpl implements MarbleSolitaireController { private final Readable in; private final Appendable out; /** * Constructs a controller for the Marble Solitaire game Model. * * @param rd input stream from which the controller reads values to play the game * @param ap output stream on which the controller appends the gameLog * @throws IllegalArgumentException if the provided readable or appendable are null */ public MarbleSolitaireControllerImpl(Readable rd, Appendable ap) throws IllegalArgumentException { if (rd == null || ap == null) { throw new IllegalArgumentException("Readable and appendable must not be null!"); } this.in = rd; this.out = ap; } /** * Plays a game of Marble Solitaire using the given model. * * @param model the MarbleSolitaireModel from which to play the game * @throws IllegalArgumentException if the provided model is null * @throws IllegalStateException only if the controller is unable to successfully receive input * or transmit output * @throws IllegalStateException if there is any issue reading {@code this.in} or appending * {@code this.out} */ @Override public void playGame(MarbleSolitaireModel model) { if (model == null) { throw new IllegalArgumentException("Given model was null."); } try { this.out.append(model.getGameState()).append("\n"); this.out.append("Score: ").append(String.valueOf(model.getScore())).append("\n"); } catch (IOException e) { throw new IllegalStateException("Could not write to output."); } Scanner scan = new Scanner(this.in); while (!model.isGameOver()) { int fromRow = -1; boolean gotFromRow = false; int fromCol = -1; boolean gotFromCol = false; int toRow = -1; boolean gotToRow = false; int toCol = -1; boolean gotToCol = false; if (!scan.hasNext()) { break; } if (scan.hasNext("q") || scan.hasNext("Q")) { try { this.out.append("Game quit!\n"); this.out.append("State of game when quit:\n"); this.out.append(model.getGameState()).append("\n"); this.out.append("Score: ").append(String.valueOf(model.getScore())).append("\n"); } catch (IOException ioe) { throw new IllegalStateException("Append failed", ioe); } break; } while (!(gotFromRow && gotFromCol && gotToRow && gotToCol)) { if (scan.hasNext("q") || scan.hasNext("Q")) { break; } else if (!scan.hasNextInt()) { if (!scan.hasNext()) { break; } try { this.out.append("Please enter a positive integer:\n"); } catch (IOException ioe) { throw new IllegalStateException("Append failed", ioe); } scan.next(); } else if (!gotFromRow) { fromRow = scan.nextInt(); gotFromRow = true; } else if (!gotFromCol) { fromCol = scan.nextInt(); gotFromCol = true; } else if (!gotToRow) { toRow = scan.nextInt(); gotToRow = true; } else if (!gotToCol) { toCol = scan.nextInt(); gotToCol = true; try { model.move(fromRow - 1, fromCol - 1, toRow - 1, toCol - 1); } catch (IllegalArgumentException iae) { try { out.append("Invalid move. Play again. ").append(iae.getMessage()).append("\n"); break; } catch (IOException ioe) { throw new IllegalStateException("Append failed", ioe); } } if (model.isGameOver()) { try { this.out.append("Game over!\n"); this.out.append(model.getGameState()).append("\n"); this.out.append("Score: ").append(String.valueOf(model.getScore())).append("\n"); } catch (IOException e) { throw new IllegalStateException("Could not write to output."); } break; } else { try { this.out.append(model.getGameState()).append("\n"); this.out.append("Score: ").append(String.valueOf(model.getScore())).append("\n"); } catch (IOException e) { throw new IllegalStateException("Could not write to output."); } if (scan.hasNext()) { gotFromRow = false; gotFromCol = false; gotToRow = false; gotToCol = false; } } } } } if (model.isGameOver()) { // This is left empty to ensure that the console is not left // waiting for an input if the game is over. } else if (!scan.hasNext()) { throw new IllegalStateException("Readable is out of inputs"); } } }
[ "64802507+creighton42@users.noreply.github.com" ]
64802507+creighton42@users.noreply.github.com
ba89f1993d8a59d979f9dd477338cb85ec512b0b
14327240f2ef9fe9eb215ef5eab084946052314f
/homework4/test8_2.java
21bf17541e82d7f93fa1d1ace557456f912eb46a
[]
no_license
1-wxf/Java-Homework---wxf
034a0f7c3b0b9c9286df97f43fc963dc106f75a7
bc2d321baccc50903af5338988c69fa822a50bef
refs/heads/main
2023-05-30T13:23:48.842200
2021-06-08T06:41:17
2021-06-08T06:41:17
348,609,128
0
0
null
null
null
null
GB18030
Java
false
false
1,027
java
/** * @author WXF * @data 2021-03-29 * @description编写一个方法,求 n x n 的 double 类型矩阵中主对角线上所有数宇 的和,编写一个测试程序,读取一个 4 x 4 的矩阵,然后显示它的主对角线上的所有元素的和。 */ package homework4; import java.util.Scanner; public class test8_2 { public static void main(String[] args) { // TODO Auto-generated method stub Scanner input=new Scanner(System.in); System.out.println("Enter a 4-by-4 matrix row by row: "); double[][] m=new double[4][4]; for(int row=0; row<m.length; row++) { for(int column=0; column<m[row].length; column++) { m[row][column]=input.nextDouble(); } } input.close(); System.out.println("Sum of the elements in the major diagonal is " +sumMajorDiagonal(m)); } public static double sumMajorDiagonal(double[][] m) { double sum=0; for(int row=0; row<m.length; row++) { sum += m[row][row]; } return sum; } }
[ "noreply@github.com" ]
1-wxf.noreply@github.com
7d71b46bd28328f803851180c94e039288b4cf4e
5d7400fe490006cac410a25dabfe8068c33eebb3
/app/src/main/java/com/studio/dynamica/icgroup/ObjectFragments/InventoryEquipmentAddFragment.java
af5db9024032feab0fd45a2cb1caee6f8c088464
[]
no_license
lordtemish/ICGroup2
02c0bd7f5e8c2e7ed0ef7a0f5d773bb5f4e9360e
214b0686b55b9cadf699bd395efd3e5173173530
refs/heads/master
2020-03-23T21:36:50.024482
2018-11-09T15:39:12
2018-11-09T15:39:12
142,119,756
0
0
null
null
null
null
UTF-8
Java
false
false
2,858
java
package com.studio.dynamica.icgroup.ObjectFragments; import android.os.Bundle; import android.support.v4.app.Fragment; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.FrameLayout; import android.widget.Spinner; import com.studio.dynamica.icgroup.Activities.MainActivity; import com.studio.dynamica.icgroup.ExtraFragments.RadioFragment; import com.studio.dynamica.icgroup.R; /** * A simple {@link Fragment} subclass. */ public class InventoryEquipmentAddFragment extends Fragment { String[] a={"Снабжение", "Уборка"}; FrameLayout radioFrame, spinnerFrame, typeSpinnerFrame; RadioFragment radioFragment; Spinner employeeChangeSpinner,typeSpinner; public InventoryEquipmentAddFragment() { // Required empty public constructor } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment View view=inflater.inflate(R.layout.fragment_inventory_equipment_add, container, false); createViews(view); radioFragment=new RadioFragment(); Bundle bundle=new Bundle(); bundle.putInt("checked",0); radioFragment.setArguments(bundle); ((MainActivity)getActivity()).setFragmentNoBackStack(R.id.radioFrameLaoyut,radioFragment); ArrayAdapter<String> arrayAdapter=new ArrayAdapter<>(getActivity(),R.layout.simple_spinner_item,a); employeeChangeSpinner.setAdapter(arrayAdapter); spinnerFrame.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { showSp(); } }); ArrayAdapter<String> arrayAdapter2=new ArrayAdapter<>(getActivity(),R.layout.simple_spinner_item,a); typeSpinner.setAdapter(arrayAdapter2); typeSpinnerFrame.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { typeSpinner.performClick(); } }); return view; } private void showSp(){ employeeChangeSpinner.performClick(); } private void createViews(View view){ employeeChangeSpinner=(Spinner) view.findViewById(R.id.employeeChangeSpinner); typeSpinner=(Spinner)view.findViewById(R.id.typeChangeSpinner); spinnerFrame=(FrameLayout) view.findViewById(R.id.spinnerFrameImage); typeSpinnerFrame=(FrameLayout) view.findViewById(R.id.typeSpinnerFrameImage); radioFrame=(FrameLayout) view.findViewById(R.id.radioFrameLaoyut); } public int getChecked(){ return radioFragment.getArguments().getInt("checked"); } }
[ "lordtemish@gmail.com" ]
lordtemish@gmail.com
feba6c33584da54e287b080dce46417440c258ee
f6899a2cf1c10a724632bbb2ccffb7283c77a5ff
/glassfish-3.1.1/mail-1.4-sources/com/sun/mail/imap/ACL.java
ee67a253d8980757c2848ce0a78039c27acb1903
[]
no_license
Appdynamics/OSS
a8903058e29f4783e34119a4d87639f508a63692
1e112f8854a25b3ecf337cad6eccf7c85e732525
refs/heads/master
2023-07-22T03:34:54.770481
2021-10-28T07:01:57
2021-10-28T07:01:57
19,390,624
2
13
null
2023-07-08T02:26:33
2014-05-02T22:42:20
null
UTF-8
Java
false
false
2,610
java
/* * The contents of this file are subject to the terms * of the Common Development and Distribution License * (the "License"). You may not use this file except * in compliance with the License. * * You can obtain a copy of the license at * glassfish/bootstrap/legal/CDDLv1.0.txt or * https://glassfish.dev.java.net/public/CDDLv1.0.html. * See the License for the specific language governing * permissions and limitations under the License. * * When distributing Covered Code, include this CDDL * HEADER in each file and include the License file at * glassfish/bootstrap/legal/CDDLv1.0.txt. If applicable, * add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your * own identifying information: Portions Copyright [yyyy] * [name of copyright owner] */ /* * @(#)ACL.java 1.4 05/08/29 * * Copyright 2000-2005 Sun Microsystems, Inc. All Rights Reserved. */ package com.sun.mail.imap; import java.util.*; /** * An access control list entry for a particular authentication identifier * (user or group). Associates a set of Rights with the identifier. * See RFC 2086. * <p> * * @author Bill Shannon */ public class ACL implements Cloneable { private String name; private Rights rights; /** * Construct an ACL entry for the given identifier and with no rights. * * @param name the identifier name */ public ACL(String name) { this.name = name; this.rights = new Rights(); } /** * Construct an ACL entry for the given identifier with the given rights. * * @param name the identifier name * @param rights the rights */ public ACL(String name, Rights rights) { this.name = name; this.rights = rights; } /** * Get the identifier name for this ACL entry. * * @return the identifier name */ public String getName() { return name; } /** * Set the rights associated with this ACL entry. * * @param rights the rights */ public void setRights(Rights rights) { this.rights = rights; } /** * Get the rights associated with this ACL entry. * Returns the actual Rights object referenced by this ACL; * modifications to the Rights object will effect this ACL. * * @return the rights */ public Rights getRights() { return rights; } /** * Clone this ACL entry. */ public Object clone() throws CloneNotSupportedException { ACL acl = (ACL)super.clone(); acl.rights = (Rights)this.rights.clone(); return acl; } }
[ "bsundaravaradan@appdynamics.com" ]
bsundaravaradan@appdynamics.com
312261286fe1ee63306c35a42862a2e58dda97ef
1f91b10c85fd557e348f91c7f30cf9994f191a85
/src/org/acm/seguin/refactor/method/PushUpMethodRefactoring.java
0ddf67124e86489730c36b42eaa1bbe4a2464636
[]
no_license
wardat/JRefactory-v2.6.24
9162121deb1fe94d65b21daaba358e61e1ea7f93
38c5bbe34c0aabcb83a6b74e29a6869880102ebb
refs/heads/master
2020-03-30T17:43:59.013295
2018-10-03T19:23:18
2018-10-03T19:23:18
151,467,662
0
0
null
null
null
null
UTF-8
Java
false
false
3,007
java
/* * Author: Chris Seguin * * This software has been developed under the copyleft * rules of the GNU General Public License. Please * consult the GNU General Public License for more * details about use and distribution of this software. */ package org.acm.seguin.refactor.method; import org.acm.seguin.parser.ast.ASTMethodDeclaration; import org.acm.seguin.parser.ast.SimpleNode; import org.acm.seguin.refactor.ComplexTransform; import org.acm.seguin.refactor.RefactoringException; import org.acm.seguin.summary.TypeDeclSummary; import org.acm.seguin.summary.TypeSummary; import org.acm.seguin.summary.query.GetTypeSummary; /** * Pushes up a method into a parent class * *@author Chris Seguin *@created April 5, 2000 */ public class PushUpMethodRefactoring extends InheretenceMethodRefactoring { private TypeSummary typeSummary; private TypeSummary parentType; /** * Constructor for the PushUpMethodRefactoring object */ protected PushUpMethodRefactoring() { } /** * Gets the description of the refactoring * *@return the description */ public String getDescription() { return "Moves a method " + methodSummary.getName() + " down into the parent class " + parentType.getName(); } /** * Gets the ID attribute of the PushUpMethodRefactoring object * *@return The ID value */ public int getID() { return PUSH_UP_METHOD; } /** * This specifies the preconditions for applying the refactoring * *@exception RefactoringException Description of Exception */ protected void preconditions() throws RefactoringException { if (methodSummary == null) { throw new RefactoringException("No method specified"); } typeSummary = (TypeSummary) methodSummary.getParent(); TypeDeclSummary parent = typeSummary.getParentClass(); parentType = GetTypeSummary.query(parent); checkDestination(parentType); checkDestinationFile(parentType, "Can't push up a method into source code that you don't have"); NearMissVisitor nmv = new NearMissVisitor(parentType, methodSummary, typeSummary); nmv.visit(null); if (nmv.getProblem() != null) { throw new RefactoringException("Method with a signature of " + nmv.getProblem().toString() + " found in child of " + parentType.getName()); } } /** * Moves the method to the parent class */ protected void transform() { RemoveMethodTransform rft = new RemoveMethodTransform(methodSummary); ComplexTransform transform = getComplexTransform(); removeMethod(typeSummary, transform, rft); // Update the method declaration to have the proper permissions SimpleNode methodDecl = rft.getMethodDeclaration(); if (methodDecl == null) { return; } ASTMethodDeclaration decl = updateMethod(methodDecl); addMethodToDest(transform, rft, methodDecl, parentType); // Remove the method from all child classes (new RemoveMethodFromSubclassVisitor(parentType, methodSummary, typeSummary, transform)).visit(null); } }
[ "mawardat12@gmail.com" ]
mawardat12@gmail.com
51b8075a5dc258b1047f2a38376d18bd6b332cb3
d889d86c1d432e7ea2a0453a54e1c343e9f6d025
/StringImplementation/stringImplementation.java
f971ad25dc13fe9e0cec7e119fdb5007847f2059
[]
no_license
lavanya-mandapati/java_assignments_part1
b471bbaeaa25d76a2eb17f354a45637cbf97cf6b
944a182e95d3d8cdc6cc2baa7964d380c689afea
refs/heads/master
2023-06-03T10:41:11.586017
2021-06-14T08:49:03
2021-06-14T08:49:03
375,968,632
0
0
null
null
null
null
UTF-8
Java
false
false
1,485
java
package StringImplementation; public class stringImplementation { public boolean stringAlphabetCount(String alphabet,String str) { if(alphabet.length() < str.length()) { int count = 0; for (int i = 0; i < alphabet.length(); i++) { char ch1 = alphabet.charAt(i); char ch2 = Character.toUpperCase(ch1); if (str.indexOf(ch1) == -1) { if (str.indexOf(ch2) == -1) { return false; } else { count = count + 1; } } else { count = count + 1; } } if (count == 26) { return true; } } else { int count=0; for(int i=0;i<str.length();i++) { char ch1 = str.charAt(i); char ch2 = Character.toUpperCase(ch1); if (alphabet.indexOf(ch1) == -1) { if (alphabet.indexOf(ch2) == -1) { return false; } else { count = count + 1; } } else { count = count + 1; } } if (count == 26) { return true; } } return true; } }
[ "lavanyareddy818683@gmail.com" ]
lavanyareddy818683@gmail.com
c8434ac83092a6194e103bd9c916ee052e4b5fbd
d252fbcaab0bc0c3e6eaf03eb3ae215de7249258
/src/com/javarush/test/level11/lesson11/home09/Solution.java
09a7e198d248a0e3be5c1d7061f4338c7a79d78f
[ "MIT" ]
permissive
antilopeass/JavaRush
3210a72799e7455089a422576725527ba4d3acc0
1f0f0d52d2c50a1979c5cfbf8d52860789f84af9
refs/heads/master
2020-04-02T20:25:46.333325
2018-10-26T02:57:32
2018-10-26T02:57:32
154,768,837
0
0
MIT
2018-10-26T02:57:01
2018-10-26T02:57:01
null
UTF-8
Java
false
false
444
java
package com.javarush.test.level11.lesson11.home09; /* Четвертая правильная «цепочка наследования» Расставь правильно «цепочку наследования» в классах: House (дом), Cat (кот), Dog(собака), Car (машина). */ class Solution { private class House { } private class Cat { } private class Car { } private class Dog { } }
[ "aleksey.ilyenko@gmail.com" ]
aleksey.ilyenko@gmail.com
fd6591c5245a3d4ff6949520a49bbff5bb958696
c878ad3420298082f57c456475fa483b1ad08900
/LCQuestions/_642_DesignSearchAutocompleteSystem.java
def9fe713f4c0e933c25927fd1f28b97d8791e83
[]
no_license
xuchengyun/LeetCodeNote
cdddff1ee820eab68d1da4a91e57d819b4c973c4
2b50909f613eca0dbe5bddb230882b3c00ded7ba
refs/heads/master
2022-11-11T19:45:39.678359
2022-10-20T06:11:24
2022-10-20T06:11:24
176,151,909
1
0
null
null
null
null
UTF-8
Java
false
false
83
java
package LCQuestions; //TODO public class _642_DesignSearchAutocompleteSystem { }
[ "454166448@qq.com" ]
454166448@qq.com
c26b6c628c9b6c864e5527900a27b66ba137f7f0
77f3f5e1d9c8d6560bb4697b57c28c14404b55aa
/erpwell/erpwell/trunk/SourceCode/Client/com.graly.erp.inv/src/com/graly/erp/inv/in/mo/MoInQtySetupDialog.java
bb99fbaf0bae779b0311d7e87405e745da97dead
[ "Apache-2.0" ]
permissive
liulong02/ERPL
b1871a1836c8e25af6a18d184b2f68f1b1bfdc5e
c8db598a3f762b357ae986050066098ce62bed44
refs/heads/master
2020-03-21T22:26:06.459293
2018-06-30T14:55:48
2018-06-30T14:55:48
139,126,269
0
0
null
2018-06-29T13:59:15
2018-06-29T08:57:20
null
GB18030
Java
false
false
1,933
java
package com.graly.erp.inv.in.mo; import java.math.BigDecimal; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Text; import com.graly.erp.inv.model.MovementLine; import com.graly.erp.inv.model.Warehouse; import com.graly.erp.inv.otherin.InQtySetupDialog; import com.graly.framework.base.ui.util.Message; import com.graly.mes.wip.model.Lot; public class MoInQtySetupDialog extends InQtySetupDialog { private BigDecimal inQty = BigDecimal.ZERO; public MoInQtySetupDialog(Shell parentShell, MovementLine outLine, Lot lot, Warehouse warehouse) { super(parentShell, outLine, lot, warehouse); } // 如果为Material或Batch类型,则从核销仓库中获得可以入库的数量 protected void setCurrentQtyOrStorageQty(Text text) { if(text == null) return; inQty = getQtyOnhand(); text.setText(inQty.toString()); // text.setText(lot.getQtyTransaction().toString()); } // 当前数量(即可入库数量)=工作令已完成数量-工作令已入库数量 protected void setQtyContent() { if(BigDecimal.ZERO.compareTo(inQty) == 0) { inQty = getQtyOnhand(); txtOutQty.setText(inQty.toString()); } else { txtOutQty.setText(inQty.toString()); } } // 验证输入的入库数量必须小于批次的当前数量 protected boolean validate() { try { setErrorMessage(null); BigDecimal inputQty = new BigDecimal(txtOutQty.getText()); if(BigDecimal.ZERO.compareTo(inputQty) == 0) { setErrorMessage(String.format(Message.getString("common.largerthan"), Message.getString("inv.in_qty"), inputQty.toString())); return false; } else if(inQty.compareTo(inputQty) < 0) { setErrorMessage(String.format(Message.getString("common.lessthan"), Message.getString("inv.in_qty"), inQty.toString())); return false; } return true; } catch(Exception e) { setErrorMessage(Message.getString("common.input_error")); } return false; } }
[ "529409301@qq.com" ]
529409301@qq.com
9630f2108d101d291a0077a6499524df7a12c315
d2eee6e9a3ad0b3fd2899c3d1cf94778615b10cb
/PROMISE/archives/ant/1.6/org/apache/tools/ant/taskdefs/War.java
63cae87039ed76e3861b394b94a14dd5d5024d3c
[]
no_license
hvdthong/DEFECT_PREDICTION
78b8e98c0be3db86ffaed432722b0b8c61523ab2
76a61c69be0e2082faa3f19efd76a99f56a32858
refs/heads/master
2021-01-20T05:19:00.927723
2018-07-10T03:38:14
2018-07-10T03:38:14
89,766,606
5
1
null
null
null
null
UTF-8
Java
false
false
4,350
java
package org.apache.tools.ant.taskdefs; import java.io.File; import java.io.IOException; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.Project; import org.apache.tools.ant.types.ZipFileSet; import org.apache.tools.ant.util.FileUtils; import org.apache.tools.zip.ZipOutputStream; /** * An extension of &lt;jar&gt; to create a WAR archive. * Contains special treatment for files that should end up in the * <code>WEB-INF/lib</code>, <code>WEB-INF/classes</code> or * <code>WEB-INF</code> directories of the Web Application Archive.</p> * <p>(The War task is a shortcut for specifying the particular layout of a WAR file. * The same thing can be accomplished by using the <i>prefix</i> and <i>fullpath</i> * attributes of zipfilesets in a Zip or Jar task.)</p> * <p>The extended zipfileset element from the zip task * (with attributes <i>prefix</i>, <i>fullpath</i>, and <i>src</i>) * is available in the War task.</p> * * * @since Ant 1.2 * * @ant.task category="packaging" * @see Jar */ public class War extends Jar { /** * our web.xml deployment descriptor */ private File deploymentDescriptor; /** * flag set if the descriptor is added */ private boolean descriptorAdded; private static final FileUtils fu = FileUtils.newFileUtils(); public War() { super(); archiveType = "war"; emptyBehavior = "create"; } /** * <i>Deprecated<i> name of the file to create * -use <tt>destfile</tt> instead. * @deprecated Use setDestFile(File) instead * @ant.attribute ignore="true" */ public void setWarfile(File warFile) { setDestFile(warFile); } /** * set the deployment descriptor to use (WEB-INF/web.xml); * required unless <tt>update=true</tt> */ public void setWebxml(File descr) { deploymentDescriptor = descr; if (!deploymentDescriptor.exists()) { throw new BuildException("Deployment descriptor: " + deploymentDescriptor + " does not exist."); } ZipFileSet fs = new ZipFileSet(); fs.setFile(deploymentDescriptor); fs.setFullpath("WEB-INF/web.xml"); super.addFileset(fs); } /** * add files under WEB-INF/lib/ */ public void addLib(ZipFileSet fs) { fs.setPrefix("WEB-INF/lib/"); super.addFileset(fs); } /** * add files under WEB-INF/classes */ public void addClasses(ZipFileSet fs) { fs.setPrefix("WEB-INF/classes/"); super.addFileset(fs); } /** * files to add under WEB-INF; */ public void addWebinf(ZipFileSet fs) { fs.setPrefix("WEB-INF/"); super.addFileset(fs); } /** * override of parent; validates configuration * before initializing the output stream. */ protected void initZipOutputStream(ZipOutputStream zOut) throws IOException, BuildException { if (deploymentDescriptor == null && !isInUpdateMode()) { throw new BuildException("webxml attribute is required", getLocation()); } super.initZipOutputStream(zOut); } /** * Overridden from Zip class to deal with web.xml */ protected void zipFile(File file, ZipOutputStream zOut, String vPath, int mode) throws IOException { if (vPath.equalsIgnoreCase("WEB-INF/web.xml")) { if (deploymentDescriptor == null || !fu.fileNameEquals(deploymentDescriptor, file) || descriptorAdded) { log("Warning: selected " + archiveType + " files include a WEB-INF/web.xml which will be ignored " + "(please use webxml attribute to " + archiveType + " task)", Project.MSG_WARN); } else { super.zipFile(file, zOut, vPath, mode); descriptorAdded = true; } } else { super.zipFile(file, zOut, vPath, mode); } } /** * Make sure we don't think we already have a web.xml next time this task * gets executed. */ protected void cleanUp() { descriptorAdded = false; super.cleanUp(); } }
[ "hvdthong@github.com" ]
hvdthong@github.com
03ee3aec4437e240be8e57ead9e9b942498aea5d
788c68cdd473b54f5d968c606f3c47a161dcd653
/app/src/androidTest/java/com/example/administrator/allpoint/ApplicationTest.java
7ca3e352b2195f1d731a1ea81e23029533271f58
[]
no_license
huahua495/MyStudy
72f1f25761eb621524dce67164a5e523ed749591
dc54f514a9ab4a00a5c00f812cb8b31086e69ea6
refs/heads/master
2021-01-17T20:32:25.064553
2016-08-14T23:26:44
2016-08-14T23:26:44
65,284,748
0
0
null
null
null
null
UTF-8
Java
false
false
365
java
package com.example.administrator.allpoint; import android.app.Application; import android.test.ApplicationTestCase; /** * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> */ public class ApplicationTest extends ApplicationTestCase<Application> { public ApplicationTest() { super(Application.class); } }
[ "123456" ]
123456
811d94c0965ed3b9d2d808bca336958011ad1053
517b05cd5694930e16ff29efb54f681ad78bb283
/src/com/akjava/wiki/client/htmlconverter/CreativeCommonsConverter.java
3ddade5ad3325178921f2598dfa0de1e1079461d
[ "Apache-2.0" ]
permissive
akjava/gwtwiki
052242e1fa52a4d1f07197d1f78a2ebeba6db0ab
f3081b3263198bf2f17f67baf2a4a61efb6e9a67
refs/heads/master
2016-09-11T11:19:32.295344
2013-06-08T05:57:32
2013-06-08T05:57:32
null
0
0
null
null
null
null
SHIFT_JIS
Java
false
false
1,573
java
/* * Created on 2004/11/23 * Author aki@akjava.com * License Apache2.0 or Common Public License */ package com.akjava.wiki.client.htmlconverter; import com.akjava.wiki.client.core.Node; import com.akjava.wiki.client.ecs.A; import com.akjava.wiki.client.ecs.Comment; import com.akjava.wiki.client.ecs.IMG; import com.akjava.wiki.client.modules.SimpleCommand; /** * * */ public class CreativeCommonsConverter extends AbstractConverter{ public boolean canConvert(Node node){ return (node instanceof SimpleCommand) && ((SimpleCommand)node).getName().equals("commons1"); } public String toHeader(Node node){ String result=""; result+=new Comment("クリエイティブ・コモンズ・ライセンス").toString(); A a=new A(); a.setRel("license").setHref("http://creativecommons.org/licenses/by/2.1/jp/") .addElement(new IMG().setAlt("クリエイティブ・コモンズ・ライセンス").setBorder(0).setSrc("http://creativecommons.org/images/public/somerights2.gif")); result+=a.toString(); result+="<br>"; result+="このworkは、"+new A().setRel("license").setHref("http://creativecommons.org/licenses/by/2.1/jp/") .addElement("クリエイティブ・コモンズ・ライセンス").toString(); result+="の下でライセンスされています。"; result+=new Comment("/クリエイティブ・コモンズ・ライセンス").toString(); return result; } public String toFooter(Node node){ return ""; } }
[ "aki@xps" ]
aki@xps
368a9c53507aa5105614979e0ec702ffcc659bf1
f9e344a64f7bb74820fc4d65d7362a21088528b8
/src/test/java/com/erecette/biddeclaration/web/rest/errors/ExceptionTranslatorIT.java
430a0913dd46f305015783ab9414d0e05aea38a6
[]
no_license
sandalothier/fiscaliste
ebc131decbf9ecd0ecab69adcfa31a417c92ab4d
b8cdb5fa25f2e51522b5dfe4f00ab95262948c4a
refs/heads/master
2022-12-28T06:45:19.153216
2019-12-12T19:08:43
2019-12-12T19:08:43
227,677,797
0
0
null
2022-12-16T04:42:19
2019-12-12T19:08:28
Java
UTF-8
Java
false
false
5,533
java
package com.erecette.biddeclaration.web.rest.errors; import com.erecette.biddeclaration.ErecetteApp; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.http.MediaType; import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.setup.MockMvcBuilders; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; /** * Integration tests {@link ExceptionTranslator} controller advice. */ @SpringBootTest(classes = ErecetteApp.class) public class ExceptionTranslatorIT { @Autowired private ExceptionTranslatorTestController controller; @Autowired private ExceptionTranslator exceptionTranslator; @Autowired private MappingJackson2HttpMessageConverter jacksonMessageConverter; private MockMvc mockMvc; @BeforeEach public void setup() { mockMvc = MockMvcBuilders.standaloneSetup(controller) .setControllerAdvice(exceptionTranslator) .setMessageConverters(jacksonMessageConverter) .build(); } @Test public void testConcurrencyFailure() throws Exception { mockMvc.perform(get("/test/concurrency-failure")) .andExpect(status().isConflict()) .andExpect(content().contentType(MediaType.APPLICATION_PROBLEM_JSON)) .andExpect(jsonPath("$.message").value(ErrorConstants.ERR_CONCURRENCY_FAILURE)); } @Test public void testMethodArgumentNotValid() throws Exception { mockMvc.perform(post("/test/method-argument").content("{}").contentType(MediaType.APPLICATION_JSON)) .andExpect(status().isBadRequest()) .andExpect(content().contentType(MediaType.APPLICATION_PROBLEM_JSON)) .andExpect(jsonPath("$.message").value(ErrorConstants.ERR_VALIDATION)) .andExpect(jsonPath("$.fieldErrors.[0].objectName").value("test")) .andExpect(jsonPath("$.fieldErrors.[0].field").value("test")) .andExpect(jsonPath("$.fieldErrors.[0].message").value("NotNull")); } @Test public void testMissingServletRequestPartException() throws Exception { mockMvc.perform(get("/test/missing-servlet-request-part")) .andExpect(status().isBadRequest()) .andExpect(content().contentType(MediaType.APPLICATION_PROBLEM_JSON)) .andExpect(jsonPath("$.message").value("error.http.400")); } @Test public void testMissingServletRequestParameterException() throws Exception { mockMvc.perform(get("/test/missing-servlet-request-parameter")) .andExpect(status().isBadRequest()) .andExpect(content().contentType(MediaType.APPLICATION_PROBLEM_JSON)) .andExpect(jsonPath("$.message").value("error.http.400")); } @Test public void testAccessDenied() throws Exception { mockMvc.perform(get("/test/access-denied")) .andExpect(status().isForbidden()) .andExpect(content().contentType(MediaType.APPLICATION_PROBLEM_JSON)) .andExpect(jsonPath("$.message").value("error.http.403")) .andExpect(jsonPath("$.detail").value("test access denied!")); } @Test public void testUnauthorized() throws Exception { mockMvc.perform(get("/test/unauthorized")) .andExpect(status().isUnauthorized()) .andExpect(content().contentType(MediaType.APPLICATION_PROBLEM_JSON)) .andExpect(jsonPath("$.message").value("error.http.401")) .andExpect(jsonPath("$.path").value("/test/unauthorized")) .andExpect(jsonPath("$.detail").value("test authentication failed!")); } @Test public void testMethodNotSupported() throws Exception { mockMvc.perform(post("/test/access-denied")) .andExpect(status().isMethodNotAllowed()) .andExpect(content().contentType(MediaType.APPLICATION_PROBLEM_JSON)) .andExpect(jsonPath("$.message").value("error.http.405")) .andExpect(jsonPath("$.detail").value("Request method 'POST' not supported")); } @Test public void testExceptionWithResponseStatus() throws Exception { mockMvc.perform(get("/test/response-status")) .andExpect(status().isBadRequest()) .andExpect(content().contentType(MediaType.APPLICATION_PROBLEM_JSON)) .andExpect(jsonPath("$.message").value("error.http.400")) .andExpect(jsonPath("$.title").value("test response status")); } @Test public void testInternalServerError() throws Exception { mockMvc.perform(get("/test/internal-server-error")) .andExpect(status().isInternalServerError()) .andExpect(content().contentType(MediaType.APPLICATION_PROBLEM_JSON)) .andExpect(jsonPath("$.message").value("error.http.500")) .andExpect(jsonPath("$.title").value("Internal Server Error")); } }
[ "jhipster-bot@jhipster.tech" ]
jhipster-bot@jhipster.tech
5a62ecf001b8eb1ad944ffff620f3155083579ed
3cdcbef4b6b10c3d07157a8b150ad1ff05d19053
/actor-apps/core/src/main/java/im/actor/model/api/updates/UpdateContactsAdded.java
3cbf53b6cbcef900632f75b3bd12ceb10f0e3012
[ "MIT" ]
permissive
guoyang2011/actor-platform
7a85d10af727f3f10b4f4b442e17e1378caab91d
0e92dffcc0492160984c12532334249a02c11ef2
refs/heads/master
2021-01-18T06:06:43.481750
2015-08-04T01:40:50
2015-08-04T01:41:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,442
java
package im.actor.model.api.updates; /* * Generated by the Actor API Scheme generator. DO NOT EDIT! */ import im.actor.model.droidkit.bser.Bser; import im.actor.model.droidkit.bser.BserValues; import im.actor.model.droidkit.bser.BserWriter; import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.NotNull; import java.io.IOException; import im.actor.model.network.parser.*; import java.util.List; public class UpdateContactsAdded extends Update { public static final int HEADER = 0x28; public static UpdateContactsAdded fromBytes(byte[] data) throws IOException { return Bser.parse(new UpdateContactsAdded(), data); } private List<Integer> uids; public UpdateContactsAdded(@NotNull List<Integer> uids) { this.uids = uids; } public UpdateContactsAdded() { } @NotNull public List<Integer> getUids() { return this.uids; } @Override public void parse(BserValues values) throws IOException { this.uids = values.getRepeatedInt(1); } @Override public void serialize(BserWriter writer) throws IOException { writer.writeRepeatedInt(1, this.uids); } @Override public String toString() { String res = "update ContactsAdded{"; res += "uids=" + this.uids.size(); res += "}"; return res; } @Override public int getHeaderKey() { return HEADER; } }
[ "me@ex3ndr.com" ]
me@ex3ndr.com
8a72e189d48a776049730e71f0aebc0ddd5eb0aa
8ee71a95f445fa0c8b31562ce37af078f9b68d52
/src/main/java/com/adeo/connector/opus/annotations/Multivalue.java
94c5447cc315bfd0e9d5bdc9cc89e7ea6bea5f6a
[]
no_license
ArseniVorhan/aem-connector-opus
6f8c0e07c3ba77a29ce63d12010ec3adb86f780f
8fee7817f2dc858d82df32f820e0c60460c24d53
refs/heads/develop
2021-05-03T21:50:31.587963
2016-10-19T07:41:16
2016-10-19T07:41:16
71,557,104
0
0
null
2016-10-21T10:54:54
2016-10-21T10:50:29
Java
UTF-8
Java
false
false
437
java
package com.adeo.connector.opus.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Created by stievena on 03/10/16. */ @Target({ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface Multivalue { String keyField() default "displayName"; String valueField() default "value"; }
[ "stievena@adobe.com" ]
stievena@adobe.com
458c25f3c5c682879447c390db28445934777e81
279b4cd9eb8f1f84bd7eb9a666c5acb90575fcf8
/java_oo_facul/src/classeAbtratas_Interfaces_Heranca_Polimorfismo_Composicao/Credtio_Imobiliario.java
e3ed6088615eecf1b9fe3b509a9a458c980940fd
[]
no_license
CarlosRetiro/Java_oo_facul
4b72fd0d0401c4945b3532bf551a2edcb7feb9bb
70e5233396747f04c8f569c6226a4262068a96b7
refs/heads/master
2021-05-19T11:13:39.713388
2020-11-04T22:56:14
2020-11-04T22:56:14
251,620,559
0
0
null
null
null
null
UTF-8
Java
false
false
531
java
package classeAbtratas_Interfaces_Heranca_Polimorfismo_Composicao; public class Credtio_Imobiliario extends Credito implements Emprestimos{ public Credtio_Imobiliario(Conta conta, double valorCredito, double jurosMes, int numMeses) { super(conta, valorCredito, jurosMes, numMeses); } @Override public void calculoJuros() { } @Override public String toString() { return "CredtioImobiliario [valorCredito=" + valorCredito + ", jurosMes=" + jurosMes + ", numMeses=" + numMeses + "]\n"; } }
[ "48919884+CarlosRetiro@users.noreply.github.com" ]
48919884+CarlosRetiro@users.noreply.github.com
512922a7f61e386a139d3fe696eb5d8e4bcc34f8
8ea1b0e5b464fe58a4ed95be59ac534fa51c6e83
/app/src/main/java/com/example/commuteindy/ui/slideshow/SlideshowViewModel.java
5e4c0627431316da08355b50474bbfe5772d5c4a
[]
no_license
201053/indy
c0efb998777d73ae3d71e3cbffce9c2056cfc4f3
85565a6e1bca0a46e65432ed3edc693832e52a84
refs/heads/master
2020-08-28T15:55:01.649274
2019-10-26T17:43:05
2019-10-26T17:43:05
217,746,609
0
0
null
null
null
null
UTF-8
Java
false
false
466
java
package com.example.commuteindy.ui.slideshow; import androidx.lifecycle.LiveData; import androidx.lifecycle.MutableLiveData; import androidx.lifecycle.ViewModel; public class SlideshowViewModel extends ViewModel { private MutableLiveData<String> mText; public SlideshowViewModel() { mText = new MutableLiveData<>(); mText.setValue("This is slideshow fragment"); } public LiveData<String> getText() { return mText; } }
[ "2003jesper@gmail.com" ]
2003jesper@gmail.com